2025-09-07T06:09:25.6580380Z Current runner version: '2.328.0' 2025-09-07T06:09:25.6583920Z Runner name: 'i-0f7b420a26df89db8' 2025-09-07T06:09:25.6584430Z Runner group name: 'default' 2025-09-07T06:09:25.6585030Z Machine name: 'ip-10-0-3-60' 2025-09-07T06:09:25.6586730Z ##[group]GITHUB_TOKEN Permissions 2025-09-07T06:09:25.6588030Z Contents: read 2025-09-07T06:09:25.6588430Z Metadata: read 2025-09-07T06:09:25.6588820Z ##[endgroup] 2025-09-07T06:09:25.6590090Z Secret source: Actions 2025-09-07T06:09:25.6590520Z Prepare workflow directory 2025-09-07T06:09:25.7597690Z Prepare all required actions 2025-09-07T06:09:25.7622890Z Getting action download info 2025-09-07T06:09:26.0359380Z Download action repository 'pytorch/test-infra@main' (SHA:548a4bc624d43a01cdf165a63b041f0ae014ddbd) 2025-09-07T06:09:26.6007470Z Download action repository 'pytorch/pytorch@main' (SHA:93fb23d6fae7c4e82c4239a1033e522088742634) 2025-09-07T06:09:36.4498850Z Download action repository 'nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-09-07T06:09:36.6463060Z Download action repository 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-09-07T06:09:36.9205340Z Getting action download info 2025-09-07T06:09:37.0209960Z Download action repository 'actions/checkout@v4' (SHA:08eba0b27e820071cde6df949e0beb9ba4906955) 2025-09-07T06:09:37.2347660Z Uses: pytorch/pytorch/.github/workflows/_mac-build.yml@refs/heads/main (93fb23d6fae7c4e82c4239a1033e522088742634) 2025-09-07T06:09:37.2349970Z ##[group] Inputs 2025-09-07T06:09:37.2350150Z build-environment: macos-py3-arm64 2025-09-07T06:09:37.2350350Z runner-type: macos-m1-stable 2025-09-07T06:09:37.2350720Z build-generates-artifacts: true 2025-09-07T06:09:37.2350910Z xcode-version: 2025-09-07T06:09:37.2351070Z sync-tag: macos-py3-arm64-build 2025-09-07T06:09:37.2351270Z python-version: 3.12.7 2025-09-07T06:09:37.2352100Z test-matrix: { include: [ { config: "default", shard: 1, num_shards: 3, runner: "macos-m1-stable" }, { config: "default", shard: 2, num_shards: 3, runner: "macos-m1-stable" }, { config: "default", shard: 3, num_shards: 3, runner: "macos-m1-stable" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-14" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m2-15" }, ]} 2025-09-07T06:09:37.2352920Z sccache-use-gha: false 2025-09-07T06:09:37.2353100Z ##[endgroup] 2025-09-07T06:09:37.2353260Z Complete job name: macos-py3-arm64 / build 2025-09-07T06:09:37.2668530Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2025-09-07T06:09:37.2668920Z with: 2025-09-07T06:09:37.2669090Z minimum-available-space-in-gb: 6 2025-09-07T06:09:37.2669360Z env: 2025-09-07T06:09:37.2669500Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:09:37.2669690Z SCCACHE_USE_GHA: false 2025-09-07T06:09:37.2669860Z ##[endgroup] 2025-09-07T06:09:37.2726750Z ##[group]Run echo "Print the available disk space for manual inspection" 2025-09-07T06:09:37.2727170Z echo "Print the available disk space for manual inspection" 2025-09-07T06:09:37.2727480Z df -h 2025-09-07T06:09:37.2727610Z  2025-09-07T06:09:37.2738040Z function check_disk_space() { 2025-09-07T06:09:37.2738250Z  set +e 2025-09-07T06:09:37.2738400Z  2025-09-07T06:09:37.2738550Z  # Set the minimum requirement space to 6GB 2025-09-07T06:09:37.2738880Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2025-09-07T06:09:37.2739140Z  2025-09-07T06:09:37.2739290Z  # Use KB to avoid floating point warning like 3.1GB 2025-09-07T06:09:37.2739540Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2025-09-07T06:09:37.2739750Z  do 2025-09-07T06:09:37.2739890Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2025-09-07T06:09:37.2740160Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2025-09-07T06:09:37.2740330Z  2025-09-07T06:09:37.2740800Z  if [ "${MOUNT}" = "/" ]; then 2025-09-07T06:09:37.2741030Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2025-09-07T06:09:37.2741520Z  echo "Failure: There is only ${AVAIL}KB free space left in ${MOUNT}, which is less than the minimum requirement of ${MINIMUM_AVAILABLE_SPACE_IN_KB}KB for ${RUNNER_OS}" 2025-09-07T06:09:37.2741950Z  else 2025-09-07T06:09:37.2742200Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2025-09-07T06:09:37.2742480Z  fi 2025-09-07T06:09:37.2742600Z  fi 2025-09-07T06:09:37.2742720Z  done 2025-09-07T06:09:37.2742830Z  2025-09-07T06:09:37.2742940Z  set -e 2025-09-07T06:09:37.2743050Z } 2025-09-07T06:09:37.2743160Z  2025-09-07T06:09:37.2743280Z RESULT=$(check_disk_space) 2025-09-07T06:09:37.2743450Z echo "${RESULT}" 2025-09-07T06:09:37.2743580Z  2025-09-07T06:09:37.2743760Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2025-09-07T06:09:37.2744220Z  # We can clean up /System/Library/Caches/com.apple.coresymbolicationd on MacOS to free up the space and this should free up enough space 2025-09-07T06:09:37.2744680Z  # https://github.com/pytorch/pytorch/issues/85440 2025-09-07T06:09:37.2745000Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2025-09-07T06:09:37.2745470Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2025-09-07T06:09:37.2745890Z  sudo launchctl stop com.apple.coresymbolicationd || true 2025-09-07T06:09:37.2746110Z  2025-09-07T06:09:37.2746250Z  # Clean up crash reports on the runner 2025-09-07T06:09:37.2746530Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2025-09-07T06:09:37.2746770Z  2025-09-07T06:09:37.2746930Z  # Also try to clean up torch.hub caching directory 2025-09-07T06:09:37.2747170Z  rm -rf "${HOME}/.cache/torch/hub" || true 2025-09-07T06:09:37.2747350Z  2025-09-07T06:09:37.2747470Z  # Purge conda 2025-09-07T06:09:37.2747620Z  conda clean -p -t -y || true 2025-09-07T06:09:37.2747800Z  # and pip cache 2025-09-07T06:09:37.2748450Z  pip cache purge || true 2025-09-07T06:09:37.2748610Z  2025-09-07T06:09:37.2748800Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2025-09-07T06:09:37.2749040Z  # Re-run the check 2025-09-07T06:09:37.2749200Z  RESULT=$(check_disk_space) 2025-09-07T06:09:37.2749370Z  echo "${RESULT}" 2025-09-07T06:09:37.2749520Z fi 2025-09-07T06:09:37.2749630Z  2025-09-07T06:09:37.2749760Z if [[ "${RESULT}" == *Failure* ]]; then 2025-09-07T06:09:37.2749950Z  df -h 2025-09-07T06:09:37.2750070Z  2025-09-07T06:09:37.2750470Z  echo "Please help create an issue to PyTorch Release Engineering via https://github.com/pytorch/test-infra/issues and provide the link to the workflow run." 2025-09-07T06:09:37.2750910Z  exit 1 2025-09-07T06:09:37.2751020Z fi 2025-09-07T06:09:37.2772430Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-09-07T06:09:37.2772640Z env: 2025-09-07T06:09:37.2772770Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:09:37.2772950Z SCCACHE_USE_GHA: false 2025-09-07T06:09:37.2773100Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2025-09-07T06:09:37.2773260Z ##[endgroup] 2025-09-07T06:09:37.3064700Z Print the available disk space for manual inspection 2025-09-07T06:09:37.3069430Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-09-07T06:09:37.3069840Z /dev/disk5s2s1 256Gi 9.5Gi 187Gi 5% 404k 2.0G 0% / 2025-09-07T06:09:37.3070540Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-09-07T06:09:37.3071470Z /dev/disk5s5 256Gi 1.0Gi 187Gi 1% 1 2.0G 0% /System/Volumes/VM 2025-09-07T06:09:37.3071880Z /dev/disk5s3 256Gi 5.7Gi 187Gi 3% 1.0k 2.0G 0% /System/Volumes/Preboot 2025-09-07T06:09:37.3463990Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-09-07T06:09:37.3464560Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-09-07T06:09:37.3464990Z /dev/disk1s3 500Mi 848Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-09-07T06:09:37.3465510Z /dev/disk5s1 256Gi 51Gi 187Gi 22% 1.7M 2.0G 0% /System/Volumes/Data 2025-09-07T06:09:37.3465930Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-09-07T06:09:37.3466480Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-20PTox 2025-09-07T06:09:37.3466910Z Success: There is 196281616KB free space left in / for macOS, continue 2025-09-07T06:09:37.3573370Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-09-07T06:09:37.3573640Z with: 2025-09-07T06:09:37.3573770Z submodules: recursive 2025-09-07T06:09:37.3573940Z fetch-depth: 0 2025-09-07T06:09:37.3574070Z env: 2025-09-07T06:09:37.3574210Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:09:37.3574390Z SCCACHE_USE_GHA: false 2025-09-07T06:09:37.3574550Z ##[endgroup] 2025-09-07T06:09:37.3591290Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-09-07T06:09:37.3591870Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-09-07T06:09:37.3611620Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-09-07T06:09:37.3611850Z env: 2025-09-07T06:09:37.3612010Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:09:37.3612200Z SCCACHE_USE_GHA: false 2025-09-07T06:09:37.3612400Z ##[endgroup] 2025-09-07T06:09:37.3925700Z ##[group]Run # Use all available CPUs for fetching 2025-09-07T06:09:37.3926050Z # Use all available CPUs for fetching 2025-09-07T06:09:37.3926250Z cd "${GITHUB_WORKSPACE}" 2025-09-07T06:09:37.3926450Z git config --global fetch.parallel 0 2025-09-07T06:09:37.3926690Z git config --global submodule.fetchJobs 0 2025-09-07T06:09:37.3926880Z  2025-09-07T06:09:37.3927090Z # Clean workspace. The default checkout action should also do this, but 2025-09-07T06:09:37.3927400Z # do it here as well just in case 2025-09-07T06:09:37.3927580Z if [[ -d .git ]]; then 2025-09-07T06:09:37.3927740Z  if [ -z "${NO_SUDO}" ]; then 2025-09-07T06:09:37.3927920Z  sudo git clean -ffdx 2025-09-07T06:09:37.3928090Z  else 2025-09-07T06:09:37.3928260Z  git clean -ffdx 2025-09-07T06:09:37.3928400Z  fi 2025-09-07T06:09:37.3928530Z fi 2025-09-07T06:09:37.3951030Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-09-07T06:09:37.3951240Z env: 2025-09-07T06:09:37.3951380Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:09:37.3951560Z SCCACHE_USE_GHA: false 2025-09-07T06:09:37.3951700Z NO_SUDO: 2025-09-07T06:09:37.3951820Z ##[endgroup] 2025-09-07T06:09:39.3784090Z Removing .additional_ci_files/ 2025-09-07T06:09:39.3784460Z Removing .pytest_cache/ 2025-09-07T06:09:39.3784700Z Removing benchmarks/functional_autograd_benchmark/__pycache__/ 2025-09-07T06:09:39.3785010Z Removing build/ 2025-09-07T06:09:39.3785590Z Removing dist/ 2025-09-07T06:09:39.3785790Z Removing test/.pytorch-disabled-tests.json 2025-09-07T06:09:39.3786020Z Removing test/__pycache__/ 2025-09-07T06:09:39.3786210Z Removing test/autograd/__pycache__/ 2025-09-07T06:09:39.3786490Z Removing test/cpp_extensions/libtorch_agnostic_extension/build/ 2025-09-07T06:09:39.3787220Z Removing test/cpp_extensions/libtorch_agnostic_extension/install/ 2025-09-07T06:09:39.3787650Z Removing test/cpp_extensions/libtorch_agnostic_extension/libtorch_agnostic.egg-info/ 2025-09-07T06:09:39.3788050Z Removing test/cpp_extensions/torch_stable_test_extension/build/ 2025-09-07T06:09:39.3788360Z Removing test/custom_backend/__pycache__/ 2025-09-07T06:09:39.3788580Z Removing test/custom_backend/build/ 2025-09-07T06:09:39.3788810Z Removing test/custom_backend/test-reports/ 2025-09-07T06:09:39.3789070Z Removing test/dynamo/__pycache__/ 2025-09-07T06:09:39.3789280Z Removing test/export/__pycache__/ 2025-09-07T06:09:39.3789500Z Removing test/functorch/__pycache__/ 2025-09-07T06:09:39.3789730Z Removing test/inductor/__pycache__/ 2025-09-07T06:09:39.3789930Z Removing test/jit/__pycache__/ 2025-09-07T06:09:39.3790150Z Removing test/jit/_imported_class_test/__pycache__/ 2025-09-07T06:09:39.3790430Z Removing test/jit/_imported_class_test/very/__pycache__/ 2025-09-07T06:09:39.3790750Z Removing test/jit/_imported_class_test/very/very/__pycache__/ 2025-09-07T06:09:39.3791380Z Removing test/jit_hooks/build/ 2025-09-07T06:09:39.3791650Z Removing test/jit_hooks/model_test_forward_tuple_input.pt 2025-09-07T06:09:39.3791970Z Removing test/jit_hooks/model_test_module_forward_multiple_inputs.pt 2025-09-07T06:09:39.3792330Z Removing test/jit_hooks/model_test_module_forward_single_input.pt 2025-09-07T06:09:39.3792680Z Removing test/jit_hooks/model_test_module_hook_return_nothing.pt 2025-09-07T06:09:39.3793050Z Removing test/jit_hooks/model_test_module_multiple_hooks_multiple_inputs.pt 2025-09-07T06:09:39.3793520Z Removing test/jit_hooks/model_test_module_multiple_hooks_single_input.pt 2025-09-07T06:09:39.3793900Z Removing test/jit_hooks/model_test_module_no_forward_input.pt 2025-09-07T06:09:39.3794370Z Removing test/jit_hooks/model_test_module_same_hook_repeated.pt 2025-09-07T06:09:39.3794730Z Removing test/jit_hooks/model_test_submodule_forward_multiple_inputs.pt 2025-09-07T06:09:39.3795120Z Removing test/jit_hooks/model_test_submodule_forward_single_input.pt 2025-09-07T06:09:39.3795480Z Removing test/jit_hooks/model_test_submodule_hook_return_nothing.pt 2025-09-07T06:09:39.3795910Z Removing test/jit_hooks/model_test_submodule_multiple_hooks_multiple_inputs.pt 2025-09-07T06:09:39.3796300Z Removing test/jit_hooks/model_test_submodule_multiple_hooks_single_input.pt 2025-09-07T06:09:39.3796680Z Removing test/jit_hooks/model_test_submodule_same_hook_repeated.pt 2025-09-07T06:09:39.3797050Z Removing test/jit_hooks/model_test_submodule_to_call_directly_with_hooks.pt 2025-09-07T06:09:39.3797340Z Removing test/test-reports/ 2025-09-07T06:09:39.3797520Z Removing test/torch_compile_debug/ 2025-09-07T06:09:39.3797750Z Removing test/torch_np/__pycache__/ 2025-09-07T06:09:39.3797950Z Removing tools/__pycache__/ 2025-09-07T06:09:39.3798150Z Removing tools/stats/__pycache__/ 2025-09-07T06:09:39.3798390Z Removing tools/stats/upload_utilization_stats/__pycache__/ 2025-09-07T06:09:39.3798640Z Removing tools/testing/__pycache__/ 2025-09-07T06:09:39.3798880Z Removing tools/testing/target_determination/__pycache__/ 2025-09-07T06:09:39.3799190Z Removing tools/testing/target_determination/heuristics/__pycache__/ 2025-09-07T06:09:39.3799470Z Removing usage_log.txt 2025-09-07T06:09:39.3859060Z ##[group]Run actions/checkout@v4 2025-09-07T06:09:39.3859240Z with: 2025-09-07T06:09:39.3859410Z ref: 93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:09:39.3859610Z fetch-depth: 0 2025-09-07T06:09:39.3859750Z submodules: recursive 2025-09-07T06:09:39.3859930Z show-progress: false 2025-09-07T06:09:39.3860100Z repository: pytorch/pytorch 2025-09-07T06:09:39.3860360Z token: *** 2025-09-07T06:09:39.3860490Z ssh-strict: true 2025-09-07T06:09:39.3860640Z ssh-user: git 2025-09-07T06:09:39.3860810Z persist-credentials: true 2025-09-07T06:09:39.3860970Z clean: true 2025-09-07T06:09:39.3861110Z sparse-checkout-cone-mode: true 2025-09-07T06:09:39.3861300Z fetch-tags: false 2025-09-07T06:09:39.3861430Z lfs: false 2025-09-07T06:09:39.3861760Z set-safe-directory: true 2025-09-07T06:09:39.3861910Z env: 2025-09-07T06:09:39.3862060Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:09:39.3862250Z SCCACHE_USE_GHA: false 2025-09-07T06:09:39.3862400Z ##[endgroup] 2025-09-07T06:09:39.4769290Z Syncing repository: pytorch/pytorch 2025-09-07T06:09:39.4808420Z ##[group]Getting Git version info 2025-09-07T06:09:39.4808840Z Working directory is '/Users/ec2-user/runner/_work/pytorch/pytorch' 2025-09-07T06:09:39.4809400Z [command]/usr/bin/git version 2025-09-07T06:09:39.4813330Z git version 2.39.3 (Apple Git-146) 2025-09-07T06:09:39.4827140Z ##[endgroup] 2025-09-07T06:09:39.4839990Z Copying '/Users/ec2-user/.gitconfig' to '/Users/ec2-user/runner/_work/_temp/ecdf034d-87ec-482f-b700-eb38b4fc099a/.gitconfig' 2025-09-07T06:09:39.4847060Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/ecdf034d-87ec-482f-b700-eb38b4fc099a' before making global git config changes 2025-09-07T06:09:39.4847660Z Adding repository directory to the temporary git global config as a safe directory 2025-09-07T06:09:39.4854750Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2025-09-07T06:09:39.4930470Z [command]/usr/bin/git config --local --get remote.origin.url 2025-09-07T06:09:39.4985740Z https://github.com/pytorch/pytorch 2025-09-07T06:09:39.4996210Z ##[group]Removing previously created refs, to avoid conflicts 2025-09-07T06:09:39.4998330Z [command]/usr/bin/git rev-parse --symbolic-full-name --verify --quiet HEAD 2025-09-07T06:09:39.5127080Z HEAD 2025-09-07T06:09:39.5197510Z ##[endgroup] 2025-09-07T06:09:39.5199260Z [command]/usr/bin/git submodule status 2025-09-07T06:09:39.6051380Z 7e1e1fe3858c63c251c637ae41a20de425dde96f android/libs/fbjni (v0.1.0-12-g7e1e1fe) 2025-09-07T06:09:39.6347260Z 4dfe081cf6bcd15db339cf2680b9281b8451eeb3 third_party/FP16 (4dfe081) 2025-09-07T06:09:39.6594070Z b408327ac2a15ec3e43352421954f5b1967701d1 third_party/FXdiv (b408327) 2025-09-07T06:09:39.6948500Z c07e3a0400713d546e0dea2d5466dd22ea389c73 third_party/NNPACK (c07e3a0) 2025-09-07T06:09:39.7416740Z 2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07 third_party/NVTX (v3.1.0-263-g2942f16) 2025-09-07T06:09:39.7918540Z 1d8f600fd424278486eade7ed3e877c99f0846b1 third_party/VulkanMemoryAllocator (v2.1.0-982-g1d8f600) 2025-09-07T06:09:40.0051590Z 51a0103656eff6fc9bfd39a4597923c4b542c883 third_party/XNNPACK (remotes/origin/ds/ndk-1243-g51a0103656) 2025-09-07T06:09:40.0543100Z 01aae101b9e5e94d6c16a9514c9fb8df99c93150 third_party/aiter (v0.1.1-92-g01aae101) 2025-09-07T06:09:40.0750510Z 299e5928955cc62af9968370293b916f5130916f third_party/benchmark (v1.9.3) 2025-09-07T06:09:40.1636680Z 7fe50dc3da2069d6645d9deb8c017a876472a977 third_party/composable_kernel (rocm-6.4.3-459-g7fe50dc3d) 2025-09-07T06:09:40.2136550Z 89c932f313c6437c38f2982869beacc89c2f2246 third_party/cpp-httplib (v0.26.0) 2025-09-07T06:09:40.2633580Z 5e3d2445e6a84d9599bee2bf78edbb4d80865e1d third_party/cpuinfo (5e3d244) 2025-09-07T06:09:40.3112840Z f937055efc6d414d11f4c6577e3977fe74f35fb6 third_party/cudnn_frontend (v0.5-52-gf937055) 2025-09-07T06:09:40.3710270Z e51efbfe18fe4f4cbb66ab814c55bf4aa0185491 third_party/cutlass (v4.1.0) 2025-09-07T06:09:40.4622550Z 4b39c551efe15e6bbade20565b0ceb2d8ce3352d third_party/fbgemm (v1.3.0-rc1-342-g4b39c551) 2025-09-07T06:09:40.5032590Z 979702c87a8713a8e0a5e9fee122b90d2ef13be5 third_party/flash-attention (v2.7.4) 2025-09-07T06:09:40.5241490Z a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757 third_party/flatbuffers (v24.12.23) 2025-09-07T06:09:40.6334060Z 40626af88bd7df9a5fb80be7b25ac85b122d6c21 third_party/fmt (11.2.0) 2025-09-07T06:09:40.6701840Z 3fb5c176c17c765a3492cd2f0321b0dab712f350 third_party/gemmlowp/gemmlowp (remotes/origin/revert-87-master-135-g3fb5c17) 2025-09-07T06:09:40.7203550Z c7b7b022c124d9643957d9bd55f57ac59fce8fa2 third_party/gloo (remotes/origin/gh/c-p-i-o/1/base-33-gc7b7b02) 2025-09-07T06:09:40.7957370Z 52eb8108c5bdec04579160ae17225d66034bd723 third_party/googletest (release-1.8.0-3544-g52eb8108) 2025-09-07T06:09:40.8394440Z 719d8e6cd7f7a0e01b155657526d693acf97c2b3 third_party/ideep (pytorch-rls-v3.7.1) 2025-09-07T06:09:40.8718060Z dec1d23ca65ab069d225dfe40dea14f455170959 third_party/ittapi (v3.25.5) 2025-09-07T06:09:40.9349310Z 5e7501833f1021ce6f618572d3baf657b6319658 third_party/kineto (remotes/origin/sraikund/test-98-g5e75018) 2025-09-07T06:09:40.9616640Z cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7 third_party/kleidiai (v1.8.0) 2025-09-07T06:09:40.9812430Z fbd8b99c2b828428947d70fdc046bb55609be93e third_party/mimalloc (v2.2.4) 2025-09-07T06:09:41.0022780Z 55f93686c01528224f448c19128836e7df245f72 third_party/nlohmann (v3.12.0) 2025-09-07T06:09:41.1240620Z e709452ef2bbc1d113faf678c24e6d3467696e83 third_party/onnx (v1.18.0) 2025-09-07T06:09:41.1434140Z a799f4aed9c94b765dcdaabaeab7d5e7e2310878 third_party/opentelemetry-cpp (v1.14.2) 2025-09-07T06:09:41.1631470Z 0fa0ef591e38c2758e3184c6c23e497b9f732ffa third_party/pocketfft (release_for_eigen-40-g0fa0ef5) 2025-09-07T06:09:41.4024660Z d1eca4e4b421cd2997495c4b4e65cea6be4e9b8a third_party/protobuf (v3.7.0-rc.2-1279-gd1eca4e4b) 2025-09-07T06:09:41.4267410Z 072586a71b55b7f8c584153d223e95687148a900 third_party/psimd (heads/master) 2025-09-07T06:09:41.4476110Z 4fe0e1e183925bf8cfa6aae24237e724a96479b8 third_party/pthreadpool (0.1-144-g4fe0e1e) 2025-09-07T06:09:41.4658100Z f5fbe867d2d26e4a0a9177a51f6e568868ad3dc8 third_party/pybind11 (v3.0.1) 2025-09-07T06:09:41.4914100Z f45429b087dd7d5bc78bb40dc7cf06425c252d67 third_party/python-peachpy (remotes/origin/pre-generated) 2025-09-07T06:09:41.5352410Z 5a1d179df9cf652951b59010a2d2075372d67f68 third_party/sleef (3.8) 2025-09-07T06:09:41.5672270Z af0118d13e52f5a08841464a768e01a0bf3e3075 third_party/tensorpipe (heads/main) 2025-09-07T06:09:41.5680670Z ##[group]Cleaning the repository 2025-09-07T06:09:41.5682800Z [command]/usr/bin/git clean -ffdx 2025-09-07T06:09:41.6146610Z [command]/usr/bin/git reset --hard HEAD 2025-09-07T06:09:43.0394760Z HEAD is now at e3068cdb446 [dynamo] Use relaxed CLOSURE_MATCH guard then ID_MATCH (#162247) 2025-09-07T06:09:43.0402210Z ##[endgroup] 2025-09-07T06:09:43.0403360Z ##[group]Disabling automatic garbage collection 2025-09-07T06:09:43.0414150Z [command]/usr/bin/git config --local gc.auto 0 2025-09-07T06:09:43.0487830Z ##[endgroup] 2025-09-07T06:09:43.0488130Z ##[group]Setting up auth 2025-09-07T06:09:43.0494990Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-09-07T06:09:43.0556540Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2025-09-07T06:09:43.1057480Z Entering 'android/libs/fbjni' 2025-09-07T06:09:43.1169320Z Entering 'third_party/FP16' 2025-09-07T06:09:43.1277610Z Entering 'third_party/FXdiv' 2025-09-07T06:09:43.1386080Z Entering 'third_party/NNPACK' 2025-09-07T06:09:43.1503030Z Entering 'third_party/NVTX' 2025-09-07T06:09:43.1639480Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:09:43.1755710Z Entering 'third_party/XNNPACK' 2025-09-07T06:09:43.2018650Z Entering 'third_party/aiter' 2025-09-07T06:09:43.2208450Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:09:43.2407040Z Entering 'third_party/benchmark' 2025-09-07T06:09:43.2527180Z Entering 'third_party/composable_kernel' 2025-09-07T06:09:43.2731990Z Entering 'third_party/cpp-httplib' 2025-09-07T06:09:43.2842320Z Entering 'third_party/cpuinfo' 2025-09-07T06:09:43.2973900Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:09:43.3094450Z Entering 'third_party/cutlass' 2025-09-07T06:09:43.3305650Z Entering 'third_party/fbgemm' 2025-09-07T06:09:43.3536530Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:09:43.3728130Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:09:43.3964000Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:09:43.4149720Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:09:43.4418880Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:09:43.4569830Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:09:43.4720920Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:09:43.4878650Z Entering 'third_party/flash-attention' 2025-09-07T06:09:43.5100570Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:09:43.5338360Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:09:43.5544100Z Entering 'third_party/flatbuffers' 2025-09-07T06:09:43.5703210Z Entering 'third_party/fmt' 2025-09-07T06:09:43.5812800Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:09:43.5922350Z Entering 'third_party/gloo' 2025-09-07T06:09:43.6037050Z Entering 'third_party/googletest' 2025-09-07T06:09:43.6156360Z Entering 'third_party/ideep' 2025-09-07T06:09:43.6295880Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:09:43.6485220Z Entering 'third_party/ittapi' 2025-09-07T06:09:43.6594250Z Entering 'third_party/kineto' 2025-09-07T06:09:43.6753840Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:09:43.6951380Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:09:43.7125300Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:09:43.7278540Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:09:43.7440250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:09:43.7600400Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:09:43.7756260Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:09:43.7909750Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:09:43.8068500Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:09:43.8242230Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:09:43.8397340Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:09:43.8546790Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:09:43.8668370Z Entering 'third_party/kleidiai' 2025-09-07T06:09:43.8804540Z Entering 'third_party/mimalloc' 2025-09-07T06:09:43.8915330Z Entering 'third_party/nlohmann' 2025-09-07T06:09:43.9067030Z Entering 'third_party/onnx' 2025-09-07T06:09:43.9352190Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:09:43.9475070Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:09:43.9678190Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:09:43.9829850Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:09:43.9983960Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:09:44.0142470Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:09:44.0342980Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:09:44.0495280Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:09:44.0650410Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:09:44.0823130Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:09:44.1003720Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:09:44.1149370Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:09:44.1390240Z Entering 'third_party/pocketfft' 2025-09-07T06:09:44.1499340Z Entering 'third_party/protobuf' 2025-09-07T06:09:44.1707190Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:09:44.1848550Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:09:44.1986300Z Entering 'third_party/psimd' 2025-09-07T06:09:44.2093790Z Entering 'third_party/pthreadpool' 2025-09-07T06:09:44.2200580Z Entering 'third_party/pybind11' 2025-09-07T06:09:44.2317920Z Entering 'third_party/python-peachpy' 2025-09-07T06:09:44.2421700Z Entering 'third_party/sleef' 2025-09-07T06:09:44.2532360Z Entering 'third_party/tensorpipe' 2025-09-07T06:09:44.2687550Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:09:44.2835440Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:09:44.2992850Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:09:44.3171050Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:09:44.3340240Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:09:44.3478150Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-09-07T06:09:44.3542940Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2025-09-07T06:09:44.4036140Z Entering 'android/libs/fbjni' 2025-09-07T06:09:44.4141240Z Entering 'third_party/FP16' 2025-09-07T06:09:44.4241210Z Entering 'third_party/FXdiv' 2025-09-07T06:09:44.4340610Z Entering 'third_party/NNPACK' 2025-09-07T06:09:44.4441680Z Entering 'third_party/NVTX' 2025-09-07T06:09:44.4540690Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:09:44.4638350Z Entering 'third_party/XNNPACK' 2025-09-07T06:09:44.4742310Z Entering 'third_party/aiter' 2025-09-07T06:09:44.4842400Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:09:44.4945670Z Entering 'third_party/benchmark' 2025-09-07T06:09:44.5046910Z Entering 'third_party/composable_kernel' 2025-09-07T06:09:44.5150660Z Entering 'third_party/cpp-httplib' 2025-09-07T06:09:44.5250550Z Entering 'third_party/cpuinfo' 2025-09-07T06:09:44.5349760Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:09:44.5450230Z Entering 'third_party/cutlass' 2025-09-07T06:09:44.5553030Z Entering 'third_party/fbgemm' 2025-09-07T06:09:44.5653740Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:09:44.5752960Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:09:44.5853790Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:09:44.5953770Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:09:44.6057690Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:09:44.6157830Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:09:44.6258540Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:09:44.6360110Z Entering 'third_party/flash-attention' 2025-09-07T06:09:44.6458950Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:09:44.6560820Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:09:44.6666150Z Entering 'third_party/flatbuffers' 2025-09-07T06:09:44.6767400Z Entering 'third_party/fmt' 2025-09-07T06:09:44.6867570Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:09:44.6967820Z Entering 'third_party/gloo' 2025-09-07T06:09:44.7067760Z Entering 'third_party/googletest' 2025-09-07T06:09:44.7167310Z Entering 'third_party/ideep' 2025-09-07T06:09:44.7265800Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:09:44.7369370Z Entering 'third_party/ittapi' 2025-09-07T06:09:44.7471330Z Entering 'third_party/kineto' 2025-09-07T06:09:44.7570350Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:09:44.7668630Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:09:44.7768080Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:09:44.7869970Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:09:44.7970740Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:09:44.8069630Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:09:44.8171070Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:09:44.8273900Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:09:44.8374900Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:09:44.8476890Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:09:44.8579710Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:09:44.8681080Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:09:44.8785330Z Entering 'third_party/kleidiai' 2025-09-07T06:09:44.8884910Z Entering 'third_party/mimalloc' 2025-09-07T06:09:44.8984660Z Entering 'third_party/nlohmann' 2025-09-07T06:09:44.9084400Z Entering 'third_party/onnx' 2025-09-07T06:09:44.9188060Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:09:44.9291270Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:09:44.9390550Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:09:44.9488890Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:09:44.9587440Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:09:44.9684290Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:09:44.9785630Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:09:44.9884210Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:09:44.9982510Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:09:45.0079560Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:09:45.0178370Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:09:45.0279060Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:09:45.0386240Z Entering 'third_party/pocketfft' 2025-09-07T06:09:45.0486270Z Entering 'third_party/protobuf' 2025-09-07T06:09:45.0585000Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:09:45.0684330Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:09:45.0784820Z Entering 'third_party/psimd' 2025-09-07T06:09:45.0884810Z Entering 'third_party/pthreadpool' 2025-09-07T06:09:45.0983310Z Entering 'third_party/pybind11' 2025-09-07T06:09:45.1081650Z Entering 'third_party/python-peachpy' 2025-09-07T06:09:45.1179980Z Entering 'third_party/sleef' 2025-09-07T06:09:45.1278910Z Entering 'third_party/tensorpipe' 2025-09-07T06:09:45.1376610Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:09:45.1474950Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:09:45.1573010Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:09:45.1672160Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:09:45.1768870Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:09:45.1884290Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-09-07T06:09:45.1956810Z ##[endgroup] 2025-09-07T06:09:45.1957090Z ##[group]Fetching the repository 2025-09-07T06:09:45.1961590Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-09-07T06:09:50.1217160Z From https://github.com/pytorch/pytorch 2025-09-07T06:09:50.1217540Z - [deleted] (none) -> origin/export-D79751098 2025-09-07T06:09:50.2374560Z - [deleted] (none) -> origin/gh/XilunWu/162/base 2025-09-07T06:09:50.2375010Z - [deleted] (none) -> origin/gh/XilunWu/162/head 2025-09-07T06:09:50.2375320Z - [deleted] (none) -> origin/gh/XilunWu/162/orig 2025-09-07T06:09:50.2375610Z - [deleted] (none) -> origin/gh/anijain2305/847/base 2025-09-07T06:09:50.2376230Z - [deleted] (none) -> origin/gh/anijain2305/847/head 2025-09-07T06:09:50.2376910Z - [deleted] (none) -> origin/gh/anijain2305/847/orig 2025-09-07T06:09:50.2377700Z - [deleted] (none) -> origin/gh/ankitageorge/18/base 2025-09-07T06:09:50.2378690Z - [deleted] (none) -> origin/gh/ankitageorge/18/head 2025-09-07T06:09:50.2379320Z - [deleted] (none) -> origin/gh/ankitageorge/18/orig 2025-09-07T06:09:50.2380620Z - [deleted] (none) -> origin/gh/ankitageorge/19/base 2025-09-07T06:09:50.2380970Z - [deleted] (none) -> origin/gh/ankitageorge/19/head 2025-09-07T06:09:50.2381490Z - [deleted] (none) -> origin/gh/ankitageorge/19/orig 2025-09-07T06:09:50.2382210Z - [deleted] (none) -> origin/gh/ankitageorge/20/base 2025-09-07T06:09:50.2382910Z - [deleted] (none) -> origin/gh/ankitageorge/20/head 2025-09-07T06:09:50.2391990Z - [deleted] (none) -> origin/gh/ankitageorge/20/orig 2025-09-07T06:09:50.2392290Z - [deleted] (none) -> origin/gh/anshul-si/10/base 2025-09-07T06:09:50.2392570Z - [deleted] (none) -> origin/gh/anshul-si/10/head 2025-09-07T06:09:50.2393100Z - [deleted] (none) -> origin/gh/anshul-si/10/orig 2025-09-07T06:09:50.2393380Z - [deleted] (none) -> origin/gh/anshul-si/11/base 2025-09-07T06:09:50.2393650Z - [deleted] (none) -> origin/gh/anshul-si/11/head 2025-09-07T06:09:50.2393920Z - [deleted] (none) -> origin/gh/anshul-si/11/orig 2025-09-07T06:09:50.2394180Z - [deleted] (none) -> origin/gh/anshul-si/12/base 2025-09-07T06:09:50.2394450Z - [deleted] (none) -> origin/gh/anshul-si/12/head 2025-09-07T06:09:50.2394720Z - [deleted] (none) -> origin/gh/anshul-si/12/orig 2025-09-07T06:09:50.2394990Z - [deleted] (none) -> origin/gh/anshul-si/13/base 2025-09-07T06:09:50.2395250Z - [deleted] (none) -> origin/gh/anshul-si/13/head 2025-09-07T06:09:50.2395530Z - [deleted] (none) -> origin/gh/anshul-si/13/orig 2025-09-07T06:09:50.2395800Z - [deleted] (none) -> origin/gh/anshul-si/14/base 2025-09-07T06:09:50.2396070Z - [deleted] (none) -> origin/gh/anshul-si/14/head 2025-09-07T06:09:50.2396340Z - [deleted] (none) -> origin/gh/anshul-si/14/orig 2025-09-07T06:09:50.2396610Z - [deleted] (none) -> origin/gh/anshul-si/9/base 2025-09-07T06:09:50.2396880Z - [deleted] (none) -> origin/gh/anshul-si/9/head 2025-09-07T06:09:50.2397150Z - [deleted] (none) -> origin/gh/anshul-si/9/orig 2025-09-07T06:09:50.2397430Z - [deleted] (none) -> origin/gh/colinchan15/4/base 2025-09-07T06:09:50.2398140Z - [deleted] (none) -> origin/gh/colinchan15/4/head 2025-09-07T06:09:50.2398890Z - [deleted] (none) -> origin/gh/colinchan15/5/base 2025-09-07T06:09:50.2399570Z - [deleted] (none) -> origin/gh/colinchan15/5/head 2025-09-07T06:09:50.2400300Z - [deleted] (none) -> origin/gh/drisspg/150/base 2025-09-07T06:09:50.2401020Z - [deleted] (none) -> origin/gh/drisspg/150/head 2025-09-07T06:09:50.2401770Z - [deleted] (none) -> origin/gh/drisspg/150/orig 2025-09-07T06:09:50.2402460Z - [deleted] (none) -> origin/gh/drisspg/151/base 2025-09-07T06:09:50.2403200Z - [deleted] (none) -> origin/gh/drisspg/151/head 2025-09-07T06:09:50.2403930Z - [deleted] (none) -> origin/gh/drisspg/151/orig 2025-09-07T06:09:50.2404630Z - [deleted] (none) -> origin/gh/ezyang/3068/base 2025-09-07T06:09:50.2405350Z - [deleted] (none) -> origin/gh/ezyang/3068/head 2025-09-07T06:09:50.2406070Z - [deleted] (none) -> origin/gh/ezyang/3068/orig 2025-09-07T06:09:50.2406830Z - [deleted] (none) -> origin/gh/jiayisunx/57/base 2025-09-07T06:09:50.2407580Z - [deleted] (none) -> origin/gh/jiayisunx/57/head 2025-09-07T06:09:50.2408290Z - [deleted] (none) -> origin/gh/jiayisunx/57/orig 2025-09-07T06:09:50.2409020Z - [deleted] (none) -> origin/gh/malfet/457/base 2025-09-07T06:09:50.2409700Z - [deleted] (none) -> origin/gh/malfet/457/head 2025-09-07T06:09:50.2410430Z - [deleted] (none) -> origin/gh/malfet/457/orig 2025-09-07T06:09:50.2411140Z - [deleted] (none) -> origin/gh/v0i0/2/base 2025-09-07T06:09:50.2411840Z - [deleted] (none) -> origin/gh/v0i0/2/head 2025-09-07T06:09:50.2412580Z - [deleted] (none) -> origin/gh/v0i0/2/orig 2025-09-07T06:09:50.2413340Z - [deleted] (none) -> origin/gh/v0i0/3/base 2025-09-07T06:09:50.2414010Z - [deleted] (none) -> origin/gh/v0i0/3/head 2025-09-07T06:09:50.2414740Z - [deleted] (none) -> origin/gh/v0i0/3/orig 2025-09-07T06:09:50.2415490Z - [deleted] (none) -> origin/gh/wconstab/439/base 2025-09-07T06:09:50.2416370Z - [deleted] (none) -> origin/gh/wconstab/439/head 2025-09-07T06:09:50.2416930Z - [deleted] (none) -> origin/gh/wconstab/439/orig 2025-09-07T06:09:50.2417640Z - [deleted] (none) -> origin/gh/xmfan/275/base 2025-09-07T06:09:50.2418350Z - [deleted] (none) -> origin/gh/xmfan/275/head 2025-09-07T06:09:50.2419060Z - [deleted] (none) -> origin/gh/xmfan/275/orig 2025-09-07T06:09:50.2419810Z - [deleted] (none) -> origin/gh/yangw-dev/1/base 2025-09-07T06:09:50.2420530Z - [deleted] (none) -> origin/gh/yangw-dev/10/base 2025-09-07T06:09:50.2421320Z - [deleted] (none) -> origin/gh/yangw-dev/10/head 2025-09-07T06:09:50.2422030Z - [deleted] (none) -> origin/gh/yangw-dev/10/orig 2025-09-07T06:09:50.2422740Z - [deleted] (none) -> origin/gh/yangw-dev/2/base 2025-09-07T06:09:50.2423450Z - [deleted] (none) -> origin/gh/yangw-dev/2/head 2025-09-07T06:09:50.2424190Z - [deleted] (none) -> origin/gh/yangw-dev/4/base 2025-09-07T06:09:50.2424930Z - [deleted] (none) -> origin/gh/yangw-dev/4/head 2025-09-07T06:09:50.2425650Z - [deleted] (none) -> origin/gh/zou3519/1190/base 2025-09-07T06:09:50.2426360Z - [deleted] (none) -> origin/gh/zou3519/1190/head 2025-09-07T06:09:50.2427060Z - [deleted] (none) -> origin/gh/zou3519/1190/orig 2025-09-07T06:09:50.2427800Z - [deleted] (none) -> origin/malfet-patch-7 2025-09-07T06:09:50.2428570Z - [deleted] (none) -> origin/update-audio-commit-hash/16791960928-1711-1 2025-09-07T06:09:50.2429260Z - [deleted] (none) -> ciflow/inductor-rocm/161700 2025-09-07T06:09:50.2429960Z - [deleted] (none) -> ciflow/inductor/162314 2025-09-07T06:09:50.2430740Z - [deleted] (none) -> ciflow/periodic-rocm-mi300/161700 2025-09-07T06:09:50.2431430Z - [deleted] (none) -> ciflow/rocm-mi300/161700 2025-09-07T06:09:50.2432150Z - [deleted] (none) -> ciflow/rocm/161700 2025-09-07T06:09:50.2432850Z - [deleted] (none) -> ciflow/trunk/160907 2025-09-07T06:09:50.2433590Z - [deleted] (none) -> ciflow/trunk/162314 2025-09-07T06:09:50.2434340Z - [deleted] (none) -> ciflow/vllm/162000 2025-09-07T06:09:50.2435020Z - [deleted] (none) -> ciflow/xpu/139971 2025-09-07T06:09:50.2435780Z - [deleted] (none) -> trunk/2d31c3d99d9a0b71d6939b0d6961fe6f99838ba9 2025-09-07T06:09:50.2436500Z - [deleted] (none) -> trunk/2e1345a0f8427ecf4eabfc1e3aa1b46787c47467 2025-09-07T06:09:50.2437180Z - [deleted] (none) -> trunk/2fed4fb464d87fe7cc2ff646ec2bb8052e76c729 2025-09-07T06:09:50.2437980Z - [deleted] (none) -> trunk/37da7b777b06e4a0f8e6192dd2a7e9047194fbf3 2025-09-07T06:09:50.2438650Z - [deleted] (none) -> trunk/4d3ab2669b3839b53361ebc5c8d53bcc819b4876 2025-09-07T06:09:50.2439370Z - [deleted] (none) -> trunk/684ae48c160364ea46c77050a7fa24c13a751df2 2025-09-07T06:09:50.2440110Z - [deleted] (none) -> trunk/76f81b56d3f5788d79c4250bae76da8f929ac4ba 2025-09-07T06:09:50.2440810Z - [deleted] (none) -> trunk/77d8e98e1b07797c6730b7ba7c313c984cce4ed3 2025-09-07T06:09:50.2441520Z - [deleted] (none) -> trunk/82d2d23e855007c581b529b43dde397f55f47e43 2025-09-07T06:09:50.2442240Z - [deleted] (none) -> trunk/ad7b748686610e317e5c0cbbd523b7a6e3b8b51f 2025-09-07T06:09:50.2442990Z - [deleted] (none) -> trunk/b93f87d67b874fd4a1c57c89869ae53c4387063c 2025-09-07T06:09:50.2443700Z - [deleted] (none) -> trunk/b994f6e3b331faeac693970bd1e14972f3fc9d4a 2025-09-07T06:09:50.2444580Z - [deleted] (none) -> trunk/c83cbd2f2a2de2e3258f07de77d8740743df6d2d 2025-09-07T06:09:50.2445130Z - [deleted] (none) -> trunk/db622842bc97acc66d1ee31b8ceacd63abea3b55 2025-09-07T06:09:50.2445860Z - [deleted] (none) -> trunk/e015de19695402569e2029429c10508f938b6f05 2025-09-07T06:09:50.2446570Z - [deleted] (none) -> trunk/f3697b033ea44a28caa7bb31cf6357641863f8db 2025-09-07T06:09:50.2447320Z - [deleted] (none) -> trunk/f44ad54bc6edd1b41d9c9b6701c27e3e6e636601 2025-09-07T06:09:50.2448000Z - [deleted] (none) -> trunk/fb2d5ea697a72301d0fb889ead412c6b5ed0d1b8 2025-09-07T06:09:51.7034360Z * [new branch] gh/PaulZhang12/25/base -> origin/gh/PaulZhang12/25/base 2025-09-07T06:09:51.7035680Z * [new branch] gh/PaulZhang12/25/head -> origin/gh/PaulZhang12/25/head 2025-09-07T06:09:51.7038640Z * [new branch] gh/PaulZhang12/25/orig -> origin/gh/PaulZhang12/25/orig 2025-09-07T06:09:51.7091500Z b919560c4a7..93fb23d6fae main -> origin/main 2025-09-07T06:09:51.7097540Z * [new tag] ciflow/inductor-periodic/162227 -> ciflow/inductor-periodic/162227 2025-09-07T06:09:51.7099400Z * [new tag] ciflow/inductor/161667 -> ciflow/inductor/161667 2025-09-07T06:09:51.7102170Z * [new tag] ciflow/inductor/162345 -> ciflow/inductor/162345 2025-09-07T06:09:51.7104600Z * [new tag] ciflow/trunk/161667 -> ciflow/trunk/161667 2025-09-07T06:09:51.7106800Z * [new tag] ciflow/trunk/162328 -> ciflow/trunk/162328 2025-09-07T06:09:51.7109370Z * [new tag] trunk/104f2680e03d13a4765ca69f905d8f16fc0c822f -> trunk/104f2680e03d13a4765ca69f905d8f16fc0c822f 2025-09-07T06:09:51.7110800Z * [new tag] trunk/2a45837e98c63cae9d1a2e2133a727b829e549d5 -> trunk/2a45837e98c63cae9d1a2e2133a727b829e549d5 2025-09-07T06:09:51.7114730Z * [new tag] trunk/eac3d6f04cfbbebe3d470dacd216da7d4b1f95a8 -> trunk/eac3d6f04cfbbebe3d470dacd216da7d4b1f95a8 2025-09-07T06:09:51.7116300Z * [new tag] trunk/fea20775ad96bdca972a1811d7d3372f368614ab -> trunk/fea20775ad96bdca972a1811d7d3372f368614ab 2025-09-07T06:09:51.8302060Z [command]/usr/bin/git rev-parse --verify --quiet 93fb23d6fae7c4e82c4239a1033e522088742634^{object} 2025-09-07T06:09:51.8371480Z 93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:09:51.8375090Z ##[endgroup] 2025-09-07T06:09:51.8375340Z ##[group]Determining the checkout info 2025-09-07T06:09:51.8375620Z ##[endgroup] 2025-09-07T06:09:51.8378480Z [command]/usr/bin/git sparse-checkout disable 2025-09-07T06:09:51.8557880Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-09-07T06:09:51.8620870Z ##[group]Checking out the ref 2025-09-07T06:09:51.8623250Z [command]/usr/bin/git checkout --progress --force 93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:09:52.0803010Z Previous HEAD position was e3068cdb446 [dynamo] Use relaxed CLOSURE_MATCH guard then ID_MATCH (#162247) 2025-09-07T06:09:52.0832660Z HEAD is now at 93fb23d6fae Build vLLM nightly wheels (#162000) 2025-09-07T06:09:52.0840940Z ##[endgroup] 2025-09-07T06:09:52.0841200Z ##[group]Setting up auth for fetching submodules 2025-09-07T06:09:52.0845430Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-09-07T06:09:52.0920140Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-09-07T06:09:52.0981640Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-09-07T06:09:52.1041700Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-09-07T06:09:52.1098250Z ##[endgroup] 2025-09-07T06:09:52.1098490Z ##[group]Fetching submodules 2025-09-07T06:09:52.1100560Z [command]/usr/bin/git submodule sync --recursive 2025-09-07T06:09:52.1599650Z Synchronizing submodule url for 'android/libs/fbjni' 2025-09-07T06:09:52.1639760Z Synchronizing submodule url for 'third_party/FP16' 2025-09-07T06:09:52.1676880Z Synchronizing submodule url for 'third_party/FXdiv' 2025-09-07T06:09:52.1715100Z Synchronizing submodule url for 'third_party/NNPACK' 2025-09-07T06:09:52.1751360Z Synchronizing submodule url for 'third_party/NVTX' 2025-09-07T06:09:52.1788900Z Synchronizing submodule url for 'third_party/VulkanMemoryAllocator' 2025-09-07T06:09:52.1825150Z Synchronizing submodule url for 'third_party/XNNPACK' 2025-09-07T06:09:52.1868580Z Synchronizing submodule url for 'third_party/aiter' 2025-09-07T06:09:52.1904920Z Synchronizing submodule url for 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:09:52.1946740Z Synchronizing submodule url for 'third_party/benchmark' 2025-09-07T06:09:52.1984660Z Synchronizing submodule url for 'third_party/composable_kernel' 2025-09-07T06:09:52.2024570Z Synchronizing submodule url for 'third_party/cpp-httplib' 2025-09-07T06:09:52.2062220Z Synchronizing submodule url for 'third_party/cpuinfo' 2025-09-07T06:09:52.2100100Z Synchronizing submodule url for 'third_party/cudnn_frontend' 2025-09-07T06:09:52.2137840Z Synchronizing submodule url for 'third_party/cutlass' 2025-09-07T06:09:52.2178340Z Synchronizing submodule url for 'third_party/fbgemm' 2025-09-07T06:09:52.2214950Z Synchronizing submodule url for 'third_party/fbgemm/external/asmjit' 2025-09-07T06:09:52.2251340Z Synchronizing submodule url for 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:09:52.2290770Z Synchronizing submodule url for 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:09:52.2327040Z Synchronizing submodule url for 'third_party/fbgemm/external/cutlass' 2025-09-07T06:09:52.2367160Z Synchronizing submodule url for 'third_party/fbgemm/external/googletest' 2025-09-07T06:09:52.2404730Z Synchronizing submodule url for 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:09:52.2441190Z Synchronizing submodule url for 'third_party/fbgemm/external/json' 2025-09-07T06:09:52.2481670Z Synchronizing submodule url for 'third_party/flash-attention' 2025-09-07T06:09:52.2517980Z Synchronizing submodule url for 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:09:52.2556490Z Synchronizing submodule url for 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:09:52.2598590Z Synchronizing submodule url for 'third_party/flatbuffers' 2025-09-07T06:09:52.2638090Z Synchronizing submodule url for 'third_party/fmt' 2025-09-07T06:09:52.2675740Z Synchronizing submodule url for 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:09:52.2712900Z Synchronizing submodule url for 'third_party/gloo' 2025-09-07T06:09:52.2750380Z Synchronizing submodule url for 'third_party/googletest' 2025-09-07T06:09:52.2790590Z Synchronizing submodule url for 'third_party/ideep' 2025-09-07T06:09:52.2825820Z Synchronizing submodule url for 'third_party/ideep/mkl-dnn' 2025-09-07T06:09:52.2866830Z Synchronizing submodule url for 'third_party/ittapi' 2025-09-07T06:09:52.2904170Z Synchronizing submodule url for 'third_party/kineto' 2025-09-07T06:09:52.2939970Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:09:52.2974770Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:09:52.3012840Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:09:52.3050730Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:09:52.3088730Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:09:52.3123620Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:09:52.3163090Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:09:52.3200450Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:09:52.3238460Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:09:52.3276130Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:09:52.3315430Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:09:52.3352160Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:09:52.3391500Z Synchronizing submodule url for 'third_party/kleidiai' 2025-09-07T06:09:52.3429010Z Synchronizing submodule url for 'third_party/mimalloc' 2025-09-07T06:09:52.3466390Z Synchronizing submodule url for 'third_party/nlohmann' 2025-09-07T06:09:52.3503740Z Synchronizing submodule url for 'third_party/onnx' 2025-09-07T06:09:52.3545180Z Synchronizing submodule url for 'third_party/onnx/third_party/pybind11' 2025-09-07T06:09:52.3586580Z Synchronizing submodule url for 'third_party/opentelemetry-cpp' 2025-09-07T06:09:52.3622450Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:09:52.3658520Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:09:52.3695060Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:09:52.3731980Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:09:52.3768670Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:09:52.3805400Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:09:52.3842670Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:09:52.3877920Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:09:52.3915310Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:09:52.3954220Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:09:52.4000810Z Synchronizing submodule url for 'third_party/pocketfft' 2025-09-07T06:09:52.4039800Z Synchronizing submodule url for 'third_party/protobuf' 2025-09-07T06:09:52.4075580Z Synchronizing submodule url for 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:09:52.4112630Z Synchronizing submodule url for 'third_party/protobuf/third_party/googletest' 2025-09-07T06:09:52.4152060Z Synchronizing submodule url for 'third_party/psimd' 2025-09-07T06:09:52.4189610Z Synchronizing submodule url for 'third_party/pthreadpool' 2025-09-07T06:09:52.4226990Z Synchronizing submodule url for 'third_party/pybind11' 2025-09-07T06:09:52.4263910Z Synchronizing submodule url for 'third_party/python-peachpy' 2025-09-07T06:09:52.4300980Z Synchronizing submodule url for 'third_party/sleef' 2025-09-07T06:09:52.4337860Z Synchronizing submodule url for 'third_party/tensorpipe' 2025-09-07T06:09:52.4372370Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:09:52.4408980Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:09:52.4444970Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:09:52.4482420Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:09:52.4517420Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:09:52.4561420Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --recursive 2025-09-07T06:09:52.5365380Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-09-07T06:09:52.5547660Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-09-07T06:09:52.5714350Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-09-07T06:09:52.6011780Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-09-07T06:09:52.6579300Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-09-07T06:09:52.6915780Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-09-07T06:09:52.7713750Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-09-07T06:09:52.8578860Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-09-07T06:09:53.0403670Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-09-07T06:09:53.0935870Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-09-07T06:09:53.1975020Z Submodule path 'third_party/composable_kernel': checked out '7fe50dc3da2069d6645d9deb8c017a876472a977' 2025-09-07T06:09:53.2276230Z Submodule path 'third_party/cpp-httplib': checked out '89c932f313c6437c38f2982869beacc89c2f2246' 2025-09-07T06:09:53.2806690Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-09-07T06:09:53.3135070Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-09-07T06:09:53.3859570Z Submodule path 'third_party/cutlass': checked out 'e51efbfe18fe4f4cbb66ab814c55bf4aa0185491' 2025-09-07T06:09:53.4798060Z Submodule path 'third_party/fbgemm': checked out '4b39c551efe15e6bbade20565b0ceb2d8ce3352d' 2025-09-07T06:09:53.5307510Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'a3199e8857792cd10b7589ff5d58343d2c9008ea' 2025-09-07T06:09:53.6281210Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out 'b1281b8b08d973a7064f864f47eeb30f3e2596e9' 2025-09-07T06:09:53.6985150Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-09-07T06:09:53.7957080Z Submodule path 'third_party/fbgemm/external/cutlass': checked out '311f3c8e51dc0eb56310cfc6980bf63d0fbd7917' 2025-09-07T06:09:53.8705290Z Submodule path 'third_party/fbgemm/external/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-09-07T06:09:53.9015080Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out '63b6a7b541fa7f08f8475ca7d74054db36ff2691' 2025-09-07T06:09:54.0280120Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-09-07T06:09:54.1090030Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-09-07T06:09:54.2931370Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-09-07T06:09:54.4120020Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-09-07T06:09:54.5172480Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-09-07T06:09:54.5445910Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-09-07T06:09:54.5703830Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-09-07T06:09:54.6037980Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-09-07T06:09:54.6405490Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-09-07T06:09:54.6605190Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-09-07T06:09:54.9846860Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-09-07T06:09:55.0112850Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-09-07T06:09:55.0496790Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-09-07T06:09:55.1132380Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-09-07T06:09:55.2171440Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-09-07T06:09:55.2754540Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-09-07T06:09:55.3602750Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-09-07T06:09:55.3897950Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-09-07T06:09:55.4187120Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-09-07T06:09:55.4623820Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-09-07T06:09:55.5340530Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-09-07T06:09:55.6768170Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-09-07T06:09:55.7106160Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-09-07T06:09:55.7885410Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-09-07T06:09:55.8622150Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-09-07T06:09:55.9124900Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-09-07T06:09:55.9958740Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-09-07T06:09:56.1171260Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-09-07T06:09:56.1954820Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-09-07T06:09:56.2916310Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-09-07T06:09:56.3938160Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-09-07T06:09:56.4610600Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-09-07T06:09:56.5339290Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-09-07T06:09:56.5765400Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-09-07T06:09:56.6992060Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-09-07T06:09:56.7389780Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-09-07T06:09:56.7683630Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-09-07T06:09:56.8196260Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-09-07T06:09:56.9241460Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-09-07T06:09:56.9953870Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-09-07T06:09:57.4567330Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-09-07T06:09:57.4760570Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-09-07T06:09:57.9656610Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-09-07T06:09:58.0250100Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-09-07T06:09:58.1005830Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-09-07T06:09:58.1174360Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-09-07T06:09:58.1362660Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-09-07T06:09:58.2217750Z Submodule path 'third_party/pybind11': checked out 'f5fbe867d2d26e4a0a9177a51f6e568868ad3dc8' 2025-09-07T06:09:58.2440210Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-09-07T06:09:58.3481110Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-09-07T06:09:58.4149610Z Submodule path 'third_party/tensorpipe': checked out 'af0118d13e52f5a08841464a768e01a0bf3e3075' 2025-09-07T06:09:58.4867140Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-09-07T06:09:58.5160130Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-09-07T06:09:58.6349100Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b' 2025-09-07T06:09:58.7175450Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-09-07T06:09:58.7406010Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-09-07T06:09:58.7454120Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-09-07T06:09:58.8006100Z Entering 'android/libs/fbjni' 2025-09-07T06:09:58.8090940Z Entering 'third_party/FP16' 2025-09-07T06:09:58.8171340Z Entering 'third_party/FXdiv' 2025-09-07T06:09:58.8251870Z Entering 'third_party/NNPACK' 2025-09-07T06:09:58.8332900Z Entering 'third_party/NVTX' 2025-09-07T06:09:58.8416370Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:09:58.8497650Z Entering 'third_party/XNNPACK' 2025-09-07T06:09:58.8582960Z Entering 'third_party/aiter' 2025-09-07T06:09:58.8665670Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:09:58.8753090Z Entering 'third_party/benchmark' 2025-09-07T06:09:58.8836900Z Entering 'third_party/composable_kernel' 2025-09-07T06:09:58.8921430Z Entering 'third_party/cpp-httplib' 2025-09-07T06:09:58.9005100Z Entering 'third_party/cpuinfo' 2025-09-07T06:09:58.9093290Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:09:58.9174260Z Entering 'third_party/cutlass' 2025-09-07T06:09:58.9259430Z Entering 'third_party/fbgemm' 2025-09-07T06:09:58.9341410Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:09:58.9423470Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:09:58.9506330Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:09:58.9588880Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:09:58.9672220Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:09:58.9755000Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:09:58.9836970Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:09:58.9920450Z Entering 'third_party/flash-attention' 2025-09-07T06:09:59.0002270Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:09:59.0084620Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:09:59.0169690Z Entering 'third_party/flatbuffers' 2025-09-07T06:09:59.0251740Z Entering 'third_party/fmt' 2025-09-07T06:09:59.0331600Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:09:59.0410610Z Entering 'third_party/gloo' 2025-09-07T06:09:59.0491600Z Entering 'third_party/googletest' 2025-09-07T06:09:59.0575330Z Entering 'third_party/ideep' 2025-09-07T06:09:59.0654000Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:09:59.0736820Z Entering 'third_party/ittapi' 2025-09-07T06:09:59.0818510Z Entering 'third_party/kineto' 2025-09-07T06:09:59.0900890Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:09:59.0983680Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:09:59.1067310Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:09:59.1149200Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:09:59.1229490Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:09:59.1309380Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:09:59.1392890Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:09:59.1474500Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:09:59.1556330Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:09:59.1638370Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:09:59.1722480Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:09:59.1804060Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:09:59.1885230Z Entering 'third_party/kleidiai' 2025-09-07T06:09:59.1968110Z Entering 'third_party/mimalloc' 2025-09-07T06:09:59.2047680Z Entering 'third_party/nlohmann' 2025-09-07T06:09:59.2129690Z Entering 'third_party/onnx' 2025-09-07T06:09:59.2216900Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:09:59.2302840Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:09:59.2384520Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:09:59.2465980Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:09:59.2547810Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:09:59.2629060Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:09:59.2709320Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:09:59.2791030Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:09:59.2873340Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:09:59.2953070Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:09:59.3035080Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:09:59.3119960Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:09:59.3212550Z Entering 'third_party/pocketfft' 2025-09-07T06:09:59.3296900Z Entering 'third_party/protobuf' 2025-09-07T06:09:59.3391200Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:09:59.3473400Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:09:59.3557280Z Entering 'third_party/psimd' 2025-09-07T06:09:59.3639480Z Entering 'third_party/pthreadpool' 2025-09-07T06:09:59.3720210Z Entering 'third_party/pybind11' 2025-09-07T06:09:59.3801250Z Entering 'third_party/python-peachpy' 2025-09-07T06:09:59.3882710Z Entering 'third_party/sleef' 2025-09-07T06:09:59.3964260Z Entering 'third_party/tensorpipe' 2025-09-07T06:09:59.4045350Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:09:59.4126680Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:09:59.4209270Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:09:59.4291050Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:09:59.4371280Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:09:59.4463950Z ##[endgroup] 2025-09-07T06:09:59.4464220Z ##[group]Persisting credentials for submodules 2025-09-07T06:09:59.4470160Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :" 2025-09-07T06:09:59.4966630Z Entering 'android/libs/fbjni' 2025-09-07T06:09:59.5036330Z url.https://github.com/.insteadof 2025-09-07T06:09:59.5036560Z url.https://github.com/.insteadof 2025-09-07T06:09:59.5102870Z Entering 'third_party/FP16' 2025-09-07T06:09:59.5171490Z url.https://github.com/.insteadof 2025-09-07T06:09:59.5171710Z url.https://github.com/.insteadof 2025-09-07T06:09:59.5238010Z Entering 'third_party/FXdiv' 2025-09-07T06:09:59.5304260Z url.https://github.com/.insteadof 2025-09-07T06:09:59.5304870Z url.https://github.com/.insteadof 2025-09-07T06:09:59.5369180Z Entering 'third_party/NNPACK' 2025-09-07T06:09:59.5435380Z url.https://github.com/.insteadof 2025-09-07T06:09:59.5435610Z url.https://github.com/.insteadof 2025-09-07T06:09:59.5500050Z Entering 'third_party/NVTX' 2025-09-07T06:09:59.5566720Z url.https://github.com/.insteadof 2025-09-07T06:09:59.5566960Z url.https://github.com/.insteadof 2025-09-07T06:09:59.5632860Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:09:59.5696410Z url.https://github.com/.insteadof 2025-09-07T06:09:59.5696640Z url.https://github.com/.insteadof 2025-09-07T06:09:59.5763820Z Entering 'third_party/XNNPACK' 2025-09-07T06:09:59.5830320Z url.https://github.com/.insteadof 2025-09-07T06:09:59.5830550Z url.https://github.com/.insteadof 2025-09-07T06:09:59.5901120Z Entering 'third_party/aiter' 2025-09-07T06:09:59.5970880Z url.https://github.com/.insteadof 2025-09-07T06:09:59.5971250Z url.https://github.com/.insteadof 2025-09-07T06:09:59.6035410Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:09:59.6102070Z url.https://github.com/.insteadof 2025-09-07T06:09:59.6102290Z url.https://github.com/.insteadof 2025-09-07T06:09:59.6172930Z Entering 'third_party/benchmark' 2025-09-07T06:09:59.6241340Z url.https://github.com/.insteadof 2025-09-07T06:09:59.6241570Z url.https://github.com/.insteadof 2025-09-07T06:09:59.6307940Z Entering 'third_party/composable_kernel' 2025-09-07T06:09:59.6374610Z url.https://github.com/.insteadof 2025-09-07T06:09:59.6374840Z url.https://github.com/.insteadof 2025-09-07T06:09:59.6443620Z Entering 'third_party/cpp-httplib' 2025-09-07T06:09:59.6508320Z url.https://github.com/.insteadof 2025-09-07T06:09:59.6509230Z url.https://github.com/.insteadof 2025-09-07T06:09:59.6575010Z Entering 'third_party/cpuinfo' 2025-09-07T06:09:59.6641680Z url.https://github.com/.insteadof 2025-09-07T06:09:59.6641930Z url.https://github.com/.insteadof 2025-09-07T06:09:59.6708090Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:09:59.6774120Z url.https://github.com/.insteadof 2025-09-07T06:09:59.6774350Z url.https://github.com/.insteadof 2025-09-07T06:09:59.6838690Z Entering 'third_party/cutlass' 2025-09-07T06:09:59.6904490Z url.https://github.com/.insteadof 2025-09-07T06:09:59.6904720Z url.https://github.com/.insteadof 2025-09-07T06:09:59.6973210Z Entering 'third_party/fbgemm' 2025-09-07T06:09:59.7039490Z url.https://github.com/.insteadof 2025-09-07T06:09:59.7039720Z url.https://github.com/.insteadof 2025-09-07T06:09:59.7105240Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:09:59.7172050Z url.https://github.com/.insteadof 2025-09-07T06:09:59.7172280Z url.https://github.com/.insteadof 2025-09-07T06:09:59.7238130Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:09:59.7305230Z url.https://github.com/.insteadof 2025-09-07T06:09:59.7305460Z url.https://github.com/.insteadof 2025-09-07T06:09:59.7373880Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:09:59.7441070Z url.https://github.com/.insteadof 2025-09-07T06:09:59.7441310Z url.https://github.com/.insteadof 2025-09-07T06:09:59.7507700Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:09:59.7575520Z url.https://github.com/.insteadof 2025-09-07T06:09:59.7575740Z url.https://github.com/.insteadof 2025-09-07T06:09:59.7644350Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:09:59.7709460Z url.https://github.com/.insteadof 2025-09-07T06:09:59.7709690Z url.https://github.com/.insteadof 2025-09-07T06:09:59.7775890Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:09:59.7840390Z url.https://github.com/.insteadof 2025-09-07T06:09:59.7841330Z url.https://github.com/.insteadof 2025-09-07T06:09:59.7905280Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:09:59.7971340Z url.https://github.com/.insteadof 2025-09-07T06:09:59.7971580Z url.https://github.com/.insteadof 2025-09-07T06:09:59.8038340Z Entering 'third_party/flash-attention' 2025-09-07T06:09:59.8106130Z url.https://github.com/.insteadof 2025-09-07T06:09:59.8106430Z url.https://github.com/.insteadof 2025-09-07T06:09:59.8171780Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:09:59.8238270Z url.https://github.com/.insteadof 2025-09-07T06:09:59.8238500Z url.https://github.com/.insteadof 2025-09-07T06:09:59.8307340Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:09:59.8374070Z url.https://github.com/.insteadof 2025-09-07T06:09:59.8374300Z url.https://github.com/.insteadof 2025-09-07T06:09:59.8445880Z Entering 'third_party/flatbuffers' 2025-09-07T06:09:59.8511920Z url.https://github.com/.insteadof 2025-09-07T06:09:59.8512850Z url.https://github.com/.insteadof 2025-09-07T06:09:59.8579080Z Entering 'third_party/fmt' 2025-09-07T06:09:59.8646680Z url.https://github.com/.insteadof 2025-09-07T06:09:59.8646920Z url.https://github.com/.insteadof 2025-09-07T06:09:59.8713160Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:09:59.8780090Z url.https://github.com/.insteadof 2025-09-07T06:09:59.8780310Z url.https://github.com/.insteadof 2025-09-07T06:09:59.8844630Z Entering 'third_party/gloo' 2025-09-07T06:09:59.8909920Z url.https://github.com/.insteadof 2025-09-07T06:09:59.8910150Z url.https://github.com/.insteadof 2025-09-07T06:09:59.8977170Z Entering 'third_party/googletest' 2025-09-07T06:09:59.9044310Z url.https://github.com/.insteadof 2025-09-07T06:09:59.9044530Z url.https://github.com/.insteadof 2025-09-07T06:09:59.9111100Z Entering 'third_party/ideep' 2025-09-07T06:09:59.9176530Z url.https://github.com/.insteadof 2025-09-07T06:09:59.9176750Z url.https://github.com/.insteadof 2025-09-07T06:09:59.9242010Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:09:59.9307140Z url.https://github.com/.insteadof 2025-09-07T06:09:59.9377150Z url.https://github.com/.insteadof 2025-09-07T06:09:59.9377560Z Entering 'third_party/ittapi' 2025-09-07T06:09:59.9445160Z url.https://github.com/.insteadof 2025-09-07T06:09:59.9445410Z url.https://github.com/.insteadof 2025-09-07T06:09:59.9510220Z Entering 'third_party/kineto' 2025-09-07T06:09:59.9575180Z url.https://github.com/.insteadof 2025-09-07T06:09:59.9575410Z url.https://github.com/.insteadof 2025-09-07T06:09:59.9641040Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:09:59.9705980Z url.https://github.com/.insteadof 2025-09-07T06:09:59.9706200Z url.https://github.com/.insteadof 2025-09-07T06:09:59.9770300Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:09:59.9835680Z url.https://github.com/.insteadof 2025-09-07T06:09:59.9835910Z url.https://github.com/.insteadof 2025-09-07T06:09:59.9902020Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:09:59.9966700Z url.https://github.com/.insteadof 2025-09-07T06:09:59.9966930Z url.https://github.com/.insteadof 2025-09-07T06:10:00.0032730Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:10:00.0096730Z url.https://github.com/.insteadof 2025-09-07T06:10:00.0096950Z url.https://github.com/.insteadof 2025-09-07T06:10:00.0162000Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:10:00.0227750Z url.https://github.com/.insteadof 2025-09-07T06:10:00.0227970Z url.https://github.com/.insteadof 2025-09-07T06:10:00.0293450Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:10:00.0360200Z url.https://github.com/.insteadof 2025-09-07T06:10:00.0360430Z url.https://github.com/.insteadof 2025-09-07T06:10:00.0435370Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:10:00.0502140Z url.https://github.com/.insteadof 2025-09-07T06:10:00.0502360Z url.https://github.com/.insteadof 2025-09-07T06:10:00.0568980Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:10:00.0635540Z url.https://github.com/.insteadof 2025-09-07T06:10:00.0635790Z url.https://github.com/.insteadof 2025-09-07T06:10:00.0703560Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:10:00.0769880Z url.https://github.com/.insteadof 2025-09-07T06:10:00.0770120Z url.https://github.com/.insteadof 2025-09-07T06:10:00.0835690Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:10:00.0900810Z url.https://github.com/.insteadof 2025-09-07T06:10:00.0901700Z url.https://github.com/.insteadof 2025-09-07T06:10:00.0971070Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:10:00.1037420Z url.https://github.com/.insteadof 2025-09-07T06:10:00.1037640Z url.https://github.com/.insteadof 2025-09-07T06:10:00.1110590Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:10:00.1175020Z url.https://github.com/.insteadof 2025-09-07T06:10:00.1175250Z url.https://github.com/.insteadof 2025-09-07T06:10:00.1242670Z Entering 'third_party/kleidiai' 2025-09-07T06:10:00.1310880Z url.https://github.com/.insteadof 2025-09-07T06:10:00.1311110Z url.https://github.com/.insteadof 2025-09-07T06:10:00.1377380Z Entering 'third_party/mimalloc' 2025-09-07T06:10:00.1445620Z url.https://github.com/.insteadof 2025-09-07T06:10:00.1445850Z url.https://github.com/.insteadof 2025-09-07T06:10:00.1512400Z Entering 'third_party/nlohmann' 2025-09-07T06:10:00.1579550Z url.https://github.com/.insteadof 2025-09-07T06:10:00.1579780Z url.https://github.com/.insteadof 2025-09-07T06:10:00.1646530Z Entering 'third_party/onnx' 2025-09-07T06:10:00.1712930Z url.https://github.com/.insteadof 2025-09-07T06:10:00.1784680Z url.https://github.com/.insteadof 2025-09-07T06:10:00.1784950Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:10:00.1853880Z url.https://github.com/.insteadof 2025-09-07T06:10:00.1854110Z url.https://github.com/.insteadof 2025-09-07T06:10:00.1922370Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:10:00.1991220Z url.https://github.com/.insteadof 2025-09-07T06:10:00.1991470Z url.https://github.com/.insteadof 2025-09-07T06:10:00.2057020Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:10:00.2123070Z url.https://github.com/.insteadof 2025-09-07T06:10:00.2123300Z url.https://github.com/.insteadof 2025-09-07T06:10:00.2187240Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:10:00.2251590Z url.https://github.com/.insteadof 2025-09-07T06:10:00.2316530Z url.https://github.com/.insteadof 2025-09-07T06:10:00.2316820Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:10:00.2381070Z url.https://github.com/.insteadof 2025-09-07T06:10:00.2381300Z url.https://github.com/.insteadof 2025-09-07T06:10:00.2446400Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:10:00.2511660Z url.https://github.com/.insteadof 2025-09-07T06:10:00.2511900Z url.https://github.com/.insteadof 2025-09-07T06:10:00.2578600Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:10:00.2645570Z url.https://github.com/.insteadof 2025-09-07T06:10:00.2645820Z url.https://github.com/.insteadof 2025-09-07T06:10:00.2711120Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:10:00.2777390Z url.https://github.com/.insteadof 2025-09-07T06:10:00.2777660Z url.https://github.com/.insteadof 2025-09-07T06:10:00.2841920Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:10:00.2905880Z url.https://github.com/.insteadof 2025-09-07T06:10:00.2906110Z url.https://github.com/.insteadof 2025-09-07T06:10:00.2969760Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:10:00.3033780Z url.https://github.com/.insteadof 2025-09-07T06:10:00.3034000Z url.https://github.com/.insteadof 2025-09-07T06:10:00.3099520Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:10:00.3163750Z url.https://github.com/.insteadof 2025-09-07T06:10:00.3163980Z url.https://github.com/.insteadof 2025-09-07T06:10:00.3231200Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:10:00.3294830Z url.https://github.com/.insteadof 2025-09-07T06:10:00.3295050Z url.https://github.com/.insteadof 2025-09-07T06:10:00.3368290Z Entering 'third_party/pocketfft' 2025-09-07T06:10:00.3436140Z url.https://github.com/.insteadof 2025-09-07T06:10:00.3436360Z url.https://github.com/.insteadof 2025-09-07T06:10:00.3507510Z Entering 'third_party/protobuf' 2025-09-07T06:10:00.3578130Z url.https://github.com/.insteadof 2025-09-07T06:10:00.3578360Z url.https://github.com/.insteadof 2025-09-07T06:10:00.3645380Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:10:00.3712750Z url.https://github.com/.insteadof 2025-09-07T06:10:00.3712990Z url.https://github.com/.insteadof 2025-09-07T06:10:00.3779950Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:10:00.3843980Z url.https://github.com/.insteadof 2025-09-07T06:10:00.3844200Z url.https://github.com/.insteadof 2025-09-07T06:10:00.3910520Z Entering 'third_party/psimd' 2025-09-07T06:10:00.3978600Z url.https://github.com/.insteadof 2025-09-07T06:10:00.3978890Z url.https://github.com/.insteadof 2025-09-07T06:10:00.4046140Z Entering 'third_party/pthreadpool' 2025-09-07T06:10:00.4112880Z url.https://github.com/.insteadof 2025-09-07T06:10:00.4113110Z url.https://github.com/.insteadof 2025-09-07T06:10:00.4177450Z Entering 'third_party/pybind11' 2025-09-07T06:10:00.4244970Z url.https://github.com/.insteadof 2025-09-07T06:10:00.4245970Z url.https://github.com/.insteadof 2025-09-07T06:10:00.4310660Z Entering 'third_party/python-peachpy' 2025-09-07T06:10:00.4377970Z url.https://github.com/.insteadof 2025-09-07T06:10:00.4378190Z url.https://github.com/.insteadof 2025-09-07T06:10:00.4444510Z Entering 'third_party/sleef' 2025-09-07T06:10:00.4509180Z url.https://github.com/.insteadof 2025-09-07T06:10:00.4509400Z url.https://github.com/.insteadof 2025-09-07T06:10:00.4575540Z Entering 'third_party/tensorpipe' 2025-09-07T06:10:00.4641160Z url.https://github.com/.insteadof 2025-09-07T06:10:00.4641380Z url.https://github.com/.insteadof 2025-09-07T06:10:00.4705690Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:10:00.4771940Z url.https://github.com/.insteadof 2025-09-07T06:10:00.4772170Z url.https://github.com/.insteadof 2025-09-07T06:10:00.4838340Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:10:00.4904530Z url.https://github.com/.insteadof 2025-09-07T06:10:00.4904760Z url.https://github.com/.insteadof 2025-09-07T06:10:00.4970310Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:10:00.5036350Z url.https://github.com/.insteadof 2025-09-07T06:10:00.5036570Z url.https://github.com/.insteadof 2025-09-07T06:10:00.5102560Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:10:00.5168090Z url.https://github.com/.insteadof 2025-09-07T06:10:00.5168330Z url.https://github.com/.insteadof 2025-09-07T06:10:00.5231950Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:10:00.5296560Z url.https://github.com/.insteadof 2025-09-07T06:10:00.5296790Z url.https://github.com/.insteadof 2025-09-07T06:10:00.5376690Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url" 2025-09-07T06:10:00.5867930Z Entering 'android/libs/fbjni' 2025-09-07T06:10:00.5967640Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-09-07T06:10:00.6002450Z Entering 'third_party/FP16' 2025-09-07T06:10:00.6101610Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-09-07T06:10:00.6135640Z Entering 'third_party/FXdiv' 2025-09-07T06:10:00.6232350Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-09-07T06:10:00.6267140Z Entering 'third_party/NNPACK' 2025-09-07T06:10:00.6364710Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-09-07T06:10:00.6399720Z Entering 'third_party/NVTX' 2025-09-07T06:10:00.6496270Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-09-07T06:10:00.6530630Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:10:00.6628120Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-09-07T06:10:00.6662770Z Entering 'third_party/XNNPACK' 2025-09-07T06:10:00.6760640Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-09-07T06:10:00.6800330Z Entering 'third_party/aiter' 2025-09-07T06:10:00.6898510Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-09-07T06:10:00.6932720Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:10:00.7032320Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-09-07T06:10:00.7070930Z Entering 'third_party/benchmark' 2025-09-07T06:10:00.7170620Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-09-07T06:10:00.7205550Z Entering 'third_party/composable_kernel' 2025-09-07T06:10:00.7303450Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-09-07T06:10:00.7339850Z Entering 'third_party/cpp-httplib' 2025-09-07T06:10:00.7439070Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-09-07T06:10:00.7472850Z Entering 'third_party/cpuinfo' 2025-09-07T06:10:00.7568600Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-09-07T06:10:00.7603780Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:10:00.7700320Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-09-07T06:10:00.7735360Z Entering 'third_party/cutlass' 2025-09-07T06:10:00.7831530Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-09-07T06:10:00.7868290Z Entering 'third_party/fbgemm' 2025-09-07T06:10:00.7967150Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-09-07T06:10:00.8000210Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:10:00.8098450Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-09-07T06:10:00.8132550Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:10:00.8229660Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-09-07T06:10:00.8266250Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:10:00.8366380Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-09-07T06:10:00.8401310Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:10:00.8499420Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-09-07T06:10:00.8537330Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:10:00.8636640Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-09-07T06:10:00.8670280Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:10:00.8768550Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-09-07T06:10:00.8802400Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:10:00.8896480Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-09-07T06:10:00.8932610Z Entering 'third_party/flash-attention' 2025-09-07T06:10:00.9029330Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-09-07T06:10:00.9061920Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:10:00.9157530Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-09-07T06:10:00.9194020Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:10:00.9291760Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-09-07T06:10:00.9329340Z Entering 'third_party/flatbuffers' 2025-09-07T06:10:00.9429020Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-09-07T06:10:00.9464630Z Entering 'third_party/fmt' 2025-09-07T06:10:00.9561260Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-09-07T06:10:00.9596210Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:10:00.9691950Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-09-07T06:10:00.9727080Z Entering 'third_party/gloo' 2025-09-07T06:10:00.9824530Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-09-07T06:10:00.9858320Z Entering 'third_party/googletest' 2025-09-07T06:10:00.9955920Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-09-07T06:10:00.9989730Z Entering 'third_party/ideep' 2025-09-07T06:10:01.0086640Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-09-07T06:10:01.0119810Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:10:01.0213900Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-09-07T06:10:01.0252420Z Entering 'third_party/ittapi' 2025-09-07T06:10:01.0352500Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-09-07T06:10:01.0387400Z Entering 'third_party/kineto' 2025-09-07T06:10:01.0484440Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-09-07T06:10:01.0517900Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:10:01.0617310Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-09-07T06:10:01.0650130Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:10:01.0748900Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/DCGM/config remote.origin.url 2025-09-07T06:10:01.0784250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:10:01.0883590Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/cpr/config remote.origin.url 2025-09-07T06:10:01.0918270Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:10:01.1015380Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/fmt/config remote.origin.url 2025-09-07T06:10:01.1050190Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:10:01.1149800Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/config remote.origin.url 2025-09-07T06:10:01.1182790Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:10:01.1288120Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/modules/doc/config remote.origin.url 2025-09-07T06:10:01.1323740Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:10:01.1422920Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/glog/config remote.origin.url 2025-09-07T06:10:01.1457750Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:10:01.1554690Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/googletest/config remote.origin.url 2025-09-07T06:10:01.1589770Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:10:01.1686650Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/json/config remote.origin.url 2025-09-07T06:10:01.1722050Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:10:01.1821370Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/pfs/config remote.origin.url 2025-09-07T06:10:01.1857940Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:10:01.1957130Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-09-07T06:10:01.1990510Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:10:01.2087570Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-09-07T06:10:01.2124270Z Entering 'third_party/kleidiai' 2025-09-07T06:10:01.2223400Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-09-07T06:10:01.2258250Z Entering 'third_party/mimalloc' 2025-09-07T06:10:01.2354490Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-09-07T06:10:01.2390530Z Entering 'third_party/nlohmann' 2025-09-07T06:10:01.2489940Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-09-07T06:10:01.2525220Z Entering 'third_party/onnx' 2025-09-07T06:10:01.2624740Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-09-07T06:10:01.2663520Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:10:01.2761420Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-09-07T06:10:01.2797410Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:10:01.2895110Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-09-07T06:10:01.2928980Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:10:01.3024530Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-09-07T06:10:01.3058660Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:10:01.3154260Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-09-07T06:10:01.3187960Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:10:01.3285930Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-09-07T06:10:01.3319230Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:10:01.3415430Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-09-07T06:10:01.3450740Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:10:01.3550600Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-09-07T06:10:01.3586000Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:10:01.3684620Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-09-07T06:10:01.3718850Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:10:01.3816050Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-09-07T06:10:01.3847550Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:10:01.3944450Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/civetweb/config remote.origin.url 2025-09-07T06:10:01.3978850Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:10:01.4076770Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/googletest/config remote.origin.url 2025-09-07T06:10:01.4113740Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:10:01.4212990Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-09-07T06:10:01.4259560Z Entering 'third_party/pocketfft' 2025-09-07T06:10:01.4357940Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-09-07T06:10:01.4392660Z Entering 'third_party/protobuf' 2025-09-07T06:10:01.4489920Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-09-07T06:10:01.4524690Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:10:01.4623570Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-09-07T06:10:01.4657990Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:10:01.4756380Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-09-07T06:10:01.4792680Z Entering 'third_party/psimd' 2025-09-07T06:10:01.4890790Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-09-07T06:10:01.4925300Z Entering 'third_party/pthreadpool' 2025-09-07T06:10:01.5022130Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-09-07T06:10:01.5057060Z Entering 'third_party/pybind11' 2025-09-07T06:10:01.5155080Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-09-07T06:10:01.5190650Z Entering 'third_party/python-peachpy' 2025-09-07T06:10:01.5288280Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-09-07T06:10:01.5321950Z Entering 'third_party/sleef' 2025-09-07T06:10:01.5416620Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-09-07T06:10:01.5451290Z Entering 'third_party/tensorpipe' 2025-09-07T06:10:01.5546940Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-09-07T06:10:01.5579800Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:10:01.5675720Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-09-07T06:10:01.5710290Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:10:01.5807490Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-09-07T06:10:01.5842230Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:10:01.5940180Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-09-07T06:10:01.5974700Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:10:01.6073140Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-09-07T06:10:01.6106560Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:10:01.6204600Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-09-07T06:10:01.6403500Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-09-07T06:10:01.6901070Z Entering 'android/libs/fbjni' 2025-09-07T06:10:01.6986390Z Entering 'third_party/FP16' 2025-09-07T06:10:01.7066730Z Entering 'third_party/FXdiv' 2025-09-07T06:10:01.7148840Z Entering 'third_party/NNPACK' 2025-09-07T06:10:01.7230940Z Entering 'third_party/NVTX' 2025-09-07T06:10:01.7312790Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:10:01.7393090Z Entering 'third_party/XNNPACK' 2025-09-07T06:10:01.7478380Z Entering 'third_party/aiter' 2025-09-07T06:10:01.7560170Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:10:01.7645960Z Entering 'third_party/benchmark' 2025-09-07T06:10:01.7729110Z Entering 'third_party/composable_kernel' 2025-09-07T06:10:01.7814780Z Entering 'third_party/cpp-httplib' 2025-09-07T06:10:01.7898440Z Entering 'third_party/cpuinfo' 2025-09-07T06:10:01.7980220Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:10:01.8060870Z Entering 'third_party/cutlass' 2025-09-07T06:10:01.8146320Z Entering 'third_party/fbgemm' 2025-09-07T06:10:01.8229290Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:10:01.8310480Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:10:01.8394110Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:10:01.8475530Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:10:01.8558540Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:10:01.8642080Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:10:01.8721580Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:10:01.8808980Z Entering 'third_party/flash-attention' 2025-09-07T06:10:01.8890600Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:10:01.8973540Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:10:01.9059860Z Entering 'third_party/flatbuffers' 2025-09-07T06:10:01.9144030Z Entering 'third_party/fmt' 2025-09-07T06:10:01.9226460Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:10:01.9309120Z Entering 'third_party/gloo' 2025-09-07T06:10:01.9390560Z Entering 'third_party/googletest' 2025-09-07T06:10:01.9473210Z Entering 'third_party/ideep' 2025-09-07T06:10:01.9553520Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:10:01.9639770Z Entering 'third_party/ittapi' 2025-09-07T06:10:01.9723760Z Entering 'third_party/kineto' 2025-09-07T06:10:01.9804650Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:10:01.9885370Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:10:01.9968250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:10:02.0048150Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:10:02.0128730Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:10:02.0208690Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:10:02.0292250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:10:02.0374420Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:10:02.0456680Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:10:02.0539290Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:10:02.0623840Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:10:02.0706250Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:10:02.0789410Z Entering 'third_party/kleidiai' 2025-09-07T06:10:02.0870110Z Entering 'third_party/mimalloc' 2025-09-07T06:10:02.0952900Z Entering 'third_party/nlohmann' 2025-09-07T06:10:02.1033800Z Entering 'third_party/onnx' 2025-09-07T06:10:02.1121040Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:10:02.1204770Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:10:02.1286240Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:10:02.1365830Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:10:02.1447140Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:10:02.1528160Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:10:02.1609880Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:10:02.1689650Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:10:02.1769700Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:10:02.1847930Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:10:02.1930940Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:10:02.2013900Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:10:02.2103420Z Entering 'third_party/pocketfft' 2025-09-07T06:10:02.2186720Z Entering 'third_party/protobuf' 2025-09-07T06:10:02.2265870Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:10:02.2346340Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:10:02.2430970Z Entering 'third_party/psimd' 2025-09-07T06:10:02.2512630Z Entering 'third_party/pthreadpool' 2025-09-07T06:10:02.2594180Z Entering 'third_party/pybind11' 2025-09-07T06:10:02.2675170Z Entering 'third_party/python-peachpy' 2025-09-07T06:10:02.2758000Z Entering 'third_party/sleef' 2025-09-07T06:10:02.2838600Z Entering 'third_party/tensorpipe' 2025-09-07T06:10:02.2918120Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:10:02.2998060Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:10:02.3078430Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:10:02.3158730Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:10:02.3237720Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:10:02.3331750Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-09-07T06:10:02.3832550Z Entering 'android/libs/fbjni' 2025-09-07T06:10:02.3918960Z Entering 'third_party/FP16' 2025-09-07T06:10:02.4001500Z Entering 'third_party/FXdiv' 2025-09-07T06:10:02.4084050Z Entering 'third_party/NNPACK' 2025-09-07T06:10:02.4164460Z Entering 'third_party/NVTX' 2025-09-07T06:10:02.4247270Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:10:02.4328890Z Entering 'third_party/XNNPACK' 2025-09-07T06:10:02.4414300Z Entering 'third_party/aiter' 2025-09-07T06:10:02.4496330Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:10:02.4582870Z Entering 'third_party/benchmark' 2025-09-07T06:10:02.4664930Z Entering 'third_party/composable_kernel' 2025-09-07T06:10:02.4750170Z Entering 'third_party/cpp-httplib' 2025-09-07T06:10:02.4834200Z Entering 'third_party/cpuinfo' 2025-09-07T06:10:02.4916770Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:10:02.4998950Z Entering 'third_party/cutlass' 2025-09-07T06:10:02.5083750Z Entering 'third_party/fbgemm' 2025-09-07T06:10:02.5165480Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:10:02.5247650Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:10:02.5332150Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:10:02.5414620Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:10:02.5497710Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:10:02.5579310Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:10:02.5659130Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:10:02.5742230Z Entering 'third_party/flash-attention' 2025-09-07T06:10:02.5822110Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:10:02.5904040Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:10:02.5988580Z Entering 'third_party/flatbuffers' 2025-09-07T06:10:02.6072630Z Entering 'third_party/fmt' 2025-09-07T06:10:02.6155890Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:10:02.6239350Z Entering 'third_party/gloo' 2025-09-07T06:10:02.6320650Z Entering 'third_party/googletest' 2025-09-07T06:10:02.6402980Z Entering 'third_party/ideep' 2025-09-07T06:10:02.6483050Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:10:02.6566970Z Entering 'third_party/ittapi' 2025-09-07T06:10:02.6649910Z Entering 'third_party/kineto' 2025-09-07T06:10:02.6728900Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:10:02.6807410Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:10:02.6888290Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:10:02.6969960Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:10:02.7050910Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:10:02.7129950Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:10:02.7213830Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:10:02.7297920Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:10:02.7378550Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:10:02.7460760Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:10:02.7545120Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:10:02.7626760Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:10:02.7708190Z Entering 'third_party/kleidiai' 2025-09-07T06:10:02.7791380Z Entering 'third_party/mimalloc' 2025-09-07T06:10:02.7872140Z Entering 'third_party/nlohmann' 2025-09-07T06:10:02.7955260Z Entering 'third_party/onnx' 2025-09-07T06:10:02.8042640Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:10:02.8128070Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:10:02.8208780Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:10:02.8290640Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:10:02.8371070Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:10:02.8453040Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:10:02.8532810Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:10:02.8615300Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:10:02.8695420Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:10:02.8775470Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:10:02.8855890Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:10:02.8944180Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:10:02.9036210Z Entering 'third_party/pocketfft' 2025-09-07T06:10:02.9121270Z Entering 'third_party/protobuf' 2025-09-07T06:10:02.9200680Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:10:02.9282860Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:10:02.9363870Z Entering 'third_party/psimd' 2025-09-07T06:10:02.9446270Z Entering 'third_party/pthreadpool' 2025-09-07T06:10:02.9525790Z Entering 'third_party/pybind11' 2025-09-07T06:10:02.9607990Z Entering 'third_party/python-peachpy' 2025-09-07T06:10:02.9687600Z Entering 'third_party/sleef' 2025-09-07T06:10:02.9769550Z Entering 'third_party/tensorpipe' 2025-09-07T06:10:02.9848640Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:10:02.9928160Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:10:03.0007870Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:10:03.0088300Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:10:03.0166920Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:10:03.0259950Z ##[endgroup] 2025-09-07T06:10:03.0365670Z [command]/usr/bin/git log -1 --format=%H 2025-09-07T06:10:03.0431440Z 93fb23d6fae7c4e82c4239a1033e522088742634 2025-09-07T06:10:03.0489420Z ##[group]Run cd "${GITHUB_WORKSPACE}" 2025-09-07T06:10:03.0489630Z cd "${GITHUB_WORKSPACE}" 2025-09-07T06:10:03.0489900Z # Clean stale submodule dirs 2025-09-07T06:10:03.0490090Z if [ -z "${NO_SUDO}" ]; then 2025-09-07T06:10:03.0490310Z  sudo git submodule foreach --recursive git clean -ffdx 2025-09-07T06:10:03.0490520Z else 2025-09-07T06:10:03.0490690Z  git submodule foreach --recursive git clean -ffdx 2025-09-07T06:10:03.0490880Z fi 2025-09-07T06:10:03.1170340Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-09-07T06:10:03.1170560Z env: 2025-09-07T06:10:03.1170690Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:10:03.1170870Z SCCACHE_USE_GHA: false 2025-09-07T06:10:03.1171010Z NO_SUDO: 2025-09-07T06:10:03.1171120Z ##[endgroup] 2025-09-07T06:10:03.2130110Z Entering 'android/libs/fbjni' 2025-09-07T06:10:03.2194320Z Entering 'third_party/FP16' 2025-09-07T06:10:03.2254690Z Entering 'third_party/FXdiv' 2025-09-07T06:10:03.2313260Z Entering 'third_party/NNPACK' 2025-09-07T06:10:03.2379150Z Entering 'third_party/NVTX' 2025-09-07T06:10:03.2449590Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:10:03.2510370Z Entering 'third_party/XNNPACK' 2025-09-07T06:10:03.2715960Z Entering 'third_party/aiter' 2025-09-07T06:10:03.2799470Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:10:03.2987160Z Entering 'third_party/benchmark' 2025-09-07T06:10:03.3050670Z Entering 'third_party/composable_kernel' 2025-09-07T06:10:03.3252090Z Entering 'third_party/cpp-httplib' 2025-09-07T06:10:03.3316990Z Entering 'third_party/cpuinfo' 2025-09-07T06:10:03.3385520Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:10:03.3452660Z Entering 'third_party/cutlass' 2025-09-07T06:10:03.3614910Z Entering 'third_party/fbgemm' 2025-09-07T06:10:03.3724320Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:10:03.3785960Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:10:03.3972790Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:10:03.4041560Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:10:03.4206510Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:10:03.4272060Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:10:03.4331580Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:10:03.4414740Z Entering 'third_party/flash-attention' 2025-09-07T06:10:03.4489780Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:10:03.4673470Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:10:03.4825720Z Entering 'third_party/flatbuffers' 2025-09-07T06:10:03.4960100Z Entering 'third_party/fmt' 2025-09-07T06:10:03.5022480Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:10:03.5084750Z Entering 'third_party/gloo' 2025-09-07T06:10:03.5149230Z Entering 'third_party/googletest' 2025-09-07T06:10:03.5221100Z Entering 'third_party/ideep' 2025-09-07T06:10:03.5273320Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:10:03.5420340Z Entering 'third_party/ittapi' 2025-09-07T06:10:03.5487430Z Entering 'third_party/kineto' 2025-09-07T06:10:03.5553240Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:10:03.5620400Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:10:03.5708290Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:10:03.5769440Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:10:03.5834120Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:10:03.5892550Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:10:03.5953010Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:10:03.6013880Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:10:03.6079040Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:10:03.6156980Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:10:03.6220270Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:10:03.6284620Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:10:03.6351500Z Entering 'third_party/kleidiai' 2025-09-07T06:10:03.6422220Z Entering 'third_party/mimalloc' 2025-09-07T06:10:03.6486110Z Entering 'third_party/nlohmann' 2025-09-07T06:10:03.6570940Z Entering 'third_party/onnx' 2025-09-07T06:10:03.7648470Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:10:03.7717130Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:10:03.7818880Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:10:03.7880210Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:10:03.7944460Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:10:03.8002220Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:10:03.8082590Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:10:03.8144210Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:10:03.8205610Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:10:03.8267220Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:10:03.8358880Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:10:03.8427110Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:10:03.8966670Z Entering 'third_party/pocketfft' 2025-09-07T06:10:03.9027220Z Entering 'third_party/protobuf' 2025-09-07T06:10:03.9167290Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:10:03.9227730Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:10:03.9297840Z Entering 'third_party/psimd' 2025-09-07T06:10:03.9357480Z Entering 'third_party/pthreadpool' 2025-09-07T06:10:03.9416650Z Entering 'third_party/pybind11' 2025-09-07T06:10:03.9482680Z Entering 'third_party/python-peachpy' 2025-09-07T06:10:03.9545310Z Entering 'third_party/sleef' 2025-09-07T06:10:03.9610260Z Entering 'third_party/tensorpipe' 2025-09-07T06:10:03.9677630Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:10:03.9742830Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:10:03.9803630Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:10:03.9873830Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:10:03.9935420Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:10:04.0045410Z ##[group]Run if [ -n "${XCODE_VERSION}" ]; then 2025-09-07T06:10:04.0045670Z if [ -n "${XCODE_VERSION}" ]; then 2025-09-07T06:10:04.0046020Z  echo "DEVELOPER_DIR=/Applications/Xcode_${XCODE_VERSION}.app/Contents/Developer" >> "${GITHUB_ENV}" 2025-09-07T06:10:04.0046340Z fi 2025-09-07T06:10:04.0062340Z shell: /bin/bash -e {0} 2025-09-07T06:10:04.0062500Z env: 2025-09-07T06:10:04.0062650Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:10:04.0062840Z SCCACHE_USE_GHA: false 2025-09-07T06:10:04.0063000Z XCODE_VERSION: 2025-09-07T06:10:04.0063130Z ##[endgroup] 2025-09-07T06:10:04.0344510Z ##[group]Run pytorch/test-infra/.github/actions/setup-python@main 2025-09-07T06:10:04.0344780Z with: 2025-09-07T06:10:04.0344920Z python-version: 3.12.7 2025-09-07T06:10:04.0345170Z pip-requirements-file: .github/requirements/pip-requirements-macOS.txt 2025-09-07T06:10:04.0345450Z env: 2025-09-07T06:10:04.0345580Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:10:04.0345760Z SCCACHE_USE_GHA: false 2025-09-07T06:10:04.0345920Z ##[endgroup] 2025-09-07T06:10:04.0805870Z Warning: HomeBrew only supports version specified by major and minor, but got 3.12.7 2025-09-07T06:10:05.0363840Z ==> Updating Homebrew... 2025-09-07T06:10:05.9926500Z Already up-to-date. 2025-09-07T06:10:07.7220010Z ##[warning]python@3.12 3.12.11 is already installed and up-to-date. To reinstall 3.12.11, run: brew reinstall python@3.12 2025-09-07T06:10:07.7517920Z Using python at /opt/homebrew/bin/python3.12 to create venv /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:10:09.9158440Z Installing requirements from .github/requirements/pip-requirements-macOS.txt 2025-09-07T06:10:10.2474630Z Collecting boto3==1.35.42 (from -r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-09-07T06:10:10.2497630Z Using cached boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-09-07T06:10:10.3091430Z Collecting cmake==3.27.* (from -r .github/requirements/pip-requirements-macOS.txt (line 2)) 2025-09-07T06:10:10.3121210Z Using cached cmake-3.27.9-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl.metadata (6.3 kB) 2025-09-07T06:10:10.3264580Z Collecting expecttest==0.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 3)) 2025-09-07T06:10:10.3317820Z Using cached expecttest-0.3.0-py3-none-any.whl.metadata (3.8 kB) 2025-09-07T06:10:10.3465780Z Collecting fbscribelogger==0.1.7 (from -r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-09-07T06:10:10.3478690Z Using cached fbscribelogger-0.1.7-py3-none-any.whl.metadata (684 bytes) 2025-09-07T06:10:10.3617350Z Collecting filelock==3.18.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 5)) 2025-09-07T06:10:10.3631400Z Using cached filelock-3.18.0-py3-none-any.whl.metadata (2.9 kB) 2025-09-07T06:10:10.4675990Z Collecting hypothesis==6.56.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 6)) 2025-09-07T06:10:10.4709020Z Using cached hypothesis-6.56.4-py3-none-any.whl.metadata (6.1 kB) 2025-09-07T06:10:10.4847620Z Collecting librosa>=0.6.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-09-07T06:10:10.4860290Z Using cached librosa-0.11.0-py3-none-any.whl.metadata (8.7 kB) 2025-09-07T06:10:10.4995980Z Collecting mpmath==1.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 8)) 2025-09-07T06:10:10.5017230Z Using cached mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) 2025-09-07T06:10:10.5225680Z Collecting networkx==2.8.7 (from -r .github/requirements/pip-requirements-macOS.txt (line 9)) 2025-09-07T06:10:10.5241930Z Using cached networkx-2.8.7-py3-none-any.whl.metadata (5.1 kB) 2025-09-07T06:10:10.5443180Z Collecting ninja==1.10.2.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 10)) 2025-09-07T06:10:10.5474340Z Using cached ninja-1.10.2.4-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl.metadata (5.3 kB) 2025-09-07T06:10:10.6064400Z Collecting numba==0.59.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 11)) 2025-09-07T06:10:10.6094480Z Using cached numba-0.59.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.7 kB) 2025-09-07T06:10:10.6857010Z Collecting numpy==1.26.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 12)) 2025-09-07T06:10:10.6873150Z Using cached numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl.metadata (61 kB) 2025-09-07T06:10:10.7059810Z Collecting opt-einsum>=3.3 (from -r .github/requirements/pip-requirements-macOS.txt (line 13)) 2025-09-07T06:10:10.7073650Z Using cached opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) 2025-09-07T06:10:10.7503370Z Collecting optree==0.13.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 14)) 2025-09-07T06:10:10.7519800Z Using cached optree-0.13.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (47 kB) 2025-09-07T06:10:10.7686440Z Collecting packaging==23.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 15)) 2025-09-07T06:10:10.7709240Z Using cached packaging-23.1-py3-none-any.whl.metadata (3.1 kB) 2025-09-07T06:10:10.7812170Z Collecting parameterized==0.8.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 16)) 2025-09-07T06:10:10.7832040Z Using cached parameterized-0.8.1-py2.py3-none-any.whl.metadata (18 kB) 2025-09-07T06:10:10.8653840Z Collecting pillow==10.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 17)) 2025-09-07T06:10:10.8670410Z Using cached pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (9.2 kB) 2025-09-07T06:10:10.9504450Z Collecting protobuf==5.29.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 18)) 2025-09-07T06:10:10.9519810Z Using cached protobuf-5.29.4-cp38-abi3-macosx_10_9_universal2.whl.metadata (592 bytes) 2025-09-07T06:10:11.0127200Z Collecting psutil==5.9.8 (from -r .github/requirements/pip-requirements-macOS.txt (line 19)) 2025-09-07T06:10:11.0150050Z Using cached psutil-5.9.8-cp38-abi3-macosx_11_0_arm64.whl.metadata (21 kB) 2025-09-07T06:10:11.0306340Z Collecting pygments==2.15.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 20)) 2025-09-07T06:10:11.0330330Z Using cached Pygments-2.15.0-py3-none-any.whl.metadata (2.5 kB) 2025-09-07T06:10:11.0561720Z Collecting pytest-cpp==2.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 21)) 2025-09-07T06:10:11.0576280Z Using cached pytest_cpp-2.3.0-py3-none-any.whl.metadata (5.4 kB) 2025-09-07T06:10:11.0707390Z Collecting pytest-flakefinder==1.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 22)) 2025-09-07T06:10:11.0764540Z Using cached pytest_flakefinder-1.1.0-py2.py3-none-any.whl.metadata (3.3 kB) 2025-09-07T06:10:11.0975050Z Collecting pytest-rerunfailures==10.3 (from -r .github/requirements/pip-requirements-macOS.txt (line 23)) 2025-09-07T06:10:11.0998340Z Using cached pytest_rerunfailures-10.3-py3-none-any.whl.metadata (15 kB) 2025-09-07T06:10:11.1111910Z Collecting pytest-subtests==0.13.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 24)) 2025-09-07T06:10:11.1126130Z Using cached pytest_subtests-0.13.1-py3-none-any.whl.metadata (6.1 kB) 2025-09-07T06:10:11.1250590Z Collecting pytest-xdist==3.3.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 25)) 2025-09-07T06:10:11.1277200Z Using cached pytest_xdist-3.3.1-py3-none-any.whl.metadata (3.1 kB) 2025-09-07T06:10:11.1480830Z Collecting pytest==7.3.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 26)) 2025-09-07T06:10:11.1494930Z Using cached pytest-7.3.2-py3-none-any.whl.metadata (8.0 kB) 2025-09-07T06:10:11.1702350Z Collecting pyyaml==6.0.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 27)) 2025-09-07T06:10:11.1724010Z Using cached PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.1 kB) 2025-09-07T06:10:11.2296260Z Collecting scipy==1.12.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 28)) 2025-09-07T06:10:11.2311510Z Using cached scipy-1.12.0-cp312-cp312-macosx_12_0_arm64.whl.metadata (217 kB) 2025-09-07T06:10:11.3161360Z Collecting setuptools==72.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 29)) 2025-09-07T06:10:11.3175510Z Using cached setuptools-72.1.0-py3-none-any.whl.metadata (6.6 kB) 2025-09-07T06:10:11.3354540Z Collecting sympy==1.13.3 (from -r .github/requirements/pip-requirements-macOS.txt (line 30)) 2025-09-07T06:10:11.3381020Z Using cached sympy-1.13.3-py3-none-any.whl.metadata (12 kB) 2025-09-07T06:10:11.3614070Z Collecting tlparse==0.4.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 31)) 2025-09-07T06:10:11.3627650Z Using cached tlparse-0.4.0-py3-none-macosx_11_0_arm64.whl.metadata (1.9 kB) 2025-09-07T06:10:11.3759640Z Collecting tensorboard==2.13.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:11.3778930Z Using cached tensorboard-2.13.0-py3-none-any.whl.metadata (1.8 kB) 2025-09-07T06:10:11.3905440Z Collecting typing-extensions==4.12.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 33)) 2025-09-07T06:10:11.3919880Z Using cached typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) 2025-09-07T06:10:11.4036100Z Collecting unittest-xml-reporting<=3.2.0,>=2.0.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 34)) 2025-09-07T06:10:11.4050660Z Using cached unittest_xml_reporting-3.2.0-py2.py3-none-any.whl.metadata (11 kB) 2025-09-07T06:10:11.4211990Z Collecting xdoctest==1.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 35)) 2025-09-07T06:10:11.4226870Z Using cached xdoctest-1.1.0-py3-none-any.whl.metadata (37 kB) 2025-09-07T06:10:11.4697480Z Collecting z3-solver==4.15.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 36)) 2025-09-07T06:10:11.4725990Z Using cached z3_solver-4.15.1.0-py3-none-macosx_13_0_arm64.whl.metadata (778 bytes) 2025-09-07T06:10:11.6520280Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-09-07T06:10:11.6541890Z Using cached botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-09-07T06:10:11.6644180Z Collecting jmespath<2.0.0,>=0.7.1 (from boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-09-07T06:10:11.6669630Z Using cached jmespath-1.0.1-py3-none-any.whl.metadata (7.6 kB) 2025-09-07T06:10:11.6793230Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-09-07T06:10:11.6805560Z Using cached s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-09-07T06:10:11.9474220Z Collecting aiohttp<4.0.0,>=3.10.4 (from fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-09-07T06:10:11.9497960Z Using cached aiohttp-3.12.15-cp312-cp312-macosx_11_0_arm64.whl.metadata (7.7 kB) 2025-09-07T06:10:11.9673050Z Collecting thriftpy2<0.6.0,>=0.5.2 (from fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-09-07T06:10:11.9692070Z Using cached thriftpy2-0.5.3-cp312-cp312-macosx_11_0_arm64.whl.metadata (8.2 kB) 2025-09-07T06:10:11.9860580Z Collecting attrs>=19.2.0 (from hypothesis==6.56.4->-r .github/requirements/pip-requirements-macOS.txt (line 6)) 2025-09-07T06:10:11.9900540Z Using cached attrs-25.3.0-py3-none-any.whl.metadata (10 kB) 2025-09-07T06:10:12.0052480Z Collecting sortedcontainers<3.0.0,>=2.1.0 (from hypothesis==6.56.4->-r .github/requirements/pip-requirements-macOS.txt (line 6)) 2025-09-07T06:10:12.0081100Z Using cached sortedcontainers-2.4.0-py2.py3-none-any.whl.metadata (10 kB) 2025-09-07T06:10:12.0439910Z Collecting llvmlite<0.43,>=0.42.0dev0 (from numba==0.59.0->-r .github/requirements/pip-requirements-macOS.txt (line 11)) 2025-09-07T06:10:12.0457850Z Using cached llvmlite-0.42.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (4.8 kB) 2025-09-07T06:10:12.0688330Z Collecting colorama (from pytest-cpp==2.3.0->-r .github/requirements/pip-requirements-macOS.txt (line 21)) 2025-09-07T06:10:12.0703040Z Using cached colorama-0.4.6-py2.py3-none-any.whl.metadata (17 kB) 2025-09-07T06:10:12.0941450Z Collecting execnet>=1.1 (from pytest-xdist==3.3.1->-r .github/requirements/pip-requirements-macOS.txt (line 25)) 2025-09-07T06:10:12.0948820Z Using cached execnet-2.1.1-py3-none-any.whl.metadata (2.9 kB) 2025-09-07T06:10:12.1068070Z Collecting iniconfig (from pytest==7.3.2->-r .github/requirements/pip-requirements-macOS.txt (line 26)) 2025-09-07T06:10:12.1082760Z Using cached iniconfig-2.1.0-py3-none-any.whl.metadata (2.7 kB) 2025-09-07T06:10:12.1178220Z Collecting pluggy<2.0,>=0.12 (from pytest==7.3.2->-r .github/requirements/pip-requirements-macOS.txt (line 26)) 2025-09-07T06:10:12.1203000Z Using cached pluggy-1.6.0-py3-none-any.whl.metadata (4.8 kB) 2025-09-07T06:10:12.1403610Z Collecting absl-py>=0.4 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:12.1424450Z Using cached absl_py-2.3.1-py3-none-any.whl.metadata (3.3 kB) 2025-09-07T06:10:12.3619590Z Collecting grpcio>=1.48.2 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:12.3634600Z Using cached grpcio-1.74.0-cp312-cp312-macosx_11_0_universal2.whl.metadata (3.8 kB) 2025-09-07T06:10:12.4340750Z Collecting google-auth<3,>=1.6.3 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:12.4354810Z Using cached google_auth-2.40.3-py2.py3-none-any.whl.metadata (6.2 kB) 2025-09-07T06:10:12.4514770Z Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:12.4534570Z Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB) 2025-09-07T06:10:12.4682010Z Collecting markdown>=2.6.8 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:12.4695310Z Using cached markdown-3.9-py3-none-any.whl.metadata (5.1 kB) 2025-09-07T06:10:12.4988960Z Collecting requests<3,>=2.21.0 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:12.5001680Z Using cached requests-2.32.5-py3-none-any.whl.metadata (4.9 kB) 2025-09-07T06:10:12.5359780Z Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:12.5372640Z Using cached tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB) 2025-09-07T06:10:12.5530880Z Collecting werkzeug>=1.0.1 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:12.5545730Z Using cached werkzeug-3.1.3-py3-none-any.whl.metadata (3.7 kB) 2025-09-07T06:10:12.5714960Z Collecting wheel>=0.26 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:12.5729080Z Using cached wheel-0.45.1-py3-none-any.whl.metadata (2.3 kB) 2025-09-07T06:10:12.5857770Z Collecting six (from xdoctest==1.1.0->-r .github/requirements/pip-requirements-macOS.txt (line 35)) 2025-09-07T06:10:12.5870690Z Using cached six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) 2025-09-07T06:10:12.6748700Z Collecting lxml (from unittest-xml-reporting<=3.2.0,>=2.0.0->-r .github/requirements/pip-requirements-macOS.txt (line 34)) 2025-09-07T06:10:12.6770000Z Using cached lxml-6.0.1-cp312-cp312-macosx_10_13_universal2.whl.metadata (3.8 kB) 2025-09-07T06:10:12.6899430Z Collecting aiohappyeyeballs>=2.5.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-09-07T06:10:12.6907090Z Using cached aiohappyeyeballs-2.6.1-py3-none-any.whl.metadata (5.9 kB) 2025-09-07T06:10:12.7005190Z Collecting aiosignal>=1.4.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-09-07T06:10:12.7030130Z Using cached aiosignal-1.4.0-py3-none-any.whl.metadata (3.7 kB) 2025-09-07T06:10:12.7382490Z Collecting frozenlist>=1.1.1 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-09-07T06:10:12.7399190Z Using cached frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (18 kB) 2025-09-07T06:10:12.8538020Z Collecting multidict<7.0,>=4.5 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-09-07T06:10:12.8560290Z Using cached multidict-6.6.4-cp312-cp312-macosx_11_0_arm64.whl.metadata (5.3 kB) 2025-09-07T06:10:12.8868760Z Collecting propcache>=0.2.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-09-07T06:10:12.8882900Z Using cached propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (12 kB) 2025-09-07T06:10:13.0552670Z Collecting yarl<2.0,>=1.17.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-09-07T06:10:13.0575480Z Using cached yarl-1.20.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (73 kB) 2025-09-07T06:10:13.0752320Z Collecting python-dateutil<3.0.0,>=2.1 (from botocore<1.36.0,>=1.35.42->boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-09-07T06:10:13.0766000Z Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) 2025-09-07T06:10:13.0952220Z Collecting urllib3!=2.2.0,<3,>=1.25.4 (from botocore<1.36.0,>=1.35.42->boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-09-07T06:10:13.0966660Z Using cached urllib3-2.5.0-py3-none-any.whl.metadata (6.5 kB) 2025-09-07T06:10:13.1123220Z Collecting cachetools<6.0,>=2.0.0 (from google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:13.1151080Z Using cached cachetools-5.5.2-py3-none-any.whl.metadata (5.4 kB) 2025-09-07T06:10:13.1290720Z Collecting pyasn1-modules>=0.2.1 (from google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:13.1305790Z Using cached pyasn1_modules-0.4.2-py3-none-any.whl.metadata (3.5 kB) 2025-09-07T06:10:13.1406040Z Collecting rsa<5,>=3.1.4 (from google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:13.1420920Z Using cached rsa-4.9.1-py3-none-any.whl.metadata (5.6 kB) 2025-09-07T06:10:13.1633800Z Collecting requests-oauthlib>=0.7.0 (from google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:13.1649030Z Using cached requests_oauthlib-2.0.0-py2.py3-none-any.whl.metadata (11 kB) 2025-09-07T06:10:13.2140920Z Collecting charset_normalizer<4,>=2 (from requests<3,>=2.21.0->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:13.2163770Z Using cached charset_normalizer-3.4.3-cp312-cp312-macosx_10_13_universal2.whl.metadata (36 kB) 2025-09-07T06:10:13.2294200Z Collecting idna<4,>=2.5 (from requests<3,>=2.21.0->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:13.2308800Z Using cached idna-3.10-py3-none-any.whl.metadata (10 kB) 2025-09-07T06:10:13.2509370Z Collecting certifi>=2017.4.17 (from requests<3,>=2.21.0->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:13.2522310Z Using cached certifi-2025.8.3-py3-none-any.whl.metadata (2.4 kB) 2025-09-07T06:10:13.2667890Z Collecting pyasn1>=0.1.3 (from rsa<5,>=3.1.4->google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:13.2699720Z Using cached pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) 2025-09-07T06:10:13.3402140Z Collecting ply<4.0,>=3.4 (from thriftpy2<0.6.0,>=0.5.2->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-09-07T06:10:13.3427060Z Using cached ply-3.11-py2.py3-none-any.whl.metadata (844 bytes) 2025-09-07T06:10:13.3652300Z Collecting audioread>=2.1.9 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-09-07T06:10:13.3665040Z Using cached audioread-3.0.1-py3-none-any.whl.metadata (8.4 kB) 2025-09-07T06:10:13.4139330Z Collecting scikit-learn>=1.1.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-09-07T06:10:13.4153660Z Using cached scikit_learn-1.7.1-cp312-cp312-macosx_12_0_arm64.whl.metadata (11 kB) 2025-09-07T06:10:13.4323840Z Collecting joblib>=1.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-09-07T06:10:13.4331520Z Using cached joblib-1.5.2-py3-none-any.whl.metadata (5.6 kB) 2025-09-07T06:10:13.4441800Z Collecting decorator>=4.3.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-09-07T06:10:13.4462340Z Using cached decorator-5.2.1-py3-none-any.whl.metadata (3.9 kB) 2025-09-07T06:10:13.4570780Z Collecting soundfile>=0.12.1 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-09-07T06:10:13.4583650Z Using cached soundfile-0.13.1-py2.py3-none-macosx_11_0_arm64.whl.metadata (16 kB) 2025-09-07T06:10:13.4710730Z Collecting pooch>=1.1 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-09-07T06:10:13.4723360Z Using cached pooch-1.8.2-py3-none-any.whl.metadata (10 kB) 2025-09-07T06:10:13.5074070Z Collecting soxr>=0.3.2 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-09-07T06:10:13.5089410Z Using cached soxr-0.5.0.post1-cp312-abi3-macosx_11_0_arm64.whl.metadata (5.6 kB) 2025-09-07T06:10:13.5215420Z Collecting lazy_loader>=0.1 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-09-07T06:10:13.5229030Z Using cached lazy_loader-0.4-py3-none-any.whl.metadata (7.6 kB) 2025-09-07T06:10:13.5600290Z Collecting msgpack>=1.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-09-07T06:10:13.5616330Z Using cached msgpack-1.1.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (8.4 kB) 2025-09-07T06:10:13.5942130Z Collecting platformdirs>=2.5.0 (from pooch>=1.1->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-09-07T06:10:13.5955560Z Using cached platformdirs-4.4.0-py3-none-any.whl.metadata (12 kB) 2025-09-07T06:10:13.6201780Z Collecting oauthlib>=3.0.0 (from requests-oauthlib>=0.7.0->google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:13.6237240Z Using cached oauthlib-3.3.1-py3-none-any.whl.metadata (7.9 kB) 2025-09-07T06:10:13.6440460Z Collecting threadpoolctl>=3.1.0 (from scikit-learn>=1.1.0->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-09-07T06:10:13.6447800Z Using cached threadpoolctl-3.6.0-py3-none-any.whl.metadata (13 kB) 2025-09-07T06:10:13.6984170Z Collecting cffi>=1.0 (from soundfile>=0.12.1->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-09-07T06:10:13.6999690Z Using cached cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (1.5 kB) 2025-09-07T06:10:13.7107010Z Collecting pycparser (from cffi>=1.0->soundfile>=0.12.1->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-09-07T06:10:13.7121890Z Using cached pycparser-2.22-py3-none-any.whl.metadata (943 bytes) 2025-09-07T06:10:13.7406170Z Collecting MarkupSafe>=2.1.1 (from werkzeug>=1.0.1->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-09-07T06:10:13.7436960Z Using cached MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (4.0 kB) 2025-09-07T06:10:13.7560830Z Using cached boto3-1.35.42-py3-none-any.whl (139 kB) 2025-09-07T06:10:13.7604260Z Using cached expecttest-0.3.0-py3-none-any.whl (8.2 kB) 2025-09-07T06:10:13.7636360Z Using cached fbscribelogger-0.1.7-py3-none-any.whl (6.9 kB) 2025-09-07T06:10:13.7653690Z Using cached typing_extensions-4.12.2-py3-none-any.whl (37 kB) 2025-09-07T06:10:13.7686930Z Using cached filelock-3.18.0-py3-none-any.whl (16 kB) 2025-09-07T06:10:13.7706310Z Using cached hypothesis-6.56.4-py3-none-any.whl (395 kB) 2025-09-07T06:10:13.7760020Z Using cached mpmath-1.3.0-py3-none-any.whl (536 kB) 2025-09-07T06:10:13.7782050Z Using cached networkx-2.8.7-py3-none-any.whl (2.0 MB) 2025-09-07T06:10:13.7879060Z Using cached ninja-1.10.2.4-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (231 kB) 2025-09-07T06:10:13.7902560Z Using cached numba-0.59.0-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB) 2025-09-07T06:10:13.8034700Z Using cached numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl (13.7 MB) 2025-09-07T06:10:13.8391110Z Using cached optree-0.13.0-cp312-cp312-macosx_11_0_arm64.whl (305 kB) 2025-09-07T06:10:13.8433560Z Using cached packaging-23.1-py3-none-any.whl (48 kB) 2025-09-07T06:10:13.8460830Z Using cached parameterized-0.8.1-py2.py3-none-any.whl (26 kB) 2025-09-07T06:10:13.8489300Z Using cached pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB) 2025-09-07T06:10:13.8627910Z Using cached protobuf-5.29.4-cp38-abi3-macosx_10_9_universal2.whl (417 kB) 2025-09-07T06:10:13.8705590Z Using cached psutil-5.9.8-cp38-abi3-macosx_11_0_arm64.whl (249 kB) 2025-09-07T06:10:13.8731540Z Using cached Pygments-2.15.0-py3-none-any.whl (1.1 MB) 2025-09-07T06:10:13.8787440Z Using cached pytest_cpp-2.3.0-py3-none-any.whl (14 kB) 2025-09-07T06:10:13.8818520Z Using cached pytest_flakefinder-1.1.0-py2.py3-none-any.whl (4.6 kB) 2025-09-07T06:10:13.8838350Z Using cached pytest_rerunfailures-10.3-py3-none-any.whl (11 kB) 2025-09-07T06:10:13.8869620Z Using cached pytest_subtests-0.13.1-py3-none-any.whl (8.0 kB) 2025-09-07T06:10:13.8890020Z Using cached pytest_xdist-3.3.1-py3-none-any.whl (41 kB) 2025-09-07T06:10:13.8910300Z Using cached pytest-7.3.2-py3-none-any.whl (320 kB) 2025-09-07T06:10:13.8945440Z Using cached PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl (173 kB) 2025-09-07T06:10:13.8979890Z Using cached scipy-1.12.0-cp312-cp312-macosx_12_0_arm64.whl (31.4 MB) 2025-09-07T06:10:13.9768610Z Using cached setuptools-72.1.0-py3-none-any.whl (2.3 MB) 2025-09-07T06:10:13.9907030Z Using cached sympy-1.13.3-py3-none-any.whl (6.2 MB) 2025-09-07T06:10:14.0114290Z Using cached tlparse-0.4.0-py3-none-macosx_11_0_arm64.whl (2.2 MB) 2025-09-07T06:10:14.0217420Z Using cached tensorboard-2.13.0-py3-none-any.whl (5.6 MB) 2025-09-07T06:10:14.0425360Z Using cached xdoctest-1.1.0-py3-none-any.whl (135 kB) 2025-09-07T06:10:14.0448550Z Using cached z3_solver-4.15.1.0-py3-none-macosx_13_0_arm64.whl (37.5 MB) 2025-09-07T06:10:14.1510370Z Using cached cmake-3.27.9-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (47.4 MB) 2025-09-07T06:10:14.5244290Z Using cached unittest_xml_reporting-3.2.0-py2.py3-none-any.whl (20 kB) 2025-09-07T06:10:14.5274120Z Using cached aiohttp-3.12.15-cp312-cp312-macosx_11_0_arm64.whl (469 kB) 2025-09-07T06:10:14.5315370Z Using cached botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-09-07T06:10:14.6710360Z Using cached google_auth-2.40.3-py2.py3-none-any.whl (216 kB) 2025-09-07T06:10:14.6784220Z Using cached cachetools-5.5.2-py3-none-any.whl (10 kB) 2025-09-07T06:10:14.6808660Z Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB) 2025-09-07T06:10:14.6833070Z Using cached jmespath-1.0.1-py3-none-any.whl (20 kB) 2025-09-07T06:10:14.6850480Z Using cached llvmlite-0.42.0-cp312-cp312-macosx_11_0_arm64.whl (28.8 MB) 2025-09-07T06:10:14.9997930Z Using cached multidict-6.6.4-cp312-cp312-macosx_11_0_arm64.whl (43 kB) 2025-09-07T06:10:15.0025700Z Using cached pluggy-1.6.0-py3-none-any.whl (20 kB) 2025-09-07T06:10:15.0053700Z Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) 2025-09-07T06:10:15.0093640Z Using cached requests-2.32.5-py3-none-any.whl (64 kB) 2025-09-07T06:10:15.0114700Z Using cached charset_normalizer-3.4.3-cp312-cp312-macosx_10_13_universal2.whl (205 kB) 2025-09-07T06:10:15.0144930Z Using cached idna-3.10-py3-none-any.whl (70 kB) 2025-09-07T06:10:15.0166410Z Using cached rsa-4.9.1-py3-none-any.whl (34 kB) 2025-09-07T06:10:15.0186170Z Using cached s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-09-07T06:10:15.0209320Z Using cached sortedcontainers-2.4.0-py2.py3-none-any.whl (29 kB) 2025-09-07T06:10:15.0240810Z Using cached tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB) 2025-09-07T06:10:15.0258540Z Using cached thriftpy2-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (833 kB) 2025-09-07T06:10:15.0308170Z Using cached ply-3.11-py2.py3-none-any.whl (49 kB) 2025-09-07T06:10:15.0333410Z Using cached six-1.17.0-py2.py3-none-any.whl (11 kB) 2025-09-07T06:10:15.0352470Z Using cached urllib3-2.5.0-py3-none-any.whl (129 kB) 2025-09-07T06:10:15.0373080Z Using cached yarl-1.20.1-cp312-cp312-macosx_11_0_arm64.whl (89 kB) 2025-09-07T06:10:15.0393990Z Using cached librosa-0.11.0-py3-none-any.whl (260 kB) 2025-09-07T06:10:15.0432810Z Using cached opt_einsum-3.4.0-py3-none-any.whl (71 kB) 2025-09-07T06:10:15.0462000Z Using cached absl_py-2.3.1-py3-none-any.whl (135 kB) 2025-09-07T06:10:15.0483740Z Using cached aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB) 2025-09-07T06:10:15.0496700Z Using cached aiosignal-1.4.0-py3-none-any.whl (7.5 kB) 2025-09-07T06:10:15.0526110Z Using cached attrs-25.3.0-py3-none-any.whl (63 kB) 2025-09-07T06:10:15.0551930Z Using cached audioread-3.0.1-py3-none-any.whl (23 kB) 2025-09-07T06:10:15.0576160Z Using cached certifi-2025.8.3-py3-none-any.whl (161 kB) 2025-09-07T06:10:15.0589530Z Using cached decorator-5.2.1-py3-none-any.whl (9.2 kB) 2025-09-07T06:10:15.0603580Z Using cached execnet-2.1.1-py3-none-any.whl (40 kB) 2025-09-07T06:10:15.0621750Z Using cached frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl (46 kB) 2025-09-07T06:10:15.0642410Z Using cached grpcio-1.74.0-cp312-cp312-macosx_11_0_universal2.whl (11.0 MB) 2025-09-07T06:10:15.1414250Z Using cached joblib-1.5.2-py3-none-any.whl (308 kB) 2025-09-07T06:10:15.1544520Z Using cached lazy_loader-0.4-py3-none-any.whl (12 kB) 2025-09-07T06:10:15.1570960Z Using cached markdown-3.9-py3-none-any.whl (107 kB) 2025-09-07T06:10:15.1597280Z Using cached msgpack-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (79 kB) 2025-09-07T06:10:15.1619510Z Using cached pooch-1.8.2-py3-none-any.whl (64 kB) 2025-09-07T06:10:15.1640470Z Using cached platformdirs-4.4.0-py3-none-any.whl (18 kB) 2025-09-07T06:10:15.1670720Z Using cached propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (43 kB) 2025-09-07T06:10:15.1695610Z Using cached pyasn1-0.6.1-py3-none-any.whl (83 kB) 2025-09-07T06:10:15.1723240Z Using cached pyasn1_modules-0.4.2-py3-none-any.whl (181 kB) 2025-09-07T06:10:15.1748670Z Using cached requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB) 2025-09-07T06:10:15.1773470Z Using cached oauthlib-3.3.1-py3-none-any.whl (160 kB) 2025-09-07T06:10:15.1797570Z Using cached scikit_learn-1.7.1-cp312-cp312-macosx_12_0_arm64.whl (8.6 MB) 2025-09-07T06:10:15.2534170Z Using cached soundfile-0.13.1-py2.py3-none-macosx_11_0_arm64.whl (1.1 MB) 2025-09-07T06:10:15.2721210Z Using cached cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl (178 kB) 2025-09-07T06:10:15.2753370Z Using cached soxr-0.5.0.post1-cp312-abi3-macosx_11_0_arm64.whl (156 kB) 2025-09-07T06:10:15.2770770Z Using cached threadpoolctl-3.6.0-py3-none-any.whl (18 kB) 2025-09-07T06:10:15.2782320Z Using cached werkzeug-3.1.3-py3-none-any.whl (224 kB) 2025-09-07T06:10:15.2816550Z Using cached MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl (12 kB) 2025-09-07T06:10:15.2840880Z Using cached wheel-0.45.1-py3-none-any.whl (72 kB) 2025-09-07T06:10:15.2860960Z Using cached colorama-0.4.6-py2.py3-none-any.whl (25 kB) 2025-09-07T06:10:15.2886220Z Using cached iniconfig-2.1.0-py3-none-any.whl (6.0 kB) 2025-09-07T06:10:15.2902580Z Using cached lxml-6.0.1-cp312-cp312-macosx_10_13_universal2.whl (8.4 MB) 2025-09-07T06:10:15.3723620Z Using cached pycparser-2.22-py3-none-any.whl (117 kB) 2025-09-07T06:10:15.6601210Z Installing collected packages: z3-solver, sortedcontainers, ply, parameterized, ninja, mpmath, cmake, wheel, urllib3, typing-extensions, tlparse, threadpoolctl, tensorboard-data-server, sympy, six, setuptools, pyyaml, pygments, pycparser, pyasn1, psutil, protobuf, propcache, pluggy, platformdirs, pillow, packaging, opt-einsum, oauthlib, numpy, networkx, multidict, msgpack, MarkupSafe, markdown, lxml, llvmlite, joblib, jmespath, iniconfig, idna, grpcio, frozenlist, filelock, expecttest, execnet, decorator, colorama, charset_normalizer, certifi, cachetools, audioread, attrs, aiohappyeyeballs, absl-py, yarl, xdoctest, werkzeug, unittest-xml-reporting, thriftpy2, soxr, scipy, rsa, requests, python-dateutil, pytest, pyasn1-modules, optree, numba, lazy_loader, hypothesis, cffi, aiosignal, soundfile, scikit-learn, requests-oauthlib, pytest-xdist, pytest-subtests, pytest-rerunfailures, pytest-flakefinder, pytest-cpp, pooch, google-auth, botocore, aiohttp, s3transfer, librosa, google-auth-oauthlib, fbscribelogger, tensorboard, boto3 2025-09-07T06:10:30.6353540Z 2025-09-07T06:10:30.6392570Z Successfully installed MarkupSafe-3.0.2 absl-py-2.3.1 aiohappyeyeballs-2.6.1 aiohttp-3.12.15 aiosignal-1.4.0 attrs-25.3.0 audioread-3.0.1 boto3-1.35.42 botocore-1.35.99 cachetools-5.5.2 certifi-2025.8.3 cffi-1.17.1 charset_normalizer-3.4.3 cmake-3.27.9 colorama-0.4.6 decorator-5.2.1 execnet-2.1.1 expecttest-0.3.0 fbscribelogger-0.1.7 filelock-3.18.0 frozenlist-1.7.0 google-auth-2.40.3 google-auth-oauthlib-1.0.0 grpcio-1.74.0 hypothesis-6.56.4 idna-3.10 iniconfig-2.1.0 jmespath-1.0.1 joblib-1.5.2 lazy_loader-0.4 librosa-0.11.0 llvmlite-0.42.0 lxml-6.0.1 markdown-3.9 mpmath-1.3.0 msgpack-1.1.1 multidict-6.6.4 networkx-2.8.7 ninja-1.10.2.4 numba-0.59.0 numpy-1.26.4 oauthlib-3.3.1 opt-einsum-3.4.0 optree-0.13.0 packaging-23.1 parameterized-0.8.1 pillow-10.3.0 platformdirs-4.4.0 pluggy-1.6.0 ply-3.11 pooch-1.8.2 propcache-0.3.2 protobuf-5.29.4 psutil-5.9.8 pyasn1-0.6.1 pyasn1-modules-0.4.2 pycparser-2.22 pygments-2.15.0 pytest-7.3.2 pytest-cpp-2.3.0 pytest-flakefinder-1.1.0 pytest-rerunfailures-10.3 pytest-subtests-0.13.1 pytest-xdist-3.3.1 python-dateutil-2.9.0.post0 pyyaml-6.0.2 requests-2.32.5 requests-oauthlib-2.0.0 rsa-4.9.1 s3transfer-0.10.4 scikit-learn-1.7.1 scipy-1.12.0 setuptools-72.1.0 six-1.17.0 sortedcontainers-2.4.0 soundfile-0.13.1 soxr-0.5.0.post1 sympy-1.13.3 tensorboard-2.13.0 tensorboard-data-server-0.7.2 threadpoolctl-3.6.0 thriftpy2-0.5.3 tlparse-0.4.0 typing-extensions-4.12.2 unittest-xml-reporting-3.2.0 urllib3-2.5.0 werkzeug-3.1.3 wheel-0.45.1 xdoctest-1.1.0 yarl-1.20.1 z3-solver-4.15.1.0 2025-09-07T06:10:30.6711140Z 2025-09-07T06:10:30.6711430Z [notice] A new release of pip is available: 25.1.1 -> 25.2 2025-09-07T06:10:30.6711910Z [notice] To update, run: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin/python -m pip install --upgrade pip 2025-09-07T06:10:31.2990640Z ##[group]Run nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e 2025-09-07T06:10:31.2990900Z with: 2025-09-07T06:10:31.2991010Z timeout_minutes: 5 2025-09-07T06:10:31.2991140Z max_attempts: 3 2025-09-07T06:10:31.2991260Z retry_wait_seconds: 90 2025-09-07T06:10:31.2993520Z command: set -ex DOWNLOAD_SCCACHE=0 SCCACHE_VERSION="0.4.1" LOCAL_PATH="/usr/local/bin" if [ ! -f "${LOCAL_PATH}/sccache" ]; then DOWNLOAD_SCCACHE=1 else LOCAL_VERSION=$("${LOCAL_PATH}/sccache" --version | cut -d" " -f2) if [ "${LOCAL_VERSION}" != "${SCCACHE_VERSION}" ]; then DOWNLOAD_SCCACHE=1 fi fi if [ "${DOWNLOAD_SCCACHE}" == "1" ]; then sudo curl --retry 3 --retry-all-errors "https://s3.amazonaws.com/ossci-macos/sccache/sccache-v0.4.1-${RUNNER_ARCH}" --output "${LOCAL_PATH}/sccache" sudo chmod +x "${LOCAL_PATH}/sccache" fi if [[ "${SCCACHE_USE_GHA}" == "true" ]]; then echo "ACTIONS_CACHE_URL=${ACTIONS_CACHE_URL}" >> "${GITHUB_ENV}" echo "ACTIONS_RUNTIME_TOKEN=${ACTIONS_RUNTIME_TOKEN}" >> "${GITHUB_ENV}" echo "SCCACHE_GHA_ENABLED=on" >> "${GITHUB_ENV}" else # The runner has access to the S3 bucket via IAM profile without the need # for any credential echo "SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2" >> "${GITHUB_ENV}" echo "SCCACHE_S3_KEY_PREFIX=${GITHUB_WORKFLOW}" >> "${GITHUB_ENV}" fi # This is needed so that later build script could find sccache (which sccache) echo "${LOCAL_PATH}" >> $GITHUB_PATH 2025-09-07T06:10:31.2995890Z polling_interval_seconds: 1 2025-09-07T06:10:31.2996050Z warning_on_retry: true 2025-09-07T06:10:31.2996190Z continue_on_error: false 2025-09-07T06:10:31.2996330Z env: 2025-09-07T06:10:31.2996450Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:10:31.2996620Z SCCACHE_USE_GHA: false 2025-09-07T06:10:31.2996820Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:10:31.2997040Z ##[endgroup] 2025-09-07T06:10:31.3758150Z + DOWNLOAD_SCCACHE=0 2025-09-07T06:10:31.3758520Z + SCCACHE_VERSION=0.4.1 2025-09-07T06:10:31.3758740Z + LOCAL_PATH=/usr/local/bin 2025-09-07T06:10:31.3758950Z + '[' '!' -f /usr/local/bin/sccache ']' 2025-09-07T06:10:31.3762090Z ++ /usr/local/bin/sccache --version 2025-09-07T06:10:31.3763260Z ++ cut '-d ' -f2 2025-09-07T06:10:31.3792150Z + LOCAL_VERSION=0.4.1 2025-09-07T06:10:31.3792330Z + '[' 0.4.1 '!=' 0.4.1 ']' 2025-09-07T06:10:31.3792500Z + '[' 0 == 1 ']' 2025-09-07T06:10:31.3792650Z + [[ false == \t\r\u\e ]] 2025-09-07T06:10:31.3792870Z + echo SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2 2025-09-07T06:10:31.3793380Z + echo SCCACHE_S3_KEY_PREFIX=trunk 2025-09-07T06:10:31.3803400Z + echo /usr/local/bin 2025-09-07T06:10:32.3778190Z Command completed after 1 attempt(s). 2025-09-07T06:10:32.3962300Z Prepare all required actions 2025-09-07T06:10:32.4034940Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-09-07T06:10:32.4035630Z with: 2025-09-07T06:10:32.4037090Z github-token: *** 2025-09-07T06:10:32.4037510Z env: 2025-09-07T06:10:32.4038650Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:10:32.4039440Z SCCACHE_USE_GHA: false 2025-09-07T06:10:32.4040340Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:10:32.4041470Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-09-07T06:10:32.4042320Z SCCACHE_S3_KEY_PREFIX: trunk 2025-09-07T06:10:32.4042940Z ##[endgroup] 2025-09-07T06:10:32.4086670Z ##[group]Run set -eux 2025-09-07T06:10:32.4087160Z set -eux 2025-09-07T06:10:32.4113780Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-09-07T06:10:32.4169240Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-09-07T06:10:32.4169860Z env: 2025-09-07T06:10:32.4170360Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:10:32.4170880Z SCCACHE_USE_GHA: false 2025-09-07T06:10:32.4171460Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:10:32.4172360Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-09-07T06:10:32.4173020Z SCCACHE_S3_KEY_PREFIX: trunk 2025-09-07T06:10:32.4173830Z GITHUB_TOKEN: *** 2025-09-07T06:10:32.4174180Z ##[endgroup] 2025-09-07T06:10:32.4632120Z + python3 .github/scripts/get_workflow_job_id.py 17524754564 i-0f7b420a26df89db8 2025-09-07T06:10:32.8844280Z Setting output job-id=49773695232 2025-09-07T06:10:32.8845420Z Setting output job-name=macos-py3-arm64 / build 2025-09-07T06:10:32.9250140Z Prepare all required actions 2025-09-07T06:10:32.9250640Z Getting action download info 2025-09-07T06:10:33.0255140Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-09-07T06:10:33.2893170Z ##[group]Run ./.github/actions/filter-test-configs 2025-09-07T06:10:33.2893430Z with: 2025-09-07T06:10:33.2893720Z github-token: *** 2025-09-07T06:10:33.2894500Z test-matrix: { include: [ { config: "default", shard: 1, num_shards: 3, runner: "macos-m1-stable" }, { config: "default", shard: 2, num_shards: 3, runner: "macos-m1-stable" }, { config: "default", shard: 3, num_shards: 3, runner: "macos-m1-stable" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-14" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m2-15" }, ]} 2025-09-07T06:10:33.2895320Z job-name: macos-py3-arm64 / build 2025-09-07T06:10:33.2895520Z env: 2025-09-07T06:10:33.2895660Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:10:33.2895920Z SCCACHE_USE_GHA: false 2025-09-07T06:10:33.2896150Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:10:33.2896460Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-09-07T06:10:33.2896680Z SCCACHE_S3_KEY_PREFIX: trunk 2025-09-07T06:10:33.2896860Z ##[endgroup] 2025-09-07T06:10:33.2932290Z ##[group]Run nick-fields/retry@v3.0.0 2025-09-07T06:10:33.2932480Z with: 2025-09-07T06:10:33.2932590Z shell: bash 2025-09-07T06:10:33.2932710Z timeout_minutes: 10 2025-09-07T06:10:33.2932840Z max_attempts: 5 2025-09-07T06:10:33.2932980Z retry_wait_seconds: 30 2025-09-07T06:10:33.2933460Z command: set -eux # PyYAML 6.0 doesn't work with MacOS x86 anymore # This must run on Python-3.7 (AmazonLinux2) so can't use request=3.32.2 python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-09-07T06:10:33.2933960Z polling_interval_seconds: 1 2025-09-07T06:10:33.2934150Z warning_on_retry: true 2025-09-07T06:10:33.2934310Z continue_on_error: false 2025-09-07T06:10:33.2934460Z env: 2025-09-07T06:10:33.2934600Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:10:33.2934800Z SCCACHE_USE_GHA: false 2025-09-07T06:10:33.2935040Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:10:33.2935330Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-09-07T06:10:33.2935570Z SCCACHE_S3_KEY_PREFIX: trunk 2025-09-07T06:10:33.2935960Z GITHUB_TOKEN: *** 2025-09-07T06:10:33.2936110Z ##[endgroup] 2025-09-07T06:10:33.3683530Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.2 2025-09-07T06:10:33.5639120Z Collecting requests==2.27.1 2025-09-07T06:10:33.5660740Z Using cached requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-09-07T06:10:33.5708570Z Requirement already satisfied: pyyaml==6.0.2 in /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/lib/python3.12/site-packages (6.0.2) 2025-09-07T06:10:33.5836060Z Collecting urllib3<1.27,>=1.21.1 (from requests==2.27.1) 2025-09-07T06:10:33.5851840Z Using cached urllib3-1.26.20-py2.py3-none-any.whl.metadata (50 kB) 2025-09-07T06:10:33.5928880Z Requirement already satisfied: certifi>=2017.4.17 in /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/lib/python3.12/site-packages (from requests==2.27.1) (2025.8.3) 2025-09-07T06:10:33.6281430Z Collecting charset-normalizer~=2.0.0 (from requests==2.27.1) 2025-09-07T06:10:33.6307500Z Using cached charset_normalizer-2.0.12-py3-none-any.whl.metadata (11 kB) 2025-09-07T06:10:33.6352600Z Requirement already satisfied: idna<4,>=2.5 in /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/lib/python3.12/site-packages (from requests==2.27.1) (3.10) 2025-09-07T06:10:33.6385660Z Using cached requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-09-07T06:10:33.6407420Z Using cached charset_normalizer-2.0.12-py3-none-any.whl (39 kB) 2025-09-07T06:10:33.6440880Z Using cached urllib3-1.26.20-py2.py3-none-any.whl (144 kB) 2025-09-07T06:10:33.7203000Z Installing collected packages: urllib3, charset-normalizer, requests 2025-09-07T06:10:33.7205110Z Attempting uninstall: urllib3 2025-09-07T06:10:33.7216180Z Found existing installation: urllib3 2.5.0 2025-09-07T06:10:33.7240680Z Uninstalling urllib3-2.5.0: 2025-09-07T06:10:33.7249680Z Successfully uninstalled urllib3-2.5.0 2025-09-07T06:10:33.7710150Z Attempting uninstall: charset-normalizer 2025-09-07T06:10:33.7730870Z Found existing installation: charset-normalizer 3.4.3 2025-09-07T06:10:33.7750150Z Uninstalling charset-normalizer-3.4.3: 2025-09-07T06:10:33.7759730Z Successfully uninstalled charset-normalizer-3.4.3 2025-09-07T06:10:33.7948740Z Attempting uninstall: requests 2025-09-07T06:10:33.7962560Z Found existing installation: requests 2.32.5 2025-09-07T06:10:33.7977820Z Uninstalling requests-2.32.5: 2025-09-07T06:10:33.7983440Z Successfully uninstalled requests-2.32.5 2025-09-07T06:10:33.8218010Z 2025-09-07T06:10:33.8252430Z Successfully installed charset-normalizer-2.0.12 requests-2.27.1 urllib3-1.26.20 2025-09-07T06:10:33.8273930Z 2025-09-07T06:10:33.8274220Z [notice] A new release of pip is available: 25.1.1 -> 25.2 2025-09-07T06:10:33.8274510Z [notice] To update, run: pip install --upgrade pip 2025-09-07T06:10:34.3712480Z Command completed after 1 attempt(s). 2025-09-07T06:10:34.3837150Z ##[group]Run set -x 2025-09-07T06:10:34.3838080Z set -x 2025-09-07T06:10:34.3838670Z  2025-09-07T06:10:34.3839700Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-09-07T06:10:34.3840960Z # in runner workspace 2025-09-07T06:10:34.3841990Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-09-07T06:10:34.3914980Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-09-07T06:10:34.3915720Z env: 2025-09-07T06:10:34.3916200Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:10:34.3916850Z SCCACHE_USE_GHA: false 2025-09-07T06:10:34.3917620Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:10:34.3918670Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-09-07T06:10:34.3919440Z SCCACHE_S3_KEY_PREFIX: trunk 2025-09-07T06:10:34.3920020Z ##[endgroup] 2025-09-07T06:10:34.4334040Z + python3 /Users/ec2-user/runner/_work/pytorch/pytorch/./.github/actions/filter-test-configs/../../scripts/parse_ref.py 2025-09-07T06:10:34.4542600Z Setting output branch=main 2025-09-07T06:10:34.4608490Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-09-07T06:10:34.4609000Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-09-07T06:10:34.4609250Z echo "Job name: ${JOB_NAME}" 2025-09-07T06:10:34.4609440Z  2025-09-07T06:10:34.4609720Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-09-07T06:10:34.4610050Z # in runner workspace 2025-09-07T06:10:34.4610340Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-09-07T06:10:34.4610670Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-09-07T06:10:34.4610930Z  --job-name "${JOB_NAME}" \ 2025-09-07T06:10:34.4611160Z  --test-matrix "{ include: [ 2025-09-07T06:10:34.4611460Z  { config: "default", shard: 1, num_shards: 3, runner: "macos-m1-stable" }, 2025-09-07T06:10:34.4611870Z  { config: "default", shard: 2, num_shards: 3, runner: "macos-m1-stable" }, 2025-09-07T06:10:34.4612250Z  { config: "default", shard: 3, num_shards: 3, runner: "macos-m1-stable" }, 2025-09-07T06:10:34.4612650Z  { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-14" }, 2025-09-07T06:10:34.4612990Z  { config: "mps", shard: 1, num_shards: 1, runner: "macos-m2-15" }, 2025-09-07T06:10:34.4613290Z ]} 2025-09-07T06:10:34.4624600Z " \ 2025-09-07T06:10:34.4624780Z  --selected-test-configs "" \ 2025-09-07T06:10:34.4625000Z  --pr-number "${PR_NUMBER}" \ 2025-09-07T06:10:34.4625210Z  --tag "${TAG}" \ 2025-09-07T06:10:34.4625400Z  --event-name "${EVENT_NAME}" \ 2025-09-07T06:10:34.4625830Z  --schedule "${SCHEDULE}" \ 2025-09-07T06:10:34.4626040Z  --branch "${HEAD_BRANCH}" 2025-09-07T06:10:34.4644290Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-09-07T06:10:34.4644550Z env: 2025-09-07T06:10:34.4644710Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:10:34.4644930Z SCCACHE_USE_GHA: false 2025-09-07T06:10:34.4645180Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:10:34.4645520Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-09-07T06:10:34.4645770Z SCCACHE_S3_KEY_PREFIX: trunk 2025-09-07T06:10:34.4646250Z GITHUB_TOKEN: *** 2025-09-07T06:10:34.4646420Z JOB_NAME: macos-py3-arm64 / build 2025-09-07T06:10:34.4646630Z PR_NUMBER: 2025-09-07T06:10:34.4646780Z TAG: 2025-09-07T06:10:34.4646920Z EVENT_NAME: push 2025-09-07T06:10:34.4647080Z SCHEDULE: 2025-09-07T06:10:34.4647240Z HEAD_BRANCH: main 2025-09-07T06:10:34.4647380Z ##[endgroup] 2025-09-07T06:10:34.4908650Z Workflow: trunk 2025-09-07T06:10:34.4908930Z Job name: macos-py3-arm64 / build 2025-09-07T06:10:34.7542800Z Setting output keep-going=True 2025-09-07T06:10:34.7543140Z Setting output ci-verbose-test-logs=False 2025-09-07T06:10:34.7543470Z Setting output ci-test-showlocals=False 2025-09-07T06:10:34.7543770Z Setting output ci-no-test-timeout=False 2025-09-07T06:10:34.7544080Z Setting output ci-no-td=False 2025-09-07T06:10:34.7544430Z Setting output ci-td-distributed=False 2025-09-07T06:10:34.7544730Z Setting output is-unstable=False 2025-09-07T06:10:34.7545010Z Setting output reenabled-issues= 2025-09-07T06:10:34.7546260Z Setting output test-matrix={"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m1-14"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m2-15"}]} 2025-09-07T06:10:34.7547600Z Setting output is-test-matrix-empty=False 2025-09-07T06:10:34.7659260Z ##[group]Run echo "Filtered matrix:" 2025-09-07T06:10:34.7659510Z echo "Filtered matrix:" 2025-09-07T06:10:34.7660480Z echo "{"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m1-14"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m2-15"}]}" 2025-09-07T06:10:34.7661610Z  2025-09-07T06:10:34.7661760Z echo 2025-09-07T06:10:34.7661980Z echo "Is the current job unstable? False" 2025-09-07T06:10:34.7662220Z  2025-09-07T06:10:34.7662360Z echo 2025-09-07T06:10:34.7662550Z echo "Is keep-going label set? True" 2025-09-07T06:10:34.7662800Z  2025-09-07T06:10:34.7662940Z echo 2025-09-07T06:10:34.7663120Z echo "Reenabled issues? " 2025-09-07T06:10:34.7681940Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-09-07T06:10:34.7682190Z env: 2025-09-07T06:10:34.7682370Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:10:34.7682580Z SCCACHE_USE_GHA: false 2025-09-07T06:10:34.7682840Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:10:34.7683180Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-09-07T06:10:34.7683430Z SCCACHE_S3_KEY_PREFIX: trunk 2025-09-07T06:10:34.7683620Z ##[endgroup] 2025-09-07T06:10:34.7953050Z Filtered matrix: 2025-09-07T06:10:34.7954210Z {include: [{config: default, shard: 1, num_shards: 3, runner: macos-m1-stable}, {config: default, shard: 2, num_shards: 3, runner: macos-m1-stable}, {config: default, shard: 3, num_shards: 3, runner: macos-m1-stable}, {config: mps, shard: 1, num_shards: 1, runner: macos-m1-14}, {config: mps, shard: 1, num_shards: 1, runner: macos-m2-15}]} 2025-09-07T06:10:34.7955000Z 2025-09-07T06:10:34.7955090Z Is the current job unstable? False 2025-09-07T06:10:34.7955230Z 2025-09-07T06:10:34.7955300Z Is keep-going label set? True 2025-09-07T06:10:34.7955430Z 2025-09-07T06:10:34.7955490Z Reenabled issues? 2025-09-07T06:10:34.7983410Z ##[group]Run # TODO: Remove me later, and properly activate venv 2025-09-07T06:10:34.7983810Z # TODO: Remove me later, and properly activate venv 2025-09-07T06:10:34.7984060Z PATH="$VENV_PATH/bin:$PATH" 2025-09-07T06:10:34.7984240Z export PATH 2025-09-07T06:10:34.7984400Z  2025-09-07T06:10:34.7984640Z # NB: Same trick as Linux, there is no need to initialize sccache with the risk of getting 2025-09-07T06:10:34.7985050Z # it hangs or timeout at initialization. The cache will be started automatically 2025-09-07T06:10:34.7985380Z export SKIP_SCCACHE_INITIALIZATION=1 2025-09-07T06:10:34.7985590Z .ci/pytorch/macos-build.sh 2025-09-07T06:10:34.8001760Z shell: /bin/bash -e {0} 2025-09-07T06:10:34.8001940Z env: 2025-09-07T06:10:34.8002080Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:10:34.8002280Z SCCACHE_USE_GHA: false 2025-09-07T06:10:34.8002510Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:10:34.8002820Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-09-07T06:10:34.8003090Z SCCACHE_S3_KEY_PREFIX: trunk 2025-09-07T06:10:34.8003260Z OUR_GITHUB_JOB_ID: 49773695232 2025-09-07T06:10:34.8003450Z ##[endgroup] 2025-09-07T06:10:34.8614290Z +++ [[ macos-py3-arm64 == *rocm* ]] 2025-09-07T06:10:34.8614580Z +++ BUILD_TEST_LIBTORCH=0 2025-09-07T06:10:34.8617320Z ++ sysctl -a 2025-09-07T06:10:34.8618260Z ++ grep machdep.cpu 2025-09-07T06:10:34.8733940Z machdep.cpu.cores_per_package: 8 2025-09-07T06:10:34.8734200Z machdep.cpu.core_count: 8 2025-09-07T06:10:34.8734390Z machdep.cpu.logical_per_package: 8 2025-09-07T06:10:34.8734600Z machdep.cpu.thread_count: 8 2025-09-07T06:10:34.8734830Z machdep.cpu.brand_string: Apple M1 2025-09-07T06:10:34.8735380Z ++ export MACOSX_DEPLOYMENT_TARGET=11.1 2025-09-07T06:10:34.8735600Z ++ MACOSX_DEPLOYMENT_TARGET=11.1 2025-09-07T06:10:34.8735790Z ++ export CXX=clang++ 2025-09-07T06:10:34.8735950Z ++ CXX=clang++ 2025-09-07T06:10:34.8736120Z ++ export CC=clang 2025-09-07T06:10:34.8736270Z ++ CC=clang 2025-09-07T06:10:34.8739480Z ++ dirname .ci/pytorch/macos-build.sh 2025-09-07T06:10:34.8749420Z + source .ci/pytorch/common-build.sh 2025-09-07T06:10:34.8757920Z ++ [[ macos-py3-arm64 != *win-* ]] 2025-09-07T06:10:34.8763010Z ++++ dirname .ci/pytorch/common-build.sh 2025-09-07T06:10:34.8774730Z +++ cd .ci/pytorch 2025-09-07T06:10:34.8774950Z +++ pwd -P 2025-09-07T06:10:34.8776360Z ++ script_dir=/Users/ec2-user/runner/_work/pytorch/pytorch/.ci/pytorch 2025-09-07T06:10:34.8776810Z ++ [[ macos-py3-arm64 == *-pch* ]] 2025-09-07T06:10:34.8777000Z ++ which sccache 2025-09-07T06:10:34.8797800Z ++ [[ -z ossci-compiler-cache-circleci-v2 ]] 2025-09-07T06:10:34.8798060Z ++ sccache --stop-server 2025-09-07T06:10:34.8840280Z ++ true 2025-09-07T06:10:34.8840440Z ++ rm -f /Users/ec2-user/sccache_error.log 2025-09-07T06:10:34.8863630Z ++ trap_add sccache_epilogue EXIT 2025-09-07T06:10:34.8863870Z ++ trap_add_cmd=sccache_epilogue 2025-09-07T06:10:34.8864070Z ++ shift 2025-09-07T06:10:34.8864240Z ++ for trap_add_name in '"$@"' 2025-09-07T06:10:34.8869400Z ++++ trap -p EXIT 2025-09-07T06:10:34.8870590Z +++ eval 'extract_trap_cmd ' 2025-09-07T06:10:34.8870770Z ++++ extract_trap_cmd 2025-09-07T06:10:34.8870940Z ++++ printf '%s\n' '' 2025-09-07T06:10:34.8871780Z +++ printf '%s\n' sccache_epilogue 2025-09-07T06:10:34.8872510Z ++ trap -- ' 2025-09-07T06:10:34.8872650Z sccache_epilogue' EXIT 2025-09-07T06:10:34.8872820Z ++ [[ -n 1 ]] 2025-09-07T06:10:34.8873070Z ++ echo 'Skipping sccache server initialization, setting environment variables' 2025-09-07T06:10:34.8873390Z ++ export SCCACHE_IDLE_TIMEOUT=0 2025-09-07T06:10:34.8873590Z ++ SCCACHE_IDLE_TIMEOUT=0 2025-09-07T06:10:34.8873820Z ++ export SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2025-09-07T06:10:34.8874110Z ++ SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2025-09-07T06:10:34.8878270Z ++ export RUST_LOG=sccache::server=error 2025-09-07T06:10:34.8878500Z ++ RUST_LOG=sccache::server=error 2025-09-07T06:10:34.8879190Z ++ sccache --zero-stats 2025-09-07T06:10:34.8879450Z Skipping sccache server initialization, setting environment variables 2025-09-07T06:10:35.1730930Z Compile requests 0 2025-09-07T06:10:35.1731290Z Compile requests executed 0 2025-09-07T06:10:35.1731600Z Cache hits 0 2025-09-07T06:10:35.1731890Z Cache misses 0 2025-09-07T06:10:35.1732210Z Cache timeouts 0 2025-09-07T06:10:35.1732520Z Cache read errors 0 2025-09-07T06:10:35.1732830Z Forced recaches 0 2025-09-07T06:10:35.1733160Z Cache write errors 0 2025-09-07T06:10:35.1733490Z Compilation failures 0 2025-09-07T06:10:35.1733900Z Cache errors 0 2025-09-07T06:10:35.1734220Z Non-cacheable compilations 0 2025-09-07T06:10:35.1734560Z Non-cacheable calls 0 2025-09-07T06:10:35.1734900Z Non-compilation calls 0 2025-09-07T06:10:35.1735230Z Unsupported compiler calls 0 2025-09-07T06:10:35.1735570Z Average cache write 0.000 s 2025-09-07T06:10:35.1757950Z Average compiler 0.000 s 2025-09-07T06:10:35.1758350Z Average cache read hit 0.000 s 2025-09-07T06:10:35.1758690Z Failed distributed compilations 0 2025-09-07T06:10:35.1759120Z Cache location s3, name: ossci-compiler-cache-circleci-v2, prefix: /trunk/ 2025-09-07T06:10:35.1759550Z Version (client) 0.4.1 2025-09-07T06:10:35.1759810Z ++ which ccache 2025-09-07T06:10:35.1759990Z + '[' -z true ']' 2025-09-07T06:10:35.1760160Z + which sccache 2025-09-07T06:10:35.1783470Z ++ mktemp -d 2025-09-07T06:10:35.1828420Z + tmp_dir=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR 2025-09-07T06:10:35.1828810Z + trap 'rm -rfv ${tmp_dir}' EXIT 2025-09-07T06:10:35.1829260Z + write_sccache_stub /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang++ 2025-09-07T06:10:35.1829880Z + output=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang++ 2025-09-07T06:10:35.1838950Z ++ basename /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang++ 2025-09-07T06:10:35.1847120Z + binary=clang++ 2025-09-07T06:10:35.1850940Z ++ which clang++ 2025-09-07T06:10:35.1866410Z ++ which clang++ 2025-09-07T06:10:35.1878450Z + printf '#!/bin/sh\nif [ $(ps auxc $(ps auxc -o ppid $$ | grep $$ | rev | cut -d'\'' '\'' -f1 | rev) | tr '\''\\n'\'' '\'' '\'' | rev | cut -d'\'' '\'' -f2 | rev) != sccache ]; then\n exec sccache %s "$@"\nelse\n exec %s "$@"\nfi' /usr/bin/clang++ /usr/bin/clang++ 2025-09-07T06:10:35.1880610Z + chmod a+x /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang++ 2025-09-07T06:10:35.1901780Z + write_sccache_stub /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang 2025-09-07T06:10:35.1902450Z + output=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang 2025-09-07T06:10:35.1905450Z ++ basename /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang 2025-09-07T06:10:35.1919380Z + binary=clang 2025-09-07T06:10:35.1923050Z ++ which clang 2025-09-07T06:10:35.1938410Z ++ which clang 2025-09-07T06:10:35.1950210Z + printf '#!/bin/sh\nif [ $(ps auxc $(ps auxc -o ppid $$ | grep $$ | rev | cut -d'\'' '\'' -f1 | rev) | tr '\''\\n'\'' '\'' '\'' | rev | cut -d'\'' '\'' -f2 | rev) != sccache ]; then\n exec sccache %s "$@"\nelse\n exec %s "$@"\nfi' /usr/bin/clang /usr/bin/clang 2025-09-07T06:10:35.1951970Z + chmod a+x /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang 2025-09-07T06:10:35.1967570Z + export PATH=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR:/Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin:/usr/local/bin:/Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2025-09-07T06:10:35.1970630Z + PATH=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR:/Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin:/usr/local/bin:/Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2025-09-07T06:10:35.1972090Z + print_cmake_info 2025-09-07T06:10:35.1972290Z ++ which cmake 2025-09-07T06:10:35.1981660Z + CMAKE_EXEC=/Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin/cmake 2025-09-07T06:10:35.1982180Z + echo /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin/cmake 2025-09-07T06:10:35.1982640Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin/cmake 2025-09-07T06:10:35.1984900Z ++ dirname /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin/cmake 2025-09-07T06:10:35.1996740Z + CONDA_INSTALLATION_DIR=/Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin 2025-09-07T06:10:35.1997300Z + ls -la /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin/../lib 2025-09-07T06:10:35.2031680Z total 0 2025-09-07T06:10:35.2031930Z drwxr-xr-x 3 ec2-user staff 96 Sep 7 06:10 . 2025-09-07T06:10:35.2032270Z drwxr-xr-x 8 ec2-user staff 256 Sep 7 06:10 .. 2025-09-07T06:10:35.2032630Z drwxr-xr-x 3 ec2-user staff 96 Sep 7 06:10 python3.12 2025-09-07T06:10:35.2034010Z + [[ macos-py3-arm64 == *\d\i\s\t\r\i\b\u\t\e\d* ]] 2025-09-07T06:10:35.2034340Z + USE_DISTRIBUTED=0 2025-09-07T06:10:35.2034540Z + USE_OPENMP=1 2025-09-07T06:10:35.2034750Z + MACOSX_DEPLOYMENT_TARGET=11.0 2025-09-07T06:10:35.2034970Z + WERROR=1 2025-09-07T06:10:35.2035120Z + BUILD_TEST=OFF 2025-09-07T06:10:35.2035310Z + USE_PYTORCH_METAL=1 2025-09-07T06:10:35.2035640Z + python setup.py bdist_wheel --plat-name macosx_11_0_arm64 2025-09-07T06:10:35.3304580Z Building wheel torch-2.9.0a0+git93fb23d 2025-09-07T06:10:35.7675170Z Found cmake (/Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin/cmake) version: 3.27.9 (>=3.27) 2025-09-07T06:10:35.8572780Z -- Building version 2.9.0a0+git93fb23d 2025-09-07T06:10:35.8726120Z Cloning into 'nccl'... 2025-09-07T06:10:36.1803520Z Note: switching to '3ea7eedf3b9b94f1d9f99f4e55536dfcbd23c1ca'. 2025-09-07T06:10:36.1804030Z 2025-09-07T06:10:36.1804390Z You are in 'detached HEAD' state. You can look around, make experimental 2025-09-07T06:10:36.1805240Z changes and commit them, and you can discard any commits you make in this 2025-09-07T06:10:36.1806060Z state without impacting any branches by switching back to a branch. 2025-09-07T06:10:36.1806530Z 2025-09-07T06:10:36.1806860Z If you want to create a new branch to retain commits you create, you may 2025-09-07T06:10:36.1807660Z do so (now or later) by using -c with the switch command. Example: 2025-09-07T06:10:36.1808080Z 2025-09-07T06:10:36.1808290Z git switch -c 2025-09-07T06:10:36.1808590Z 2025-09-07T06:10:36.1808760Z Or undo this operation with: 2025-09-07T06:10:36.1809010Z 2025-09-07T06:10:36.1809180Z git switch - 2025-09-07T06:10:36.1809370Z 2025-09-07T06:10:36.1809710Z Turn off this advice by setting config variable advice.detachedHead to false 2025-09-07T06:10:36.1810260Z 2025-09-07T06:10:37.1892410Z cmake -GNinja -DBUILD_ENVIRONMENT=macos-py3-arm64 -DBUILD_PYTHON=True -DBUILD_TEST=False -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/Users/ec2-user/runner/_work/pytorch/pytorch/torch -DCMAKE_PREFIX_PATH=/Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/lib/python3.12/site-packages -DPython_EXECUTABLE=/Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin/python -DPython_NumPy_INCLUDE_DIR=/Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/lib/python3.12/site-packages/numpy/core/include -DTORCH_BUILD_VERSION=2.9.0a0+git93fb23d -DUSE_DISTRIBUTED=0 -DUSE_NUMPY=True -DUSE_OPENMP=1 -DUSE_PYTORCH_METAL=1 -DWERROR=1 /Users/ec2-user/runner/_work/pytorch/pytorch 2025-09-07T06:10:37.5665850Z -- The CXX compiler identification is AppleClang 15.0.0.15000309 2025-09-07T06:10:37.6797690Z -- The C compiler identification is AppleClang 15.0.0.15000309 2025-09-07T06:10:37.7402860Z -- Detecting CXX compiler ABI info 2025-09-07T06:10:38.0140510Z -- Detecting CXX compiler ABI info - done 2025-09-07T06:10:38.0177430Z -- Check for working CXX compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang++ - skipped 2025-09-07T06:10:38.0179010Z -- Detecting CXX compile features 2025-09-07T06:10:38.0182660Z -- Detecting CXX compile features - done 2025-09-07T06:10:38.0768720Z -- Detecting C compiler ABI info 2025-09-07T06:10:38.3473330Z -- Detecting C compiler ABI info - done 2025-09-07T06:10:38.3510550Z -- Check for working C compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang - skipped 2025-09-07T06:10:38.3512260Z -- Detecting C compile features 2025-09-07T06:10:38.3515460Z -- Detecting C compile features - done 2025-09-07T06:10:38.3564730Z -- Not forcing any particular BLAS to be found 2025-09-07T06:10:38.3803300Z -- CLANG_VERSION_STRING: 15.0 2025-09-07T06:10:38.3878500Z -- sdk version: 14.4, mps supported: ON 2025-09-07T06:10:38.4058710Z -- MPSGraph framework found 2025-09-07T06:10:38.4089460Z -- Could not find ccache. Consider installing ccache to speed up compilation. 2025-09-07T06:10:38.4118570Z -- Performing Test C_HAS_AVX_1 2025-09-07T06:10:38.6854610Z -- Performing Test C_HAS_AVX_1 - Failed 2025-09-07T06:10:38.6854850Z -- Performing Test C_HAS_AVX_2 2025-09-07T06:10:38.8589300Z -- Performing Test C_HAS_AVX_2 - Failed 2025-09-07T06:10:38.8589880Z -- Performing Test C_HAS_AVX_3 2025-09-07T06:10:39.0052330Z -- Performing Test C_HAS_AVX_3 - Failed 2025-09-07T06:10:39.0052880Z -- Performing Test C_HAS_AVX2_1 2025-09-07T06:10:39.1780440Z -- Performing Test C_HAS_AVX2_1 - Failed 2025-09-07T06:10:39.1780700Z -- Performing Test C_HAS_AVX2_2 2025-09-07T06:10:39.3524330Z -- Performing Test C_HAS_AVX2_2 - Failed 2025-09-07T06:10:39.3524620Z -- Performing Test C_HAS_AVX2_3 2025-09-07T06:10:39.4985420Z -- Performing Test C_HAS_AVX2_3 - Failed 2025-09-07T06:10:39.4986040Z -- Performing Test C_HAS_AVX512_1 2025-09-07T06:10:39.6720630Z -- Performing Test C_HAS_AVX512_1 - Failed 2025-09-07T06:10:39.6721100Z -- Performing Test C_HAS_AVX512_2 2025-09-07T06:10:39.8461850Z -- Performing Test C_HAS_AVX512_2 - Failed 2025-09-07T06:10:39.8462230Z -- Performing Test C_HAS_AVX512_3 2025-09-07T06:10:39.9914900Z -- Performing Test C_HAS_AVX512_3 - Failed 2025-09-07T06:10:39.9915470Z -- Performing Test CXX_HAS_AVX_1 2025-09-07T06:10:40.1650710Z -- Performing Test CXX_HAS_AVX_1 - Failed 2025-09-07T06:10:40.1650970Z -- Performing Test CXX_HAS_AVX_2 2025-09-07T06:10:40.3380730Z -- Performing Test CXX_HAS_AVX_2 - Failed 2025-09-07T06:10:40.3381100Z -- Performing Test CXX_HAS_AVX_3 2025-09-07T06:10:40.4837540Z -- Performing Test CXX_HAS_AVX_3 - Failed 2025-09-07T06:10:40.4838310Z -- Performing Test CXX_HAS_AVX2_1 2025-09-07T06:10:40.6577050Z -- Performing Test CXX_HAS_AVX2_1 - Failed 2025-09-07T06:10:40.6577330Z -- Performing Test CXX_HAS_AVX2_2 2025-09-07T06:10:40.8326880Z -- Performing Test CXX_HAS_AVX2_2 - Failed 2025-09-07T06:10:40.8327270Z -- Performing Test CXX_HAS_AVX2_3 2025-09-07T06:10:40.9798630Z -- Performing Test CXX_HAS_AVX2_3 - Failed 2025-09-07T06:10:40.9799280Z -- Performing Test CXX_HAS_AVX512_1 2025-09-07T06:10:41.1538070Z -- Performing Test CXX_HAS_AVX512_1 - Failed 2025-09-07T06:10:41.1538340Z -- Performing Test CXX_HAS_AVX512_2 2025-09-07T06:10:41.3281900Z -- Performing Test CXX_HAS_AVX512_2 - Failed 2025-09-07T06:10:41.3282250Z -- Performing Test CXX_HAS_AVX512_3 2025-09-07T06:10:41.4754850Z -- Performing Test CXX_HAS_AVX512_3 - Failed 2025-09-07T06:10:41.4759600Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-09-07T06:10:41.6902560Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Success 2025-09-07T06:10:41.6906680Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-09-07T06:10:41.9043560Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Success 2025-09-07T06:10:41.9047920Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC 2025-09-07T06:10:42.1354960Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC - Success 2025-09-07T06:10:42.1377980Z -- No OMAP3 processor on this machine. 2025-09-07T06:10:42.1378200Z -- No OMAP4 processor on this machine. 2025-09-07T06:10:42.1379390Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-09-07T06:10:42.1408660Z CMake Warning at CMakeLists.txt:841 (message): 2025-09-07T06:10:42.1408980Z x64 operating system is required for FBGEMM. Not compiling with FBGEMM. 2025-09-07T06:10:42.1409590Z Turn this warning off by USE_FBGEMM=OFF. 2025-09-07T06:10:42.1409770Z 2025-09-07T06:10:42.1409770Z 2025-09-07T06:10:42.1501210Z CUDA_TOOLKIT_ROOT_DIR not found or specified 2025-09-07T06:10:43.4738230Z -- Could NOT find CUDA (missing: CUDA_TOOLKIT_ROOT_DIR CUDA_NVCC_EXECUTABLE CUDA_INCLUDE_DIRS CUDA_CUDART_LIBRARY) 2025-09-07T06:10:43.4747800Z CMake Warning at cmake/public/cuda.cmake:31 (message): 2025-09-07T06:10:43.4748160Z PyTorch: CUDA cannot be found. Depending on whether you are building 2025-09-07T06:10:43.4748850Z PyTorch or a PyTorch dependent library, the next warning / error will give 2025-09-07T06:10:43.4749140Z you more info. 2025-09-07T06:10:43.4749310Z Call Stack (most recent call first): 2025-09-07T06:10:43.4749560Z cmake/Dependencies.cmake:44 (include) 2025-09-07T06:10:43.4749760Z CMakeLists.txt:869 (include) 2025-09-07T06:10:43.4749880Z 2025-09-07T06:10:43.4749880Z 2025-09-07T06:10:43.4750000Z CMake Warning at cmake/Dependencies.cmake:76 (message): 2025-09-07T06:10:43.4750300Z Not compiling with CUDA. Suppress this warning with -DUSE_CUDA=OFF. 2025-09-07T06:10:43.4750590Z Call Stack (most recent call first): 2025-09-07T06:10:43.4750780Z CMakeLists.txt:869 (include) 2025-09-07T06:10:43.4750900Z 2025-09-07T06:10:43.4750900Z 2025-09-07T06:10:43.4767610Z CMake Warning at cmake/Dependencies.cmake:95 (message): 2025-09-07T06:10:43.4767970Z Not compiling with XPU. Could NOT find SYCL. Suppress this warning with 2025-09-07T06:10:43.4768290Z -DUSE_XPU=OFF. 2025-09-07T06:10:43.4768480Z Call Stack (most recent call first): 2025-09-07T06:10:43.4769060Z CMakeLists.txt:869 (include) 2025-09-07T06:10:43.4769190Z 2025-09-07T06:10:43.4769190Z 2025-09-07T06:10:43.4775030Z -- Building using own protobuf under third_party per request. 2025-09-07T06:10:43.4775280Z -- Use custom protobuf build. 2025-09-07T06:10:43.4788610Z CMake Deprecation Warning at third_party/protobuf/cmake/CMakeLists.txt:2 (cmake_minimum_required): 2025-09-07T06:10:43.4789100Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-09-07T06:10:43.4789350Z CMake. 2025-09-07T06:10:43.4789420Z 2025-09-07T06:10:43.4789550Z Update the VERSION argument value or use a ... suffix to tell 2025-09-07T06:10:43.4789900Z CMake that the project does not need compatibility with older versions. 2025-09-07T06:10:43.4790100Z 2025-09-07T06:10:43.4790100Z 2025-09-07T06:10:43.4806590Z -- 2025-09-07T06:10:43.4806770Z -- 3.13.0.0 2025-09-07T06:10:43.4812040Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-09-07T06:10:43.7165730Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-09-07T06:10:43.7172000Z -- Found Threads: TRUE 2025-09-07T06:10:43.7174300Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS 2025-09-07T06:10:44.0783130Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS - Success 2025-09-07T06:10:44.1056130Z -- Caffe2 protobuf include directory: $$ 2025-09-07T06:10:44.1067100Z -- Trying to find preferred BLAS backend of choice: MKL 2025-09-07T06:10:44.1102650Z CMake Warning at cmake/Dependencies.cmake:213 (message): 2025-09-07T06:10:44.1102940Z MKL could not be found. Defaulting to Eigen 2025-09-07T06:10:44.1103640Z Call Stack (most recent call first): 2025-09-07T06:10:44.1103830Z CMakeLists.txt:869 (include) 2025-09-07T06:10:44.1103960Z 2025-09-07T06:10:44.1103970Z 2025-09-07T06:10:44.1104340Z CMake Warning at cmake/Dependencies.cmake:279 (message): 2025-09-07T06:10:44.1104640Z Preferred BLAS (MKL) cannot be found, now searching for a general BLAS 2025-09-07T06:10:44.1104900Z library 2025-09-07T06:10:44.1105030Z Call Stack (most recent call first): 2025-09-07T06:10:44.1105200Z CMakeLists.txt:869 (include) 2025-09-07T06:10:44.1105310Z 2025-09-07T06:10:44.1105320Z 2025-09-07T06:10:44.1115810Z -- Checking for [blis] 2025-09-07T06:10:44.1137310Z -- Library blis: BLAS_blis_LIBRARY-NOTFOUND 2025-09-07T06:10:44.1137530Z -- Checking for [Accelerate] 2025-09-07T06:10:44.1150620Z -- Library Accelerate: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework 2025-09-07T06:10:44.1151030Z -- Looking for sgemm_ 2025-09-07T06:10:44.3462790Z -- Looking for sgemm_ - found 2025-09-07T06:10:44.3477940Z -- Performing Test BLAS_F2C_DOUBLE_WORKS 2025-09-07T06:10:44.6731360Z -- Performing Test BLAS_F2C_DOUBLE_WORKS - Success 2025-09-07T06:10:44.6731860Z -- Performing Test BLAS_F2C_FLOAT_WORKS 2025-09-07T06:10:44.9796740Z -- Performing Test BLAS_F2C_FLOAT_WORKS - Failed 2025-09-07T06:10:44.9797120Z -- This BLAS uses the F2C return conventions 2025-09-07T06:10:44.9797440Z -- Performing Test BLAS_USE_CBLAS_DOT 2025-09-07T06:10:45.2917430Z -- Performing Test BLAS_USE_CBLAS_DOT - Success 2025-09-07T06:10:45.2917820Z -- BLAS_USE_CBLAS_DOT: TRUE 2025-09-07T06:10:45.2918150Z -- BLAS_F2C: TRUE 2025-09-07T06:10:45.2919240Z -- Found a library with BLAS API (accelerate). Full path: (/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework) 2025-09-07T06:10:45.2921510Z -- Looking for sbgemm_ 2025-09-07T06:10:45.5289730Z -- Looking for sbgemm_ - not found 2025-09-07T06:10:45.5290170Z -- Using pocketfft in directory: /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/pocketfft/ 2025-09-07T06:10:45.5932160Z -- The ASM compiler identification is AppleClang 2025-09-07T06:10:45.5953880Z -- Found assembler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang 2025-09-07T06:10:45.6570050Z CMake Deprecation Warning at third_party/psimd/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-09-07T06:10:45.6570690Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-09-07T06:10:45.6570940Z CMake. 2025-09-07T06:10:45.6571020Z 2025-09-07T06:10:45.6571150Z Update the VERSION argument value or use a ... suffix to tell 2025-09-07T06:10:45.6571500Z CMake that the project does not need compatibility with older versions. 2025-09-07T06:10:45.6571700Z 2025-09-07T06:10:45.6571700Z 2025-09-07T06:10:45.6594190Z CMake Deprecation Warning at third_party/FP16/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-09-07T06:10:45.6594600Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-09-07T06:10:45.6594840Z CMake. 2025-09-07T06:10:45.6594910Z 2025-09-07T06:10:45.6595050Z Update the VERSION argument value or use a ... suffix to tell 2025-09-07T06:10:45.6595390Z CMake that the project does not need compatibility with older versions. 2025-09-07T06:10:45.6595590Z 2025-09-07T06:10:45.6595590Z 2025-09-07T06:10:45.6622600Z -- Brace yourself, we are building NNPACK 2025-09-07T06:10:45.6649020Z CMake Deprecation Warning at third_party/NNPACK/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-09-07T06:10:45.6649420Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-09-07T06:10:45.6649670Z CMake. 2025-09-07T06:10:45.6649730Z 2025-09-07T06:10:45.6649870Z Update the VERSION argument value or use a ... suffix to tell 2025-09-07T06:10:45.6650200Z CMake that the project does not need compatibility with older versions. 2025-09-07T06:10:45.6650400Z 2025-09-07T06:10:45.6650400Z 2025-09-07T06:10:45.7208260Z -- NNPACK backend is neon 2025-09-07T06:10:45.7818480Z -- Building for XNNPACK_TARGET_PROCESSOR: arm64 2025-09-07T06:10:45.7831100Z -- Generating microkernels.cmake 2025-09-07T06:10:53.0182170Z Duplicate microkernel definition: src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x8c8-gemm-goi-scalar.c and src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x8c8-gemm-goi-avx256vnni.c (1th function) 2025-09-07T06:10:53.0183150Z Duplicate microkernel definition: src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x8c8-gemm-goi-avx256vnni.c and src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x8c8-gemm-goi-avxvnni.c (1th function) 2025-09-07T06:10:53.0183760Z No microkernel found in src/reference/unary-elementwise.cc 2025-09-07T06:10:53.0184010Z No microkernel found in src/reference/packing.cc 2025-09-07T06:10:53.0184270Z No microkernel found in src/reference/binary-elementwise.cc 2025-09-07T06:10:53.0816800Z -- Using third party subdirectory Eigen. 2025-09-07T06:10:53.3168280Z -- Found Python: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin/python (found version "3.12.11") found components: Interpreter Development.Module NumPy 2025-09-07T06:10:53.3168820Z -- Using third_party/pybind11. 2025-09-07T06:10:53.3169170Z -- pybind11 include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-09-07T06:10:53.3951070Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-09-07T06:10:53.3951430Z -- Using third_party/opentelemetry-cpp. 2025-09-07T06:10:53.3952230Z -- opentelemetry api include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-09-07T06:10:53.4029880Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2025-09-07T06:10:53.5558460Z CMake Warning at cmake/Modules/FindOpenMP.cmake:335 (message): 2025-09-07T06:10:53.5558830Z Detecting C OpenMP compiler ABI info compiled with the following output: 2025-09-07T06:10:53.5559190Z 2025-09-07T06:10:53.5559340Z Change Dir: 2025-09-07T06:10:53.5559600Z '/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp' 2025-09-07T06:10:53.5559850Z 2025-09-07T06:10:53.5559860Z 2025-09-07T06:10:53.5559860Z 2025-09-07T06:10:53.5559920Z Run Build Command(s): 2025-09-07T06:10:53.5560180Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin/ninja -v 2025-09-07T06:10:53.5560420Z cmTC_703ab 2025-09-07T06:10:53.5560670Z 2025-09-07T06:10:53.5560840Z [1/2] /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang 2025-09-07T06:10:53.5561190Z -Xpreprocessor -fopenmp -v -std=gnu11 -arch arm64 -isysroot 2025-09-07T06:10:53.5561470Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-09-07T06:10:53.5561700Z -mmacosx-version-min=11.0 -MD -MT 2025-09-07T06:10:53.5561920Z CMakeFiles/cmTC_703ab.dir/OpenMPTryFlag.c.o -MF 2025-09-07T06:10:53.5562160Z CMakeFiles/cmTC_703ab.dir/OpenMPTryFlag.c.o.d -o 2025-09-07T06:10:53.5562400Z CMakeFiles/cmTC_703ab.dir/OpenMPTryFlag.c.o -c 2025-09-07T06:10:53.5562750Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-09-07T06:10:53.5563010Z 2025-09-07T06:10:53.5563010Z 2025-09-07T06:10:53.5563100Z FAILED: CMakeFiles/cmTC_703ab.dir/OpenMPTryFlag.c.o 2025-09-07T06:10:53.5563260Z 2025-09-07T06:10:53.5563420Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang 2025-09-07T06:10:53.5563760Z -Xpreprocessor -fopenmp -v -std=gnu11 -arch arm64 -isysroot 2025-09-07T06:10:53.5564040Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-09-07T06:10:53.5564260Z -mmacosx-version-min=11.0 -MD -MT 2025-09-07T06:10:53.5564470Z CMakeFiles/cmTC_703ab.dir/OpenMPTryFlag.c.o -MF 2025-09-07T06:10:53.5569570Z CMakeFiles/cmTC_703ab.dir/OpenMPTryFlag.c.o.d -o 2025-09-07T06:10:53.5569820Z CMakeFiles/cmTC_703ab.dir/OpenMPTryFlag.c.o -c 2025-09-07T06:10:53.5570160Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-09-07T06:10:53.5570410Z 2025-09-07T06:10:53.5570420Z 2025-09-07T06:10:53.5570490Z Apple clang version 15.0.0 (clang-1500.3.9.4) 2025-09-07T06:10:53.5570640Z 2025-09-07T06:10:53.5570700Z Target: arm64-apple-darwin23.4.0 2025-09-07T06:10:53.5570820Z 2025-09-07T06:10:53.5570870Z Thread model: posix 2025-09-07T06:10:53.5570960Z 2025-09-07T06:10:53.5571300Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2025-09-07T06:10:53.5571490Z 2025-09-07T06:10:53.5579260Z "/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_703ab.dir/OpenMPTryFlag.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_703ab.dir/OpenMPTryFlag.c.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -D __arm64__=1 -fopenmp -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -std=gnu11 -fdebug-compilation-dir=/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o - -x c /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-09-07T06:10:53.5587050Z 2025-09-07T06:10:53.5587160Z clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target 2025-09-07T06:10:53.5587400Z arm64-apple-darwin23.4.0 2025-09-07T06:10:53.5587500Z 2025-09-07T06:10:53.5587590Z ignoring nonexistent directory "/usr/local/include" 2025-09-07T06:10:53.5587750Z 2025-09-07T06:10:53.5587810Z ignoring nonexistent directory 2025-09-07T06:10:53.5588080Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2025-09-07T06:10:53.5588290Z 2025-09-07T06:10:53.5588350Z ignoring nonexistent directory 2025-09-07T06:10:53.5588610Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2025-09-07T06:10:53.5588830Z 2025-09-07T06:10:53.5588910Z #include "..." search starts here: 2025-09-07T06:10:53.5589030Z 2025-09-07T06:10:53.5589090Z #include <...> search starts here: 2025-09-07T06:10:53.5589210Z 2025-09-07T06:10:53.5589340Z /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include 2025-09-07T06:10:53.5589780Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-09-07T06:10:53.5590060Z /Library/Developer/CommandLineTools/usr/include 2025-09-07T06:10:53.5590440Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2025-09-07T06:10:53.5590730Z 2025-09-07T06:10:53.5590780Z End of search list. 2025-09-07T06:10:53.5590870Z 2025-09-07T06:10:53.5590880Z 2025-09-07T06:10:53.5591090Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c:2:10: 2025-09-07T06:10:53.5591430Z fatal error: 'omp.h' file not found 2025-09-07T06:10:53.5591550Z 2025-09-07T06:10:53.5591600Z #include 2025-09-07T06:10:53.5591680Z 2025-09-07T06:10:53.5591730Z ^~~~~~~ 2025-09-07T06:10:53.5591800Z 2025-09-07T06:10:53.5591850Z 1 error generated. 2025-09-07T06:10:53.5591940Z 2025-09-07T06:10:53.5592000Z ninja: build stopped: subcommand failed. 2025-09-07T06:10:53.5592140Z 2025-09-07T06:10:53.5592140Z 2025-09-07T06:10:53.5592150Z 2025-09-07T06:10:53.5592210Z Call Stack (most recent call first): 2025-09-07T06:10:53.5592430Z cmake/Modules/FindOpenMP.cmake:551 (_OPENMP_GET_FLAGS) 2025-09-07T06:10:53.5592660Z cmake/Dependencies.cmake:901 (include) 2025-09-07T06:10:53.5592850Z CMakeLists.txt:869 (include) 2025-09-07T06:10:53.5592950Z 2025-09-07T06:10:53.5592960Z 2025-09-07T06:10:53.8601570Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -v 2025-09-07T06:10:54.1347490Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2025-09-07T06:10:54.2876360Z CMake Warning at cmake/Modules/FindOpenMP.cmake:335 (message): 2025-09-07T06:10:54.2876750Z Detecting CXX OpenMP compiler ABI info compiled with the following output: 2025-09-07T06:10:54.2876980Z 2025-09-07T06:10:54.2877030Z Change Dir: 2025-09-07T06:10:54.2877300Z '/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp' 2025-09-07T06:10:54.2877520Z 2025-09-07T06:10:54.2877520Z 2025-09-07T06:10:54.2877690Z 2025-09-07T06:10:54.2877760Z Run Build Command(s): 2025-09-07T06:10:54.2878000Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin/ninja -v 2025-09-07T06:10:54.2878250Z cmTC_2dc2b 2025-09-07T06:10:54.2878320Z 2025-09-07T06:10:54.2878360Z [1/2] 2025-09-07T06:10:54.2878590Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang++ 2025-09-07T06:10:54.2878980Z -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Xpreprocessor -fopenmp -v 2025-09-07T06:10:54.2879260Z -std=gnu++17 -arch arm64 -isysroot 2025-09-07T06:10:54.2879490Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-09-07T06:10:54.2879720Z -mmacosx-version-min=11.0 -MD -MT 2025-09-07T06:10:54.2879940Z CMakeFiles/cmTC_2dc2b.dir/OpenMPTryFlag.cpp.o -MF 2025-09-07T06:10:54.2880200Z CMakeFiles/cmTC_2dc2b.dir/OpenMPTryFlag.cpp.o.d -o 2025-09-07T06:10:54.2880450Z CMakeFiles/cmTC_2dc2b.dir/OpenMPTryFlag.cpp.o -c 2025-09-07T06:10:54.2880810Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-09-07T06:10:54.2881080Z 2025-09-07T06:10:54.2881080Z 2025-09-07T06:10:54.2881190Z FAILED: CMakeFiles/cmTC_2dc2b.dir/OpenMPTryFlag.cpp.o 2025-09-07T06:10:54.2881350Z 2025-09-07T06:10:54.2881510Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang++ 2025-09-07T06:10:54.2881880Z -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Xpreprocessor -fopenmp -v 2025-09-07T06:10:54.2882170Z -std=gnu++17 -arch arm64 -isysroot 2025-09-07T06:10:54.2882380Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-09-07T06:10:54.2882610Z -mmacosx-version-min=11.0 -MD -MT 2025-09-07T06:10:54.2882820Z CMakeFiles/cmTC_2dc2b.dir/OpenMPTryFlag.cpp.o -MF 2025-09-07T06:10:54.2883070Z CMakeFiles/cmTC_2dc2b.dir/OpenMPTryFlag.cpp.o.d -o 2025-09-07T06:10:54.2883320Z CMakeFiles/cmTC_2dc2b.dir/OpenMPTryFlag.cpp.o -c 2025-09-07T06:10:54.2883920Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-09-07T06:10:54.2884200Z 2025-09-07T06:10:54.2884210Z 2025-09-07T06:10:54.2884280Z Apple clang version 15.0.0 (clang-1500.3.9.4) 2025-09-07T06:10:54.2884430Z 2025-09-07T06:10:54.2884500Z Target: arm64-apple-darwin23.4.0 2025-09-07T06:10:54.2884620Z 2025-09-07T06:10:54.2884670Z Thread model: posix 2025-09-07T06:10:54.2884770Z 2025-09-07T06:10:54.2884880Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2025-09-07T06:10:54.2885060Z 2025-09-07T06:10:54.2893330Z "/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_2dc2b.dir/OpenMPTryFlag.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_2dc2b.dir/OpenMPTryFlag.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -D USE_PTHREADPOOL -D __arm64__=1 -fopenmp -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -std=gnu++17 -fdeprecated-macro -fdebug-compilation-dir=/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp -ferror-limit 19 -fvisibility-inlines-hidden -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o - -x c++ /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-09-07T06:10:54.2901660Z 2025-09-07T06:10:54.2901760Z clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target 2025-09-07T06:10:54.2902000Z arm64-apple-darwin23.4.0 2025-09-07T06:10:54.2902100Z 2025-09-07T06:10:54.2902190Z ignoring nonexistent directory "/usr/local/include" 2025-09-07T06:10:54.2902340Z 2025-09-07T06:10:54.2902530Z ignoring nonexistent directory 2025-09-07T06:10:54.2902790Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2025-09-07T06:10:54.2903000Z 2025-09-07T06:10:54.2903060Z ignoring nonexistent directory 2025-09-07T06:10:54.2903320Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2025-09-07T06:10:54.2903540Z 2025-09-07T06:10:54.2903600Z #include "..." search starts here: 2025-09-07T06:10:54.2903720Z 2025-09-07T06:10:54.2903770Z #include <...> search starts here: 2025-09-07T06:10:54.2903890Z 2025-09-07T06:10:54.2904030Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 2025-09-07T06:10:54.2904360Z /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include 2025-09-07T06:10:54.2904670Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-09-07T06:10:54.2904950Z /Library/Developer/CommandLineTools/usr/include 2025-09-07T06:10:54.2905310Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2025-09-07T06:10:54.2905600Z 2025-09-07T06:10:54.2905650Z End of search list. 2025-09-07T06:10:54.2905750Z 2025-09-07T06:10:54.2905750Z 2025-09-07T06:10:54.2905970Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp:2:10: 2025-09-07T06:10:54.2906300Z fatal error: 'omp.h' file not found 2025-09-07T06:10:54.2906430Z 2025-09-07T06:10:54.2906470Z #include 2025-09-07T06:10:54.2906550Z 2025-09-07T06:10:54.2906600Z ^~~~~~~ 2025-09-07T06:10:54.2906670Z 2025-09-07T06:10:54.2906720Z 1 error generated. 2025-09-07T06:10:54.2906800Z 2025-09-07T06:10:54.2906880Z ninja: build stopped: subcommand failed. 2025-09-07T06:10:54.2907010Z 2025-09-07T06:10:54.2907010Z 2025-09-07T06:10:54.2907010Z 2025-09-07T06:10:54.2907070Z Call Stack (most recent call first): 2025-09-07T06:10:54.2907290Z cmake/Modules/FindOpenMP.cmake:551 (_OPENMP_GET_FLAGS) 2025-09-07T06:10:54.2907520Z cmake/Dependencies.cmake:901 (include) 2025-09-07T06:10:54.2907710Z CMakeLists.txt:869 (include) 2025-09-07T06:10:54.2907810Z 2025-09-07T06:10:54.2907890Z 2025-09-07T06:10:54.5951760Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -v 2025-09-07T06:10:55.0457230Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-09-07T06:10:55.2882290Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-09-07T06:10:55.2883640Z -- Found OpenMP: TRUE 2025-09-07T06:10:55.2884380Z -- Adding OpenMP CXX_FLAGS: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-09-07T06:10:55.2884790Z -- Will link against OpenMP libraries: /opt/homebrew/opt/libomp/lib/libomp.dylib 2025-09-07T06:10:55.2886160Z -- Found nvtx3: /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/NVTX/c/include 2025-09-07T06:10:55.4071790Z -- Found Python3: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin/python (found version "3.12.11") found components: Interpreter 2025-09-07T06:10:55.4074930Z -- ONNX_PROTOC_EXECUTABLE: $ 2025-09-07T06:10:55.4075200Z -- Protobuf_VERSION: Protobuf_VERSION_NOTFOUND 2025-09-07T06:10:55.4076550Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-09-07T06:10:55.4078200Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-09-07T06:10:55.4079530Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-09-07T06:10:55.5838890Z -- 2025-09-07T06:10:55.5839070Z -- ******** Summary ******** 2025-09-07T06:10:55.5839260Z -- CMake version : 3.27.9 2025-09-07T06:10:55.5839670Z -- CMake command : /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/lib/python3.12/site-packages/cmake/data/bin/cmake 2025-09-07T06:10:55.5840360Z -- System : Darwin 2025-09-07T06:10:55.5840710Z -- C++ compiler : /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang++ 2025-09-07T06:10:55.5841070Z -- C++ compiler version : 15.0.0.15000309 2025-09-07T06:10:55.5841390Z -- CXX flags : -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Wnon-virtual-dtor 2025-09-07T06:10:55.5841700Z -- Build type : Release 2025-09-07T06:10:55.5841960Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 2025-09-07T06:10:55.5842370Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/lib/python3.12/site-packages 2025-09-07T06:10:55.5842800Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2025-09-07T06:10:55.5843390Z -- CMAKE_MODULE_PATH : /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/Modules;/Users/ec2-user/runner/_work/pytorch/pytorch/cmake/public/../Modules_CUDA_fix 2025-09-07T06:10:55.5843860Z -- 2025-09-07T06:10:55.5844000Z -- ONNX version : 1.18.0 2025-09-07T06:10:55.5844230Z -- ONNX NAMESPACE : onnx_torch 2025-09-07T06:10:55.5844450Z -- ONNX_USE_LITE_PROTO : OFF 2025-09-07T06:10:55.5844650Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-09-07T06:10:55.5844860Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-09-07T06:10:55.5845070Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-09-07T06:10:55.5845270Z -- ONNX_WERROR : OFF 2025-09-07T06:10:55.5845470Z -- ONNX_BUILD_TESTS : OFF 2025-09-07T06:10:55.5845670Z -- BUILD_SHARED_LIBS : OFF 2025-09-07T06:10:55.5845840Z -- 2025-09-07T06:10:55.5846060Z -- Protobuf compiler : $ 2025-09-07T06:10:55.5846330Z -- Protobuf includes : 2025-09-07T06:10:55.5846530Z -- Protobuf libraries : 2025-09-07T06:10:55.5846730Z -- ONNX_BUILD_PYTHON : OFF 2025-09-07T06:10:55.5847080Z CMake Warning at cmake/Dependencies.cmake:1418 (message): 2025-09-07T06:10:55.5847400Z Not compiling with MAGMA. Suppress this warning with -DUSE_MAGMA=OFF. 2025-09-07T06:10:55.5847660Z Call Stack (most recent call first): 2025-09-07T06:10:55.5847850Z CMakeLists.txt:869 (include) 2025-09-07T06:10:55.5847970Z 2025-09-07T06:10:55.5847970Z 2025-09-07T06:10:55.5848100Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-09-07T06:10:55.5848360Z -- Adding -DNDEBUG to compile flags 2025-09-07T06:10:55.5863380Z -- No OMAP3 processor on this machine. 2025-09-07T06:10:55.5863620Z -- No OMAP4 processor on this machine. 2025-09-07T06:10:55.5863840Z -- Neon found with compiler flag : -D__NEON__ 2025-09-07T06:10:55.5879040Z -- Looking for cheev_ 2025-09-07T06:10:55.8230210Z -- Looking for cheev_ - found 2025-09-07T06:10:55.8230460Z -- Found a library with LAPACK API (accelerate). 2025-09-07T06:10:55.8230960Z -- MIOpen not found. Compiling without MIOpen support 2025-09-07T06:10:55.8231200Z disabling CUDA because NOT USE_CUDA is set 2025-09-07T06:10:55.8231430Z disabling ROCM because NOT USE_ROCM is set 2025-09-07T06:10:55.8231640Z disabling MKLDNN because USE_MKLDNN is not set 2025-09-07T06:10:55.8897060Z -- Looking for mmap 2025-09-07T06:10:56.1325010Z -- Looking for mmap - found 2025-09-07T06:10:56.1325220Z -- Looking for shm_open 2025-09-07T06:10:56.4431170Z -- Looking for shm_open - found 2025-09-07T06:10:56.4431390Z -- Looking for shm_unlink 2025-09-07T06:10:56.6742580Z -- Looking for shm_unlink - found 2025-09-07T06:10:56.6742810Z -- Looking for malloc_usable_size 2025-09-07T06:10:56.9033900Z -- Looking for malloc_usable_size - not found 2025-09-07T06:10:56.9116060Z -- {fmt} version: 11.2.0 2025-09-07T06:10:56.9116320Z -- Build type: Release 2025-09-07T06:10:56.9129210Z -- Performing Test HAS_NULLPTR_WARNING 2025-09-07T06:10:57.1572200Z -- Performing Test HAS_NULLPTR_WARNING - Success 2025-09-07T06:10:57.1631580Z -- Using CPU-only version of Kineto 2025-09-07T06:10:57.1631820Z -- Configuring Kineto dependency: 2025-09-07T06:10:57.1632170Z -- KINETO_SOURCE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-09-07T06:10:57.1632500Z -- KINETO_BUILD_TESTS = OFF 2025-09-07T06:10:57.1632670Z -- KINETO_LIBRARY_TYPE = static 2025-09-07T06:10:57.1657220Z CMake Warning (dev) at third_party/kineto/libkineto/CMakeLists.txt:15 (find_package): 2025-09-07T06:10:57.1657610Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-09-07T06:10:57.1657960Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-09-07T06:10:57.1658300Z the cmake_policy command to set the policy and suppress this warning. 2025-09-07T06:10:57.1658500Z 2025-09-07T06:10:57.1658630Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-09-07T06:10:57.1658830Z 2025-09-07T06:10:57.1841790Z -- Found PythonInterp: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin/python (found version "3.12.11") 2025-09-07T06:10:57.1842950Z -- CUDA_SOURCE_DIR = 2025-09-07T06:10:57.1843270Z -- ROCM_SOURCE_DIR = 2025-09-07T06:10:57.2022960Z -- CUPTI unavailable or disabled - not building GPU profilers 2025-09-07T06:10:57.2364700Z -- Kineto: FMT_SOURCE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt 2025-09-07T06:10:57.2365180Z -- Kineto: FMT_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt/include 2025-09-07T06:10:57.2365520Z -- CUPTI_INCLUDE_DIR = /extras/CUPTI/include 2025-09-07T06:10:57.2365740Z -- ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-09-07T06:10:57.2366150Z -- DYNOLOG_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-09-07T06:10:57.2366780Z -- IPCFABRIC_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-09-07T06:10:57.2380060Z -- Configured Kineto (CPU) 2025-09-07T06:10:57.2391390Z -- Running on macOS with Apple silicon 2025-09-07T06:10:57.2407180Z -- Performing Test HAS_WERROR_RETURN_TYPE 2025-09-07T06:10:57.4596290Z -- Performing Test HAS_WERROR_RETURN_TYPE - Success 2025-09-07T06:10:57.4600830Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR 2025-09-07T06:10:57.6929310Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR - Success 2025-09-07T06:10:57.6933790Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT 2025-09-07T06:10:57.9092420Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT - Success 2025-09-07T06:10:57.9096990Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT 2025-09-07T06:10:58.1254210Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT - Success 2025-09-07T06:10:58.1258630Z -- Performing Test HAS_WERROR_BOOL_OPERATION 2025-09-07T06:10:58.3437520Z -- Performing Test HAS_WERROR_BOOL_OPERATION - Success 2025-09-07T06:10:58.3441910Z -- Performing Test HAS_WNARROWING 2025-09-07T06:10:58.5620180Z -- Performing Test HAS_WNARROWING - Success 2025-09-07T06:10:58.5624720Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS 2025-09-07T06:10:58.8121940Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS - Success 2025-09-07T06:10:58.8126350Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS 2025-09-07T06:10:59.0259710Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS - Success 2025-09-07T06:10:59.0264140Z -- Performing Test HAS_WNO_UNUSED_PARAMETER 2025-09-07T06:10:59.2920620Z -- Performing Test HAS_WNO_UNUSED_PARAMETER - Success 2025-09-07T06:10:59.2925150Z -- Performing Test HAS_WNO_STRICT_OVERFLOW 2025-09-07T06:10:59.5108620Z -- Performing Test HAS_WNO_STRICT_OVERFLOW - Success 2025-09-07T06:10:59.5113250Z -- Performing Test HAS_WNO_STRICT_ALIASING 2025-09-07T06:10:59.7450400Z -- Performing Test HAS_WNO_STRICT_ALIASING - Success 2025-09-07T06:10:59.7455020Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-09-07T06:10:59.9778020Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-09-07T06:10:59.9782500Z -- Performing Test HAS_WVLA_EXTENSION 2025-09-07T06:11:00.1958150Z -- Performing Test HAS_WVLA_EXTENSION - Success 2025-09-07T06:11:00.1962360Z -- Performing Test HAS_WSUGGEST_OVERRIDE 2025-09-07T06:11:00.4230220Z -- Performing Test HAS_WSUGGEST_OVERRIDE - Success 2025-09-07T06:11:00.4234670Z -- Performing Test HAS_WNEWLINE_EOF 2025-09-07T06:11:00.6416020Z -- Performing Test HAS_WNEWLINE_EOF - Success 2025-09-07T06:11:00.6420640Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE 2025-09-07T06:11:00.8619520Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE - Success 2025-09-07T06:11:00.8624050Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE 2025-09-07T06:11:01.0914790Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE - Success 2025-09-07T06:11:01.0919390Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST 2025-09-07T06:11:01.3325330Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST - Success 2025-09-07T06:11:01.3329910Z -- Performing Test HAS_WCONSTANT_CONVERSION 2025-09-07T06:11:01.5486080Z -- Performing Test HAS_WCONSTANT_CONVERSION - Success 2025-09-07T06:11:01.5490580Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE 2025-09-07T06:11:01.7659180Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE - Failed 2025-09-07T06:11:01.7663560Z -- Performing Test HAS_QUNUSED_ARGUMENTS 2025-09-07T06:11:02.0487230Z -- Performing Test HAS_QUNUSED_ARGUMENTS - Success 2025-09-07T06:11:02.0491760Z -- Performing Test HAS_FALIGNED_NEW 2025-09-07T06:11:02.2649460Z -- Performing Test HAS_FALIGNED_NEW - Success 2025-09-07T06:11:02.2653910Z -- Performing Test HAS_WERROR 2025-09-07T06:11:02.4834910Z -- Performing Test HAS_WERROR - Success 2025-09-07T06:11:02.4839410Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED 2025-09-07T06:11:02.6368510Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED - Failed 2025-09-07T06:11:02.6373010Z -- Performing Test HAS_FSTANDALONE_DEBUG 2025-09-07T06:11:02.8538070Z -- Performing Test HAS_FSTANDALONE_DEBUG - Success 2025-09-07T06:11:02.8542640Z -- Performing Test HAS_FNO_MATH_ERRNO 2025-09-07T06:11:03.0715370Z -- Performing Test HAS_FNO_MATH_ERRNO - Success 2025-09-07T06:11:03.0719660Z -- Performing Test HAS_FNO_TRAPPING_MATH 2025-09-07T06:11:03.2898480Z -- Performing Test HAS_FNO_TRAPPING_MATH - Success 2025-09-07T06:11:03.2902860Z -- Performing Test HAS_WERROR_FORMAT 2025-09-07T06:11:03.5178990Z -- Performing Test HAS_WERROR_FORMAT - Success 2025-09-07T06:11:03.5184080Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW 2025-09-07T06:11:03.7372990Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW - Success 2025-09-07T06:11:03.7377520Z -- Performing Test HAS_WNO_MISSING_BRACES 2025-09-07T06:11:03.9561710Z -- Performing Test HAS_WNO_MISSING_BRACES - Success 2025-09-07T06:11:03.9645700Z -- don't use NUMA 2025-09-07T06:11:03.9657070Z -- Looking for backtrace 2025-09-07T06:11:04.1915420Z -- Looking for backtrace - found 2025-09-07T06:11:04.1915710Z -- backtrace facility detected in default set of libraries 2025-09-07T06:11:04.1917460Z -- Found Backtrace: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-09-07T06:11:05.8907100Z -- headers outputs: 2025-09-07T06:11:06.5655420Z -- sources outputs: 2025-09-07T06:11:07.0961010Z -- declarations_yaml outputs: 2025-09-07T06:11:07.1769900Z -- Using ATen parallel backend: OMP 2025-09-07T06:11:07.1781010Z disabling CUDA because USE_CUDA is set false 2025-09-07T06:11:07.2606760Z -- Found OpenSSL: /opt/homebrew/lib/libcrypto.dylib (found version "3.5.2") 2025-09-07T06:11:07.2631280Z -- Looking for sys/types.h 2025-09-07T06:11:07.5630930Z -- Looking for sys/types.h - found 2025-09-07T06:11:07.5631330Z -- Looking for stdint.h 2025-09-07T06:11:07.7833700Z -- Looking for stdint.h - found 2025-09-07T06:11:07.7834040Z -- Looking for stddef.h 2025-09-07T06:11:08.0042220Z -- Looking for stddef.h - found 2025-09-07T06:11:08.0047060Z -- Check size of long double 2025-09-07T06:11:08.2304890Z -- Check size of long double - done 2025-09-07T06:11:08.2305530Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-09-07T06:11:08.4144850Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-09-07T06:11:08.4160460Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include (found version "5.0") 2025-09-07T06:11:08.4162820Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include (found version "5.0") 2025-09-07T06:11:08.4164310Z -- Found OpenMP: TRUE (found version "5.0") 2025-09-07T06:11:08.4165420Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-09-07T06:11:08.6643770Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Failed 2025-09-07T06:11:08.6644070Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-09-07T06:11:08.8878170Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-09-07T06:11:08.8878470Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-09-07T06:11:09.0691170Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-09-07T06:11:09.0691690Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-09-07T06:11:09.2940670Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Success 2025-09-07T06:11:09.2941000Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-09-07T06:11:09.4563890Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-09-07T06:11:09.4739090Z Target system: Darwin-23.4.0 2025-09-07T06:11:09.4739280Z -- Configuring build for SLEEF-v3.8.0 2025-09-07T06:11:09.4739500Z Target processor: arm64 2025-09-07T06:11:09.4739670Z Host system: Darwin-23.4.0 2025-09-07T06:11:09.4739840Z Host processor: arm64 2025-09-07T06:11:09.4740190Z Detected C compiler: AppleClang @ /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang 2025-09-07T06:11:09.4740540Z CMake: 3.27.9 2025-09-07T06:11:09.4740780Z Make program: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin/ninja 2025-09-07T06:11:09.4741350Z -- Using option `-Wall -Wno-unused-function -Wno-attributes -Wno-unused-result -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef 2025-09-07T06:11:09.4741820Z -- Building shared libs : OFF 2025-09-07T06:11:09.4742010Z -- Building static test bins: OFF 2025-09-07T06:11:09.4742190Z -- MPFR : LIB_MPFR-NOTFOUND 2025-09-07T06:11:09.4742550Z -- GMP : LIBGMP-NOTFOUND 2025-09-07T06:11:09.4742700Z -- RT : 2025-09-07T06:11:09.4742830Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-09-07T06:11:09.4742980Z -- OPENSSL : 3.5.2 2025-09-07T06:11:09.4743120Z -- SDE : SDE_COMMAND-NOTFOUND 2025-09-07T06:11:09.4743300Z -- COMPILER_SUPPORTS_OPENMP : 2025-09-07T06:11:09.4793590Z CMake Warning at cmake/Metal.cmake:59 (message): 2025-09-07T06:11:09.4793920Z Machine can not compile metal shaders, fails with xcrun: error: unable to 2025-09-07T06:11:09.4794220Z find utility "metal", not a developer tool or in PATH 2025-09-07T06:11:09.4794380Z 2025-09-07T06:11:09.4794450Z Call Stack (most recent call first): 2025-09-07T06:11:09.4794650Z aten/src/ATen/CMakeLists.txt:758 (include) 2025-09-07T06:11:09.4794790Z 2025-09-07T06:11:09.4794790Z 2025-09-07T06:11:09.4838020Z -- _CMAKE_OSX_SDKS: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX13.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-09-07T06:11:09.4839060Z -- Toolchain using default OSX SDK: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk 2025-09-07T06:11:09.4840010Z -- CMAKE_FRAMEWORK_PATH: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/System/Library/Frameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/System/Library/PrivateFrameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/Developer/Library/Frameworks 2025-09-07T06:11:10.4127460Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-09-07T06:11:10.4127900Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-09-07T06:11:10.4128490Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-09-07T06:11:10.4129300Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-09-07T06:11:10.6088950Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-09-07T06:11:10.8291270Z -- Performing Test HAS_WMISSING_PROTOTYPES - Success 2025-09-07T06:11:10.8296310Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-09-07T06:11:11.0721870Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Success 2025-09-07T06:11:11.1636950Z -- The OBJC compiler identification is AppleClang 15.0.0.15000309 2025-09-07T06:11:11.2261880Z -- The OBJCXX compiler identification is AppleClang 15.0.0.15000309 2025-09-07T06:11:11.2872760Z -- Detecting OBJC compiler ABI info 2025-09-07T06:11:11.5764920Z -- Detecting OBJC compiler ABI info - done 2025-09-07T06:11:11.5805270Z -- Check for working OBJC compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang - skipped 2025-09-07T06:11:11.6409580Z -- Detecting OBJCXX compiler ABI info 2025-09-07T06:11:11.9166290Z -- Detecting OBJCXX compiler ABI info - done 2025-09-07T06:11:11.9208660Z -- Check for working OBJCXX compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang++ - skipped 2025-09-07T06:11:11.9866900Z -- CMAKE_FRAMEWORK_PATH: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/System/Library/Frameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/System/Library/PrivateFrameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/Developer/Library/Frameworks 2025-09-07T06:11:11.9929080Z CMake Warning at CMakeLists.txt:1292 (message): 2025-09-07T06:11:11.9929420Z Generated cmake files are only fully tested if one builds with system glog, 2025-09-07T06:11:11.9929790Z gflags, and protobuf. Other settings may generate files that are not well 2025-09-07T06:11:11.9930050Z tested. 2025-09-07T06:11:11.9930120Z 2025-09-07T06:11:11.9930120Z 2025-09-07T06:11:11.9957230Z -- 2025-09-07T06:11:11.9957500Z -- ******** Summary ******** 2025-09-07T06:11:11.9957680Z -- General: 2025-09-07T06:11:11.9957830Z -- CMake version : 3.27.9 2025-09-07T06:11:11.9958250Z -- CMake command : /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/lib/python3.12/site-packages/cmake/data/bin/cmake 2025-09-07T06:11:11.9958830Z -- System : Darwin 2025-09-07T06:11:11.9959160Z -- C++ compiler : /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang++ 2025-09-07T06:11:11.9959490Z -- C++ compiler id : AppleClang 2025-09-07T06:11:11.9959700Z -- C++ compiler version : 15.0.0.15000309 2025-09-07T06:11:11.9959900Z -- Using ccache if found : ON 2025-09-07T06:11:11.9960130Z -- Found ccache : CCACHE_PROGRAM-NOTFOUND 2025-09-07T06:11:11.9962570Z -- CXX flags : -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOCUPTI -DLIBKINETO_NOROCTRACER -DLIBKINETO_NOXPUPTI=ON -DUSE_PYTORCH_QNNPACK -DAT_BUILD_ARM_VEC256_WITH_SLEEF -DUSE_XNNPACK -DUSE_PYTORCH_METAL -DSYMBOLICATE_MOBILE_DEBUG_HANDLE -O2 -fPIC -DC10_NODEPRECATED -Wall -Wextra -Werror=return-type -Werror=non-virtual-dtor -Werror=braced-scalar-init -Werror=range-loop-construct -Werror=bool-operation -Wnarrowing -Wno-missing-field-initializers -Wno-unknown-pragmas -Wno-unused-parameter -Wno-strict-overflow -Wno-strict-aliasing -Wvla-extension -Wsuggest-override -Wnewline-eof -Winconsistent-missing-override -Winconsistent-missing-destructor-override -Wno-pass-failed -Wno-error=old-style-cast -Wconstant-conversion -Qunused-arguments -faligned-new -Werror -fno-math-errno -fno-trapping-math -Werror=format -DUSE_MPS -Wno-missing-braces 2025-09-07T06:11:11.9965280Z -- Shared LD flags : -rdynamic -weak_framework Foundation -weak_framework MetalPerformanceShaders -weak_framework MetalPerformanceShadersGraph -weak_framework Metal -weak_framework IOKit 2025-09-07T06:11:11.9965840Z -- Static LD flags : 2025-09-07T06:11:11.9966000Z -- Module LD flags : 2025-09-07T06:11:11.9966170Z -- Build type : Release 2025-09-07T06:11:11.9966950Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;ONNX_NAMESPACE=onnx_torch;HAVE_MMAP=1;_FILE_OFFSET_BITS=64;HAVE_SHM_OPEN=1;HAVE_SHM_UNLINK=1;USE_EXTERNAL_MZCRC;MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS;AT_BUILD_ARM_VEC256_WITH_SLEEF 2025-09-07T06:11:11.9967720Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/lib/python3.12/site-packages 2025-09-07T06:11:11.9968150Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2025-09-07T06:11:11.9968430Z -- USE_GOLD_LINKER : OFF 2025-09-07T06:11:11.9968590Z -- 2025-09-07T06:11:11.9968710Z -- TORCH_VERSION : 2.9.0 2025-09-07T06:11:11.9968900Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-09-07T06:11:11.9969080Z -- BUILD_BINARY : OFF 2025-09-07T06:11:11.9969250Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-09-07T06:11:11.9969420Z -- Link local protobuf : ON 2025-09-07T06:11:11.9969580Z -- BUILD_PYTHON : True 2025-09-07T06:11:11.9969760Z -- Python version : 3.12.11 2025-09-07T06:11:11.9970060Z -- Python executable : /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/bin/python 2025-09-07T06:11:11.9970380Z -- Python library : 2025-09-07T06:11:11.9970730Z -- Python includes : /opt/homebrew/opt/python@3.12/Frameworks/Python.framework/Versions/3.12/include/python3.12 2025-09-07T06:11:11.9971230Z -- Python site-package : /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/lib/python3.12/site-packages 2025-09-07T06:11:11.9971710Z -- BUILD_SHARED_LIBS : ON 2025-09-07T06:11:11.9971890Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-09-07T06:11:11.9972090Z -- BUILD_TEST : False 2025-09-07T06:11:11.9972260Z -- BUILD_JNI : OFF 2025-09-07T06:11:11.9972420Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-09-07T06:11:11.9972580Z -- BUILD_LITE_INTERPRETER: OFF 2025-09-07T06:11:11.9972750Z -- CROSS_COMPILING_MACOSX : 2025-09-07T06:11:11.9972910Z -- INTERN_BUILD_MOBILE : 2025-09-07T06:11:11.9973060Z -- TRACING_BASED : OFF 2025-09-07T06:11:11.9973220Z -- USE_BLAS : 1 2025-09-07T06:11:11.9973490Z -- BLAS : accelerate 2025-09-07T06:11:11.9973670Z -- BLAS_HAS_SBGEMM : 2025-09-07T06:11:11.9973830Z -- USE_LAPACK : 1 2025-09-07T06:11:11.9973980Z -- LAPACK : accelerate 2025-09-07T06:11:11.9974150Z -- USE_ASAN : OFF 2025-09-07T06:11:11.9974310Z -- USE_TSAN : OFF 2025-09-07T06:11:11.9974460Z -- USE_CPP_CODE_COVERAGE : OFF 2025-09-07T06:11:11.9974620Z -- USE_CUDA : OFF 2025-09-07T06:11:11.9974770Z -- USE_XPU : OFF 2025-09-07T06:11:11.9974920Z -- USE_ROCM : OFF 2025-09-07T06:11:11.9975080Z -- BUILD_NVFUSER : 2025-09-07T06:11:11.9975240Z -- USE_EIGEN_FOR_BLAS : ON 2025-09-07T06:11:11.9975400Z -- USE_EIGEN_FOR_SPARSE : OFF 2025-09-07T06:11:11.9975560Z -- USE_FBGEMM : OFF 2025-09-07T06:11:11.9975720Z -- USE_KINETO : ON 2025-09-07T06:11:11.9975870Z -- USE_GFLAGS : OFF 2025-09-07T06:11:11.9976030Z -- USE_GLOG : OFF 2025-09-07T06:11:11.9976220Z -- USE_LITE_PROTO : OFF 2025-09-07T06:11:11.9976380Z -- USE_PYTORCH_METAL : 1 2025-09-07T06:11:11.9976550Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-09-07T06:11:11.9976730Z -- USE_MPS : ON 2025-09-07T06:11:11.9976880Z -- CAN_COMPILE_METAL : NO 2025-09-07T06:11:11.9977030Z -- USE_MKL : OFF 2025-09-07T06:11:11.9977180Z -- USE_MKLDNN : OFF 2025-09-07T06:11:11.9977340Z -- USE_KLEIDIAI : ON 2025-09-07T06:11:11.9977540Z -- USE_UCC : OFF 2025-09-07T06:11:11.9977690Z -- USE_ITT : OFF 2025-09-07T06:11:11.9977850Z -- USE_XCCL : OFF 2025-09-07T06:11:11.9977990Z -- USE_NCCL : OFF 2025-09-07T06:11:11.9978150Z -- Found NVSHMEM : 2025-09-07T06:11:11.9978310Z -- USE_NNPACK : ON 2025-09-07T06:11:11.9978460Z -- USE_NUMPY : ON 2025-09-07T06:11:11.9978760Z -- USE_OBSERVERS : ON 2025-09-07T06:11:11.9978930Z -- USE_OPENCL : OFF 2025-09-07T06:11:11.9979090Z -- USE_OPENMP : 1 2025-09-07T06:11:11.9979240Z -- USE_MIMALLOC : OFF 2025-09-07T06:11:11.9979400Z -- USE_VULKAN : OFF 2025-09-07T06:11:11.9979560Z -- USE_PROF : OFF 2025-09-07T06:11:11.9979710Z -- USE_PYTORCH_QNNPACK : ON 2025-09-07T06:11:11.9979870Z -- USE_XNNPACK : ON 2025-09-07T06:11:11.9980030Z -- USE_DISTRIBUTED : 0 2025-09-07T06:11:11.9980180Z -- USE_MPI : OFF 2025-09-07T06:11:11.9980340Z -- USE_GLOO : OFF 2025-09-07T06:11:11.9980500Z -- USE_GLOO_WITH_OPENSSL : OFF 2025-09-07T06:11:11.9980670Z -- USE_GLOO_IBVERBS : OFF 2025-09-07T06:11:11.9980830Z -- USE_TENSORPIPE : OFF 2025-09-07T06:11:11.9981000Z -- Public Dependencies : 2025-09-07T06:11:11.9981500Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;pytorch_qnnpack;nnpack;XNNPACK;microkernels-prod;fp16;caffe2::openmp;kleidiai;fmt::fmt-header-only;kineto 2025-09-07T06:11:11.9981990Z -- Public CUDA Deps. : 2025-09-07T06:11:11.9982150Z -- Private CUDA Deps. : 2025-09-07T06:11:11.9982310Z -- USE_COREML_DELEGATE : OFF 2025-09-07T06:11:11.9982480Z -- BUILD_LAZY_TS_BACKEND : ON 2025-09-07T06:11:11.9982640Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-09-07T06:11:12.0010830Z -- Configuring done (34.8s) 2025-09-07T06:11:12.9203990Z -- Generating done (0.7s) 2025-09-07T06:11:13.0544190Z CMake Warning: 2025-09-07T06:11:13.0544440Z Manually-specified variables were not used by the project: 2025-09-07T06:11:13.0544630Z 2025-09-07T06:11:13.0544690Z BUILD_ENVIRONMENT 2025-09-07T06:11:13.0544780Z 2025-09-07T06:11:13.0544790Z 2025-09-07T06:11:13.0573910Z -- Build files have been written to: /Users/ec2-user/runner/_work/pytorch/pytorch/build 2025-09-07T06:11:13.0760340Z cmake --build . --target install --config Release 2025-09-07T06:11:15.1688910Z [1/4] Generating ATen declarations_yaml 2025-09-07T06:11:17.4998540Z [2/4] Generating ATen headers 2025-09-07T06:11:18.5274930Z [3/4] Generating ATen sources 2025-09-07T06:11:18.7306040Z [1/5254] Generating /Users/ec2-user/runner/_work/pytorch/pytorch/torch/utils/data/datapipes/datapipe.pyi 2025-09-07T06:11:18.7456130Z [2/5254] Building C object sleef/src/common/CMakeFiles/addSuffix.dir/addSuffix.c.o 2025-09-07T06:11:18.7581620Z [3/5254] Building C object sleef/src/libm/CMakeFiles/mkrename.dir/mkrename.c.o 2025-09-07T06:11:18.7604680Z [4/5254] Building C object sleef/src/common/CMakeFiles/arraymap.dir/arraymap.c.o 2025-09-07T06:11:18.7707490Z [5/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_4x4x32_neon_i8mm.c.o 2025-09-07T06:11:18.7917120Z [6/5254] Building C object sleef/src/common/CMakeFiles/common.dir/common.c.o 2025-09-07T06:11:18.8471320Z [7/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_8x4x32_neon_i8mm.c.o 2025-09-07T06:11:18.8571990Z [8/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.c.o 2025-09-07T06:11:18.8581970Z [9/5254] Linking C executable sleef/bin/addSuffix 2025-09-07T06:11:18.8745910Z [10/5254] Linking C executable sleef/bin/mkrename 2025-09-07T06:11:18.9159470Z [11/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_4x8x32_neon_i8mm.c.o 2025-09-07T06:11:18.9233060Z [12/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.c.o 2025-09-07T06:11:18.9241480Z [13/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_8x8x32_neon_i8mm.c.o 2025-09-07T06:11:18.9247450Z [14/5254] Generating sleeflibm_SVENOFMA.h.tmp 2025-09-07T06:11:18.9291060Z [15/5254] Generating include/renamedspscalar.h 2025-09-07T06:11:18.9542910Z [16/5254] Regenerating version file... 2025-09-07T06:11:18.9711350Z [17/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_8x4x32_neon_i8mm.c.o 2025-09-07T06:11:18.9794650Z [18/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.c.o 2025-09-07T06:11:18.9875400Z [19/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.c.o 2025-09-07T06:11:19.0650410Z [20/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.c.o 2025-09-07T06:11:19.0666780Z [21/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.c.o 2025-09-07T06:11:19.0689390Z [22/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.c.o 2025-09-07T06:11:19.0810340Z [23/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.c.o 2025-09-07T06:11:19.1051540Z [24/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme.c.o 2025-09-07T06:11:19.1307140Z [25/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme.c.o 2025-09-07T06:11:19.1400010Z [26/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.c.o 2025-09-07T06:11:19.1660970Z [27/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.c.o 2025-09-07T06:11:19.2114960Z [28/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.c.o 2025-09-07T06:11:19.2323870Z [29/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.c.o 2025-09-07T06:11:19.2465940Z [30/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.c.o 2025-09-07T06:11:19.2507130Z [31/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.c.o 2025-09-07T06:11:19.2663960Z [32/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.c.o 2025-09-07T06:11:19.2757600Z [33/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.c.o 2025-09-07T06:11:19.2916340Z [34/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa.c.o 2025-09-07T06:11:19.3111290Z [35/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot.c.o 2025-09-07T06:11:19.3301890Z [36/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.c.o 2025-09-07T06:11:19.3369400Z [37/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.c.o 2025-09-07T06:11:19.3786700Z [38/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla.c.o 2025-09-07T06:11:19.3806280Z [39/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla.c.o 2025-09-07T06:11:19.3898460Z [40/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.c.o 2025-09-07T06:11:19.3995360Z [41/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa.c.o 2025-09-07T06:11:19.4278880Z [42/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4vlx4_1x4vl_sme2_sdot.c.o 2025-09-07T06:11:19.4416390Z [43/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1vlx8_qsi4cxp4vlx8_1vlx4vl_sme2_mopa.c.o 2025-09-07T06:11:19.4455690Z [44/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.c.o 2025-09-07T06:11:19.4476790Z [45/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.c.o 2025-09-07T06:11:19.4984880Z [46/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot.c.o 2025-09-07T06:11:19.5049050Z [47/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.c.o 2025-09-07T06:11:19.5082830Z [48/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.c.o 2025-09-07T06:11:19.5289500Z [49/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.c.o 2025-09-07T06:11:19.6243350Z [50/5254] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/os.cc.o 2025-09-07T06:11:19.8135590Z [51/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/ThreadUtil.cpp.o 2025-09-07T06:11:19.8138580Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/src/ThreadUtil.cpp:86:23: warning: 'syscall' is deprecated: first deprecated in macOS 10.12 - syscall(2) is unsupported; please switch to a supported interface. For SYS_kdebug_trace use kdebug_signpost(). [-Wdeprecated-declarations] 2025-09-07T06:11:19.8140920Z sysTid = (int32_t)syscall(SYS_thread_selfid); 2025-09-07T06:11:19.8141440Z ^ 2025-09-07T06:11:19.8142530Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/unistd.h:748:6: note: 'syscall' has been explicitly marked deprecated here 2025-09-07T06:11:19.8143730Z int syscall(int, ...); 2025-09-07T06:11:19.8144130Z ^ 2025-09-07T06:11:19.8144460Z 1 warning generated. 2025-09-07T06:11:19.8163380Z [52/5254] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/format.cc.o 2025-09-07T06:11:19.8265740Z [53/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ApproximateClock.cpp.o 2025-09-07T06:11:19.8338770Z [54/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/libkineto_api.cpp.o 2025-09-07T06:11:19.8511880Z [55/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/AbstractConfig.cpp.o 2025-09-07T06:11:19.8742200Z [56/5254] Linking CXX static library lib/libfmt.a 2025-09-07T06:11:19.8806680Z [57/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityProfiler.cpp.o 2025-09-07T06:11:19.8933860Z [58/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerController.cpp.o 2025-09-07T06:11:19.8964710Z [59/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Config.cpp.o 2025-09-07T06:11:20.0125890Z [60/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DaemonConfigLoader.cpp.o 2025-09-07T06:11:20.0792470Z [61/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Demangle.cpp.o 2025-09-07T06:11:20.0958910Z [62/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ConfigLoader.cpp.o 2025-09-07T06:11:20.1018660Z [63/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityType.cpp.o 2025-09-07T06:11:20.1201400Z [64/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityApi.cpp.o 2025-09-07T06:11:20.1373010Z [65/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceProperties.cpp.o 2025-09-07T06:11:20.1550840Z [66/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerProxy.cpp.o 2025-09-07T06:11:20.1652810Z [67/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/GenericTraceActivity.cpp.o 2025-09-07T06:11:20.1914960Z [68/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/IpcFabricConfigClient.cpp.o 2025-09-07T06:11:20.2206850Z [69/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceUtil.cpp.o 2025-09-07T06:11:20.3226070Z [70/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/LoggingAPI.cpp.o 2025-09-07T06:11:20.3646080Z [71/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ILoggerObserver.cpp.o 2025-09-07T06:11:20.3940010Z [72/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/init.cpp.o 2025-09-07T06:11:20.4134770Z [73/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Logger.cpp.o 2025-09-07T06:11:20.4230320Z [74/5254] Building CXX object c10/CMakeFiles/c10.dir/core/AutogradState.cpp.o 2025-09-07T06:11:20.4266830Z [75/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_csv.cpp.o 2025-09-07T06:11:20.4528280Z [76/5254] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_json.cpp.o 2025-09-07T06:11:20.4781810Z [77/5254] Building CXX object c10/CMakeFiles/c10.dir/core/Allocator.cpp.o 2025-09-07T06:11:20.4952030Z [78/5254] Building CXX object c10/CMakeFiles/c10.dir/core/AllocatorConfig.cpp.o 2025-09-07T06:11:20.5968890Z [79/5254] Linking CXX static library lib/libkineto.a 2025-09-07T06:11:20.6195400Z [80/5254] Building CXX object c10/CMakeFiles/c10.dir/core/CPUAllocator.cpp.o 2025-09-07T06:11:20.6376540Z [81/5254] Building CXX object c10/CMakeFiles/c10.dir/core/CachingDeviceAllocator.cpp.o 2025-09-07T06:11:20.6496320Z [82/5254] Building CXX object c10/CMakeFiles/c10.dir/core/CopyBytes.cpp.o 2025-09-07T06:11:20.6752980Z [83/5254] Building CXX object c10/CMakeFiles/c10.dir/core/DefaultDtype.cpp.o 2025-09-07T06:11:20.6858100Z [84/5254] Building CXX object c10/CMakeFiles/c10.dir/core/ConstantSymNodeImpl.cpp.o 2025-09-07T06:11:20.7117610Z [85/5254] Building CXX object c10/CMakeFiles/c10.dir/core/DeviceType.cpp.o 2025-09-07T06:11:20.7219770Z [86/5254] Building CXX object c10/CMakeFiles/c10.dir/core/Device.cpp.o 2025-09-07T06:11:20.7752940Z [87/5254] Building CXX object c10/CMakeFiles/c10.dir/core/GradMode.cpp.o 2025-09-07T06:11:20.8867750Z [88/5254] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKeySet.cpp.o 2025-09-07T06:11:20.8899220Z [89/5254] Building CXX object c10/CMakeFiles/c10.dir/core/InferenceMode.cpp.o 2025-09-07T06:11:20.9346940Z [90/5254] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKey.cpp.o 2025-09-07T06:11:20.9362850Z [91/5254] Building CXX object c10/CMakeFiles/c10.dir/core/GeneratorImpl.cpp.o 2025-09-07T06:11:20.9551340Z [92/5254] Building CXX object c10/CMakeFiles/c10.dir/core/RefcountedDeleter.cpp.o 2025-09-07T06:11:20.9809050Z [93/5254] Building CXX object c10/CMakeFiles/c10.dir/core/Scalar.cpp.o 2025-09-07T06:11:20.9890400Z [94/5254] Building CXX object c10/CMakeFiles/c10.dir/core/SafePyObject.cpp.o 2025-09-07T06:11:21.0370790Z [95/5254] Building CXX object c10/CMakeFiles/c10.dir/core/ScalarType.cpp.o 2025-09-07T06:11:21.1399420Z [96/5254] Building CXX object c10/CMakeFiles/c10.dir/core/Storage.cpp.o 2025-09-07T06:11:21.1534630Z [97/5254] Building CXX object c10/CMakeFiles/c10.dir/core/StorageImpl.cpp.o 2025-09-07T06:11:21.2141410Z [98/5254] Building CXX object c10/CMakeFiles/c10.dir/core/SymBool.cpp.o 2025-09-07T06:11:21.2206510Z [99/5254] Building CXX object c10/CMakeFiles/c10.dir/core/SymFloat.cpp.o 2025-09-07T06:11:21.2288550Z [100/5254] Building CXX object c10/CMakeFiles/c10.dir/core/Stream.cpp.o 2025-09-07T06:11:21.2590710Z [101/5254] Building CXX object c10/CMakeFiles/c10.dir/core/SymIntArrayRef.cpp.o 2025-09-07T06:11:21.2860170Z [102/5254] Building CXX object c10/CMakeFiles/c10.dir/core/SymInt.cpp.o 2025-09-07T06:11:21.2867280Z [103/5254] Building CXX object c10/CMakeFiles/c10.dir/core/SymNodeImpl.cpp.o 2025-09-07T06:11:21.3913620Z [104/5254] Building CXX object c10/CMakeFiles/c10.dir/core/SymbolicShapeMeta.cpp.o 2025-09-07T06:11:21.4740750Z [105/5254] Building CXX object c10/CMakeFiles/c10.dir/core/TensorImpl.cpp.o 2025-09-07T06:11:21.4907770Z [106/5254] Building CXX object c10/CMakeFiles/c10.dir/core/WrapDimMinimal.cpp.o 2025-09-07T06:11:21.5039490Z [107/5254] Building CXX object c10/CMakeFiles/c10.dir/core/TensorOptions.cpp.o 2025-09-07T06:11:21.5201870Z [108/5254] Building CXX object c10/CMakeFiles/c10.dir/core/UndefinedTensorImpl.cpp.o 2025-09-07T06:11:21.5502270Z [109/5254] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COWDeleter.cpp.o 2025-09-07T06:11:21.5576510Z [110/5254] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COW.cpp.o 2025-09-07T06:11:21.6001950Z [111/5254] Building CXX object c10/CMakeFiles/c10.dir/core/impl/DeviceGuardImplInterface.cpp.o 2025-09-07T06:11:21.6111810Z [112/5254] Building CXX object c10/CMakeFiles/c10.dir/core/impl/HermeticPyObjectTLS.cpp.o 2025-09-07T06:11:21.6401140Z [113/5254] Building CXX object c10/CMakeFiles/c10.dir/core/impl/GPUTrace.cpp.o 2025-09-07T06:11:21.7507290Z [114/5254] Building CXX object c10/CMakeFiles/c10.dir/core/impl/LocalDispatchKeySet.cpp.o 2025-09-07T06:11:21.7747860Z [115/5254] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyInterpreterHooks.cpp.o 2025-09-07T06:11:21.7810360Z [116/5254] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyInterpreter.cpp.o 2025-09-07T06:11:21.8388530Z [117/5254] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PythonDispatcherTLS.cpp.o 2025-09-07T06:11:21.8596490Z [118/5254] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyObjectSlot.cpp.o 2025-09-07T06:11:21.8719070Z [119/5254] Building CXX object c10/CMakeFiles/c10.dir/core/impl/SizesAndStrides.cpp.o 2025-09-07T06:11:21.9014300Z [120/5254] Building CXX object c10/CMakeFiles/c10.dir/core/impl/TorchDispatchModeTLS.cpp.o 2025-09-07T06:11:21.9573800Z [121/5254] Building CXX object c10/CMakeFiles/c10.dir/core/impl/alloc_cpu.cpp.o 2025-09-07T06:11:21.9980080Z [122/5254] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUCachingAllocator.cpp.o 2025-09-07T06:11:22.0372470Z [123/5254] Building CXX object c10/CMakeFiles/c10.dir/core/thread_pool.cpp.o 2025-09-07T06:11:22.0885700Z [124/5254] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUProfilingAllocator.cpp.o 2025-09-07T06:11:22.1106280Z [125/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Backtrace.cpp.o 2025-09-07T06:11:22.1217870Z [126/5254] Building CXX object c10/CMakeFiles/c10.dir/util/ApproximateClock.cpp.o 2025-09-07T06:11:22.1269760Z [127/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Bfloat16.cpp.o 2025-09-07T06:11:22.1700680Z [128/5254] Building CXX object c10/CMakeFiles/c10.dir/util/C++17.cpp.o 2025-09-07T06:11:22.2413760Z [129/5254] Building CXX object c10/CMakeFiles/c10.dir/util/DynamicCounter.cpp.o 2025-09-07T06:11:22.2623620Z [130/5254] Building CXX object c10/CMakeFiles/c10.dir/util/DeadlockDetection.cpp.o 2025-09-07T06:11:22.3256910Z [131/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Exception.cpp.o 2025-09-07T06:11:22.3342570Z [132/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fn.cpp.o 2025-09-07T06:11:22.3369950Z [133/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fnuz.cpp.o 2025-09-07T06:11:22.3496130Z [134/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2fnuz.cpp.o 2025-09-07T06:11:22.3595670Z [135/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e8m0fnu.cpp.o 2025-09-07T06:11:22.3916490Z [136/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2.cpp.o 2025-09-07T06:11:22.4890410Z [137/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Half.cpp.o 2025-09-07T06:11:22.5049550Z [138/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Gauge.cpp.o 2025-09-07T06:11:22.5512220Z [139/5254] Building CXX object c10/CMakeFiles/c10.dir/util/MathConstants.cpp.o 2025-09-07T06:11:22.5695800Z [140/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Metaprogramming.cpp.o 2025-09-07T06:11:22.5740660Z [141/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Optional.cpp.o 2025-09-07T06:11:22.5817240Z [142/5254] Building CXX object c10/CMakeFiles/c10.dir/util/LeftRight.cpp.o 2025-09-07T06:11:22.6023210Z [143/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Logging.cpp.o 2025-09-07T06:11:22.6125040Z [144/5254] Building CXX object c10/CMakeFiles/c10.dir/util/ParallelGuard.cpp.o 2025-09-07T06:11:22.6125530Z [145/5254] Building CXX object c10/CMakeFiles/c10.dir/util/NetworkFlow.cpp.o 2025-09-07T06:11:22.7328730Z [146/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Type_no_demangle.cpp.o 2025-09-07T06:11:22.7477090Z [147/5254] Building CXX object c10/CMakeFiles/c10.dir/util/StringUtil.cpp.o 2025-09-07T06:11:22.7568700Z [148/5254] Building CXX object c10/CMakeFiles/c10.dir/util/SmallVector.cpp.o 2025-09-07T06:11:22.7858740Z [149/5254] Building CXX object c10/CMakeFiles/c10.dir/util/ThreadLocalDebugInfo.cpp.o 2025-09-07T06:11:22.7997660Z [150/5254] Building CXX object c10/CMakeFiles/c10.dir/util/TypeTraits.cpp.o 2025-09-07T06:11:22.8120740Z [151/5254] Building CXX object c10/CMakeFiles/c10.dir/util/TypeList.cpp.o 2025-09-07T06:11:22.8176420Z [152/5254] Building CXX object c10/CMakeFiles/c10.dir/util/TypeCast.cpp.o 2025-09-07T06:11:22.8380300Z [153/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Unicode.cpp.o 2025-09-07T06:11:22.8403080Z [154/5254] Building CXX object c10/CMakeFiles/c10.dir/util/Type_demangle.cpp.o 2025-09-07T06:11:22.9306700Z [155/5254] Building CXX object c10/CMakeFiles/c10.dir/util/UniqueVoidPtr.cpp.o 2025-09-07T06:11:22.9598030Z [156/5254] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_gflags.cpp.o 2025-09-07T06:11:22.9809130Z [157/5254] Building CXX object c10/CMakeFiles/c10.dir/util/WaitCounter.cpp.o 2025-09-07T06:11:23.0317750Z [158/5254] Building CXX object c10/CMakeFiles/c10.dir/util/error.cpp.o 2025-09-07T06:11:23.0546550Z [159/5254] Building CXX object c10/CMakeFiles/c10.dir/util/complex_math.cpp.o 2025-09-07T06:11:23.0661810Z [160/5254] Building CXX object c10/CMakeFiles/c10.dir/util/env.cpp.o 2025-09-07T06:11:23.0971910Z [161/5254] Building CXX object c10/CMakeFiles/c10.dir/util/int128.cpp.o 2025-09-07T06:11:23.1305330Z [162/5254] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_no_gflags.cpp.o 2025-09-07T06:11:23.1738790Z [163/5254] Building CXX object c10/CMakeFiles/c10.dir/util/intrusive_ptr.cpp.o 2025-09-07T06:11:23.2085940Z [164/5254] Building CXX object c10/CMakeFiles/c10.dir/util/numa.cpp.o 2025-09-07T06:11:23.2426880Z [165/5254] Building C object confu-deps/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-09-07T06:11:23.2453050Z [166/5254] Building CXX object c10/CMakeFiles/c10.dir/util/signal_handler.cpp.o 2025-09-07T06:11:23.2805500Z [167/5254] Building CXX object c10/CMakeFiles/c10.dir/util/thread_name.cpp.o 2025-09-07T06:11:23.2885680Z [168/5254] Building CXX object c10/CMakeFiles/c10.dir/util/tempfile.cpp.o 2025-09-07T06:11:23.2944160Z [169/5254] Building C object confu-deps/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-09-07T06:11:23.3170270Z [170/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-09-07T06:11:23.3371630Z [171/5254] Building CXX object confu-deps/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-09-07T06:11:23.3388040Z [172/5254] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-09-07T06:11:23.3905430Z [173/5254] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-09-07T06:11:23.4450190Z [174/5254] Building CXX object c10/CMakeFiles/c10.dir/util/typeid.cpp.o 2025-09-07T06:11:23.4454680Z [175/5254] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-09-07T06:11:23.4629260Z [176/5254] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-09-07T06:11:23.4666530Z [177/5254] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-09-07T06:11:23.4675310Z [178/5254] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-09-07T06:11:23.4987180Z [179/5254] Building C object confu-deps/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-09-07T06:11:23.5036300Z [180/5254] Building C object confu-deps/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-09-07T06:11:23.5298320Z [181/5254] Building C object confu-deps/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-09-07T06:11:23.5493960Z [182/5254] Building C object confu-deps/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-09-07T06:11:23.5496860Z [183/5254] Building C object confu-deps/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-09-07T06:11:23.5721030Z [184/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-09-07T06:11:23.5741680Z [185/5254] Building C object confu-deps/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-09-07T06:11:23.5775040Z [186/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-09-07T06:11:23.6326710Z [187/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-09-07T06:11:23.6338490Z [188/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-09-07T06:11:23.6466840Z [189/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-09-07T06:11:23.6591300Z [190/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-09-07T06:11:23.6598730Z [191/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-09-07T06:11:23.6655330Z [192/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-09-07T06:11:23.6742990Z [193/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-09-07T06:11:23.6749650Z [194/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-09-07T06:11:23.7404980Z [195/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-09-07T06:11:23.7529740Z [196/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-09-07T06:11:23.7532820Z [197/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-09-07T06:11:23.7652680Z [198/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-09-07T06:11:23.7730240Z [199/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-09-07T06:11:23.7731000Z [200/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-09-07T06:11:23.7897820Z [201/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-09-07T06:11:23.8422050Z [202/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-09-07T06:11:23.8566370Z [203/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-09-07T06:11:23.8578150Z [204/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-09-07T06:11:23.8621780Z [205/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-09-07T06:11:23.8780070Z [206/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-09-07T06:11:23.8810960Z [207/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-09-07T06:11:23.8824420Z [208/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-09-07T06:11:23.9011430Z [209/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-09-07T06:11:23.9784700Z [210/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-09-07T06:11:24.0011920Z [211/5254] Building C object confu-deps/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-09-07T06:11:24.0155990Z [212/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-09-07T06:11:24.0186340Z [213/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-09-07T06:11:24.0275760Z [214/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-09-07T06:11:24.0294900Z [215/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-09-07T06:11:24.0614520Z [216/5254] Building CXX object confu-deps/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-09-07T06:11:24.0927640Z [217/5254] Building CXX object confu-deps/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-09-07T06:11:24.1158700Z [218/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-09-07T06:11:24.1242570Z [219/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-09-07T06:11:24.1309910Z [220/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-09-07T06:11:24.1423560Z [221/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-09-07T06:11:24.1435330Z [222/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-09-07T06:11:24.1548040Z [223/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-09-07T06:11:24.1697730Z [224/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-09-07T06:11:24.2148540Z [225/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-09-07T06:11:24.2188370Z [226/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-09-07T06:11:24.2324870Z [227/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-09-07T06:11:24.2414820Z [228/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-09-07T06:11:24.2518880Z [229/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-09-07T06:11:24.2638460Z [230/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-09-07T06:11:24.2896550Z [231/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-09-07T06:11:24.3004190Z [232/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-09-07T06:11:24.3360710Z [233/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-09-07T06:11:24.3437090Z [234/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-09-07T06:11:24.3568190Z [235/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-09-07T06:11:24.3668420Z [236/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-09-07T06:11:24.3689580Z [237/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-09-07T06:11:24.3752130Z [238/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-09-07T06:11:24.4102010Z [239/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-09-07T06:11:24.4207430Z [240/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-09-07T06:11:24.4443130Z [241/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-09-07T06:11:24.4510560Z [242/5254] Generating include/renamepurecfma_scalar.h 2025-09-07T06:11:24.4512340Z Generating renamepurecfma_scalar.h: mkrename finz_ 1 1 purecfma 2025-09-07T06:11:24.4673640Z [243/5254] Building C object sleef/src/libm/CMakeFiles/mkalias.dir/mkalias.c.o 2025-09-07T06:11:24.4698870Z [244/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-09-07T06:11:24.4707020Z [245/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-09-07T06:11:24.4869420Z [246/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-09-07T06:11:24.4917200Z [247/5254] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-09-07T06:11:24.4954640Z [248/5254] Generating include/renamepurec_scalar.h 2025-09-07T06:11:24.4958220Z Generating renamepurec_scalar.h: mkrename cinz_ 1 1 purec 2025-09-07T06:11:24.4958700Z [249/5254] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-09-07T06:11:24.4995060Z [250/5254] Generating sleeflibm_ADVSIMD_.h.tmp 2025-09-07T06:11:24.5008000Z [251/5254] Generating sleeflibm_ADVSIMDNOFMA.h.tmp 2025-09-07T06:11:24.5048470Z [252/5254] Building C object sleef/src/libm/CMakeFiles/mkmasked_gnuabi.dir/mkmasked_gnuabi.c.o 2025-09-07T06:11:24.5098220Z [253/5254] Generating sleeflibm_ADVSIMD.h.tmp 2025-09-07T06:11:24.5098900Z [254/5254] Generating include/renamecuda.h 2025-09-07T06:11:24.5099500Z Generating renamecuda.h: mkrename finz_ 1 1 cuda 2025-09-07T06:11:24.5124300Z [255/5254] Generating include/renameadvsimdnofma.h 2025-09-07T06:11:24.5127480Z Generating renameadvsimdnofma.h: mkrename cinz_ 2 4 advsimdnofma 2025-09-07T06:11:24.5130150Z [256/5254] Building C object sleef/src/libm/CMakeFiles/mkrename_gnuabi.dir/mkrename_gnuabi.c.o 2025-09-07T06:11:24.5133930Z [257/5254] Generating include/renameadvsimd.h 2025-09-07T06:11:24.5136370Z Generating renameadvsimd.h: mkrename finz_ 2 4 advsimd 2025-09-07T06:11:24.5518630Z [258/5254] Generating /Users/ec2-user/runner/_work/pytorch/pytorch/torch/_C/__init__.pyi, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/_C/_VariableFunctions.pyi, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nn/functional.pyi 2025-09-07T06:11:24.5664730Z [259/5254] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimdsp.c.o 2025-09-07T06:11:24.5667110Z [260/5254] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimdsp.c.o 2025-09-07T06:11:24.5849330Z [261/5254] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimddp.c.o 2025-09-07T06:11:24.6125870Z [262/5254] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimddp.c.o 2025-09-07T06:11:24.6304250Z [263/5254] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimddp.c.o 2025-09-07T06:11:24.6357690Z [264/5254] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimdsp.c.o 2025-09-07T06:11:24.6360470Z [265/5254] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimddp.c.o 2025-09-07T06:11:24.6373850Z [266/5254] Generating sleeflibm_SVE.h.tmp 2025-09-07T06:11:24.6378680Z [267/5254] Linking C executable sleef/bin/mkrename_gnuabi 2025-09-07T06:11:24.6447090Z [268/5254] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimdsp.c.o 2025-09-07T06:11:24.6517030Z [269/5254] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-09-07T06:11:24.6558760Z [270/5254] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-09-07T06:11:24.6680970Z [271/5254] Linking C executable sleef/bin/mkmasked_gnuabi 2025-09-07T06:11:24.6735520Z [272/5254] Generating ../../../include/sleef.h 2025-09-07T06:11:24.6974950Z [273/5254] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimdsp.c.o 2025-09-07T06:11:24.7063180Z [274/5254] Linking C executable sleef/bin/mkalias 2025-09-07T06:11:24.7464970Z [275/5254] Building C object caffe2/CMakeFiles/torch_global_deps.dir/__/torch/csrc/empty.c.o 2025-09-07T06:11:24.7491670Z [276/5254] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimddp.c.o 2025-09-07T06:11:24.7582110Z [277/5254] Building C object sleef/src/libm/CMakeFiles/mkdisp.dir/mkdisp.c.o 2025-09-07T06:11:24.7683860Z [278/5254] Generating alias_ADVSIMD_dp.h.tmp 2025-09-07T06:11:24.7689540Z [279/5254] Generating alias_ADVSIMD_sp.h.tmp 2025-09-07T06:11:24.7796130Z [280/5254] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimddp.c.o 2025-09-07T06:11:24.7801030Z [281/5254] Generating include/alias_advsimd.h 2025-09-07T06:11:24.7924580Z [282/5254] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimdsp.c.o 2025-09-07T06:11:24.8109180Z [283/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:24.8265980Z [284/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:24.8537700Z [285/5254] Linking C executable sleef/bin/mkdisp 2025-09-07T06:11:24.9003040Z [286/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:24.9074930Z [287/5254] Generating dispscalar.c.body 2025-09-07T06:11:24.9115570Z [288/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:24.9128960Z [289/5254] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimddp.c.o 2025-09-07T06:11:24.9157990Z [290/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:24.9187920Z [291/5254] Linking C shared library lib/libtorch_global_deps.dylib 2025-09-07T06:11:24.9221770Z [292/5254] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimdsp.c.o 2025-09-07T06:11:24.9224530Z [293/5254] Generating dispscalar.c 2025-09-07T06:11:24.9586370Z [294/5254] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimddp.c.o 2025-09-07T06:11:25.0182180Z [295/5254] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimdsp.c.o 2025-09-07T06:11:25.0436550Z [296/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:25.0590880Z [297/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:25.0593020Z [298/5254] Building C object sleef/src/libm/CMakeFiles/dispscalar_obj.dir/dispscalar.c.o 2025-09-07T06:11:25.0736660Z [299/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:25.0806670Z [300/5254] Building C object sleef/src/libm/CMakeFiles/sleef.dir/rempitab.c.o 2025-09-07T06:11:25.0904630Z [301/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:25.0970220Z [302/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:25.1208530Z [303/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:25.1432050Z [304/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:25.1575610Z [305/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:25.1918570Z [306/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neonv8-mlal-dup.c.o 2025-09-07T06:11:25.2084160Z [307/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-09-07T06:11:25.2131990Z [308/5254] Linking C static library sleef/lib/libsleef.a 2025-09-07T06:11:25.2250770Z [309/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-09-07T06:11:25.2259670Z [310/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neonv8-mlal-ld4r.c.o 2025-09-07T06:11:25.2555810Z [311/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neonv8-mlal-dup.c.o 2025-09-07T06:11:25.2752070Z [312/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-09-07T06:11:25.2861210Z [313/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-09-07T06:11:25.2870290Z [314/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4s2-minmax-fp32-neonv8-mlal.c.o 2025-09-07T06:11:25.3114790Z [315/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-neonv8-mlal.c.o 2025-09-07T06:11:25.3408850Z [316/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:25.3597890Z [317/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:25.3754180Z [318/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neonv8-mlal-dup.c.o 2025-09-07T06:11:25.3866010Z [319/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:25.4246710Z [320/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-09-07T06:11:25.4330220Z [321/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-09-07T06:11:25.4579090Z [322/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neonv8-mlal-dup.c.o 2025-09-07T06:11:25.4629120Z [323/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neonv8-mlal-ld4r.c.o 2025-09-07T06:11:25.4731870Z [324/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-09-07T06:11:25.4831860Z [325/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-09-07T06:11:25.5177100Z [326/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:25.5319660Z [327/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4s2-minmax-fp32-neonv8-mlal.c.o 2025-09-07T06:11:25.5341770Z [328/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-neonv8-mlal.c.o 2025-09-07T06:11:25.5661410Z [329/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:25.5779430Z [330/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:25.6067970Z [331/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:25.6246800Z [332/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:25.6332300Z [333/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:25.6345800Z [334/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:25.6583460Z [335/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:25.6869520Z [336/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:25.6886380Z [337/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:25.6942440Z [338/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:25.7179690Z [339/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:25.7392220Z [340/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:25.7716540Z [341/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:25.7812760Z [342/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:25.7964890Z [343/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2025-09-07T06:11:25.8263970Z [344/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2025-09-07T06:11:25.8341240Z [345/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2025-09-07T06:11:25.8397110Z [346/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2025-09-07T06:11:25.8401390Z [347/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2025-09-07T06:11:25.8410790Z [348/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:25.8645730Z [349/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2025-09-07T06:11:25.9248790Z [350/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:25.9368260Z [351/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:25.9391960Z [352/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:25.9550250Z [353/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:25.9630480Z [354/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:25.9728300Z [355/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:25.9874820Z [356/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:25.9980520Z [357/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:26.0373140Z [358/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:26.0731440Z [359/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:26.0872970Z [360/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:26.1043400Z [361/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:26.1129540Z [362/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:26.1178010Z [363/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:26.1283740Z [364/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:26.1344540Z [365/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:26.1359570Z [366/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:26.1595740Z [367/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2025-09-07T06:11:26.2031040Z [368/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2025-09-07T06:11:26.2070780Z [369/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2025-09-07T06:11:26.2672620Z [370/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-aarch64-neon-u4.c.o 2025-09-07T06:11:26.2722460Z [371/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2025-09-07T06:11:26.2724790Z [372/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2025-09-07T06:11:26.2764200Z [373/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2025-09-07T06:11:26.2792380Z [374/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-aarch64-neon-u4.c.o 2025-09-07T06:11:26.2877140Z [375/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-aarch64-neonfma-2x1.c.o 2025-09-07T06:11:26.2921360Z [376/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-aarch64-neon-u4.c.o 2025-09-07T06:11:26.3723680Z [377/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u8.c.o 2025-09-07T06:11:26.3780560Z [378/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u16.c.o 2025-09-07T06:11:26.3846600Z [379/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u16.c.o 2025-09-07T06:11:26.3899190Z [380/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u32.c.o 2025-09-07T06:11:26.4047660Z [381/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-aarch64-neonfma-2x1.c.o 2025-09-07T06:11:26.4063950Z [382/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-aarch64-neonfma-2x2.c.o 2025-09-07T06:11:26.4219620Z [383/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-aarch64-neonfma-2x2.c.o 2025-09-07T06:11:26.4222620Z [384/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u48.c.o 2025-09-07T06:11:26.4224760Z [385/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-aarch64-neonfma-2x1.c.o 2025-09-07T06:11:26.4966590Z [386/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-aarch64-neonfma-2x2.c.o 2025-09-07T06:11:26.5076050Z [387/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-aarch64-neonfma-2x1.c.o 2025-09-07T06:11:26.5212270Z [388/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-1x4-acc2.c.o 2025-09-07T06:11:26.5296650Z [389/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-aarch64-neonfma-2x2.c.o 2025-09-07T06:11:26.5550450Z [390/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-1x4-acc4.c.o 2025-09-07T06:11:26.5727700Z [391/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-2x4.c.o 2025-09-07T06:11:26.5833990Z [392/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-2x4-acc2.c.o 2025-09-07T06:11:26.5880400Z [393/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-1x4-acc3.c.o 2025-09-07T06:11:26.5886530Z [394/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-1x4.c.o 2025-09-07T06:11:26.6549690Z [395/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-4x4.c.o 2025-09-07T06:11:26.6585040Z [396/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-1x4-acc2.c.o 2025-09-07T06:11:26.6824270Z [397/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-6x4.c.o 2025-09-07T06:11:26.6835070Z [398/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-5x4.c.o 2025-09-07T06:11:26.7043080Z [399/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-1x4-acc3.c.o 2025-09-07T06:11:26.7244660Z [400/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-1x4.c.o 2025-09-07T06:11:26.7271790Z [401/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-2x4.c.o 2025-09-07T06:11:26.7284630Z [402/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u12.c.o 2025-09-07T06:11:26.7422200Z [403/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-1x4-acc4.c.o 2025-09-07T06:11:26.7918320Z [404/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u4.c.o 2025-09-07T06:11:26.8024510Z [405/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u16.c.o 2025-09-07T06:11:26.8061660Z [406/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u8.c.o 2025-09-07T06:11:26.8233120Z [407/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u12.c.o 2025-09-07T06:11:26.8386220Z [408/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u4.c.o 2025-09-07T06:11:26.8497820Z [409/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u8.c.o 2025-09-07T06:11:26.8573420Z [410/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u16.c.o 2025-09-07T06:11:26.8594120Z [411/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u12.c.o 2025-09-07T06:11:26.8689900Z [412/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u4.c.o 2025-09-07T06:11:26.9441970Z [413/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u8.c.o 2025-09-07T06:11:26.9472890Z [414/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u16.c.o 2025-09-07T06:11:26.9489870Z [415/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u12.c.o 2025-09-07T06:11:26.9709150Z [416/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u8.c.o 2025-09-07T06:11:26.9999140Z [417/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u12.c.o 2025-09-07T06:11:27.0013450Z [418/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u4.c.o 2025-09-07T06:11:27.0025720Z [419/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u8.c.o 2025-09-07T06:11:27.0233250Z [420/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u16.c.o 2025-09-07T06:11:27.0449970Z [421/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u4.c.o 2025-09-07T06:11:27.0628070Z [422/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u4.c.o 2025-09-07T06:11:27.0768570Z [423/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u12.c.o 2025-09-07T06:11:27.0795070Z [424/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u8.c.o 2025-09-07T06:11:27.1157510Z [425/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u16.c.o 2025-09-07T06:11:27.1402910Z [426/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u16.c.o 2025-09-07T06:11:27.1464430Z [427/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u4.c.o 2025-09-07T06:11:27.1624830Z [428/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u12.c.o 2025-09-07T06:11:27.1669380Z [429/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u8.c.o 2025-09-07T06:11:27.1676600Z [430/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u12.c.o 2025-09-07T06:11:27.1940370Z [431/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u4.c.o 2025-09-07T06:11:27.2184570Z [432/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u8.c.o 2025-09-07T06:11:27.2200870Z [433/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u16.c.o 2025-09-07T06:11:27.2527640Z [434/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u16.c.o 2025-09-07T06:11:27.2767290Z [435/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u24.c.o 2025-09-07T06:11:27.2845010Z [436/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u8.c.o 2025-09-07T06:11:27.2902430Z [437/5254] Generating /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_0.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_1.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_2.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_3.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_4.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_0.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_1.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_2.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_3.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_4.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterLazy.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/variable_factories.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyIr.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNonNativeIr.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_0.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_1.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_2.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_3.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_4.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_variable_methods.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_0.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_1.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_2.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nn_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_fft_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_linalg_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nested_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_sparse_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_special_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_enum_tag.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/testing/_internal/generated/annotated_fn_args.py, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.cpp 2025-09-07T06:11:27.3050590Z [438/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.3091230Z [439/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u4.c.o 2025-09-07T06:11:27.3124110Z [440/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u16.c.o 2025-09-07T06:11:27.3284780Z [441/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u24.c.o 2025-09-07T06:11:27.3610840Z [442/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u4.c.o 2025-09-07T06:11:27.3784940Z [443/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u4.c.o 2025-09-07T06:11:27.3953020Z [444/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.4407530Z [445/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.4504710Z [446/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.4547050Z [447/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.4551280Z [448/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.4612150Z [449/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.4646830Z [450/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.4803590Z [451/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.4834770Z [452/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.5215360Z [453/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.5431820Z [454/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.5818270Z [455/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.5819610Z [456/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.6016140Z [457/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-09-07T06:11:27.6046950Z [458/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.6059130Z [459/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-09-07T06:11:27.6147350Z [460/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-09-07T06:11:27.6241810Z [461/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.6333100Z [462/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-09-07T06:11:27.6718930Z [463/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-09-07T06:11:27.6833340Z [464/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mla8-ld128.c.o 2025-09-07T06:11:27.7172790Z [465/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-09-07T06:11:27.7248180Z [466/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul8-ld128.c.o 2025-09-07T06:11:27.7428600Z [467/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.7588390Z [468/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-09-07T06:11:27.7596750Z [469/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-09-07T06:11:27.7612290Z [470/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.7726180Z [471/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.7855600Z [472/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-09-07T06:11:27.8268210Z [473/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-09-07T06:11:27.8275050Z [474/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mla8-ld128.c.o 2025-09-07T06:11:27.8394710Z [475/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul8-ld128.c.o 2025-09-07T06:11:27.8552550Z [476/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.8882860Z [477/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.9091680Z [478/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:27.9206570Z [479/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-09-07T06:11:27.9257830Z [480/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mla8-ld128.c.o 2025-09-07T06:11:27.9262100Z [481/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-09-07T06:11:27.9274300Z [482/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-09-07T06:11:27.9931580Z [483/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:28.0033980Z [484/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-09-07T06:11:28.0081380Z [485/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul8-ld128.c.o 2025-09-07T06:11:28.0482540Z [486/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mla8-ld128.c.o 2025-09-07T06:11:28.0688680Z [487/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mul8-ld128.c.o 2025-09-07T06:11:28.0693620Z [488/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-09-07T06:11:28.0705200Z [489/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neonv8-mul8-ld64.c.o 2025-09-07T06:11:28.0896610Z [490/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mul8-ld64.c.o 2025-09-07T06:11:28.0913070Z [491/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:28.1102060Z [492/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:28.1102970Z [493/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:28.1162330Z [494/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:28.1712900Z [495/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neonv8-mul8-ld64.c.o 2025-09-07T06:11:28.1816370Z [496/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:28.2315420Z [497/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mla8-ld128.c.o 2025-09-07T06:11:28.2318500Z [498/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:28.2321960Z [499/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-09-07T06:11:28.2504050Z [500/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neonv8-mlal-dup.c.o 2025-09-07T06:11:28.2507770Z [501/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mul8-ld64.c.o 2025-09-07T06:11:28.2511630Z [502/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:28.2678380Z [503/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mul8-ld128.c.o 2025-09-07T06:11:28.2680610Z [504/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:28.3574560Z [505/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-09-07T06:11:28.3774760Z [506/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-09-07T06:11:28.3877210Z [507/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neonv8-mlal-dup.c.o 2025-09-07T06:11:28.3929870Z [508/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-09-07T06:11:28.3935410Z [509/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neonv8-mlal-ld4r.c.o 2025-09-07T06:11:28.4049700Z [510/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-neonv8-mlal.c.o 2025-09-07T06:11:28.4084560Z [511/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4s2-minmax-fp32-neonv8-mlal.c.o 2025-09-07T06:11:28.4092310Z [512/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:28.4098950Z [513/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-09-07T06:11:28.4108230Z [514/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:28.5100770Z [515/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neonv8-mlal-dup.c.o 2025-09-07T06:11:28.5116920Z [516/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-09-07T06:11:28.5358550Z [517/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:28.5460700Z [518/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-09-07T06:11:28.5471380Z [519/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neonv8-mlal-ld4r.c.o 2025-09-07T06:11:28.5472270Z [520/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-09-07T06:11:28.5630800Z [521/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-neonv8-mlal.c.o 2025-09-07T06:11:28.5680250Z [522/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neonv8-mlal-dup.c.o 2025-09-07T06:11:28.5687910Z [523/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4s2-minmax-fp32-neonv8-mlal.c.o 2025-09-07T06:11:28.5699950Z [524/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-09-07T06:11:28.6618590Z [525/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:11:28.6648130Z [526/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:28.6699570Z [527/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-09-07T06:11:28.6855480Z [528/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u4.c.o 2025-09-07T06:11:28.6858890Z [529/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u4.c.o 2025-09-07T06:11:28.6996860Z [530/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u1.c.o 2025-09-07T06:11:28.7138110Z [531/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u1.c.o 2025-09-07T06:11:28.7244290Z [532/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u2.c.o 2025-09-07T06:11:28.7316220Z [533/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u4.c.o 2025-09-07T06:11:28.7341450Z [534/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u1.c.o 2025-09-07T06:11:28.7921390Z [535/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u1.c.o 2025-09-07T06:11:28.7990400Z [536/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u4.c.o 2025-09-07T06:11:28.8195570Z [537/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u4.c.o 2025-09-07T06:11:28.8304450Z [538/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u2.c.o 2025-09-07T06:11:28.8318330Z [539/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u2.c.o 2025-09-07T06:11:28.8319010Z [540/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u1.c.o 2025-09-07T06:11:28.8486530Z [541/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u4.c.o 2025-09-07T06:11:28.8644780Z [542/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u2.c.o 2025-09-07T06:11:28.8851780Z [543/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u2.c.o 2025-09-07T06:11:28.8910320Z [544/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u1.c.o 2025-09-07T06:11:28.9297450Z [545/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u4.c.o 2025-09-07T06:11:28.9307400Z [546/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u1.c.o 2025-09-07T06:11:28.9443800Z [547/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u2.c.o 2025-09-07T06:11:28.9498850Z [548/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u4.c.o 2025-09-07T06:11:28.9586850Z [549/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u4.c.o 2025-09-07T06:11:28.9724780Z [550/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u1.c.o 2025-09-07T06:11:28.9730690Z [551/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u1.c.o 2025-09-07T06:11:29.0462100Z [552/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u2.c.o 2025-09-07T06:11:29.0569540Z [553/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u4.c.o 2025-09-07T06:11:29.0576110Z [554/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u2.c.o 2025-09-07T06:11:29.0605200Z [555/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u2.c.o 2025-09-07T06:11:29.0626640Z [556/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u1.c.o 2025-09-07T06:11:29.0727200Z [557/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u4.c.o 2025-09-07T06:11:29.0739140Z [558/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u1.c.o 2025-09-07T06:11:29.0875970Z [559/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u1.c.o 2025-09-07T06:11:29.1018380Z [560/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u2.c.o 2025-09-07T06:11:29.1163420Z [561/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u4.c.o 2025-09-07T06:11:29.1875630Z [562/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u4.c.o 2025-09-07T06:11:29.1978700Z [563/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u1.c.o 2025-09-07T06:11:29.2081260Z [564/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-3x4.c.o 2025-09-07T06:11:29.2082630Z [565/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-4x4.c.o 2025-09-07T06:11:29.2119830Z [566/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x8-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:29.2123610Z [567/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u2.c.o 2025-09-07T06:11:29.2146650Z [568/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-1x4-acc2.c.o 2025-09-07T06:11:29.2359890Z [569/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-1x4-acc3.c.o 2025-09-07T06:11:29.2414170Z [570/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u4.c.o 2025-09-07T06:11:29.2646950Z [571/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-1x4-acc4.c.o 2025-09-07T06:11:29.3407830Z [572/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-1x4-acc5.c.o 2025-09-07T06:11:29.3463830Z [573/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-2x4-acc2.c.o 2025-09-07T06:11:29.3482060Z [574/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-1x4.c.o 2025-09-07T06:11:29.3491910Z [575/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-2x4.c.o 2025-09-07T06:11:29.3677290Z [576/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-2x4-acc3.c.o 2025-09-07T06:11:29.3696050Z [577/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-3x4-acc2.c.o 2025-09-07T06:11:29.3751300Z [578/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-4x4-acc2.c.o 2025-09-07T06:11:29.3890500Z [579/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-3x4.c.o 2025-09-07T06:11:29.4217370Z [580/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-5x4.c.o 2025-09-07T06:11:29.4518240Z [581/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4-acc3.c.o 2025-09-07T06:11:29.4782750Z [582/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4.c.o 2025-09-07T06:11:29.4807070Z [583/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4-acc4.c.o 2025-09-07T06:11:29.4889590Z [584/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-2x4-acc2.c.o 2025-09-07T06:11:29.5055630Z [585/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-2x4.c.o 2025-09-07T06:11:29.5157050Z [586/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-3x4.c.o 2025-09-07T06:11:29.5164990Z [587/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4-acc5.c.o 2025-09-07T06:11:29.5277540Z [588/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-3x4-acc2.c.o 2025-09-07T06:11:29.5423990Z [589/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-2x4-acc3.c.o 2025-09-07T06:11:29.6215860Z [590/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:29.6218510Z [591/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:29.6224540Z [592/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:29.6227290Z [593/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:29.6373120Z [594/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:29.6430930Z [595/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:29.6449280Z [596/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:29.6628430Z [597/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:29.7079200Z [598/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:29.7355100Z [599/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:29.7669210Z [600/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:29.7687900Z [601/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:29.7759790Z [602/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:29.7826610Z [603/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:29.7834030Z [604/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:29.7837460Z [605/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:29.8106630Z [606/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:29.8110110Z [607/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:29.8884640Z [608/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:29.8963720Z [609/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:29.8989460Z [610/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:29.9094210Z [611/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:29.9153080Z [612/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:29.9171590Z [613/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:29.9198820Z [614/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:29.9474080Z [615/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:30.0101920Z [616/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:30.0153150Z [617/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:30.0193170Z [618/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:30.0297620Z [619/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma-prfm.c.o 2025-09-07T06:11:30.0400070Z [620/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma-prfm.c.o 2025-09-07T06:11:30.0401900Z [621/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma-prfm.c.o 2025-09-07T06:11:30.0416180Z [622/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:30.0450120Z [623/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma.c.o 2025-09-07T06:11:30.0647040Z [624/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:30.1130640Z [625/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:30.1377410Z [626/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma.c.o 2025-09-07T06:11:30.1681100Z [627/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:30.1747660Z [628/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:30.1869050Z [629/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma.c.o 2025-09-07T06:11:30.1883770Z [630/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-5x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:30.1903820Z [631/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:30.1906210Z [632/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:30.1907890Z [633/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:30.2058030Z [634/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:30.2717190Z [635/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:30.2903150Z [636/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:30.3123200Z [637/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x4-minmax-aarch64-neonfma.c.o 2025-09-07T06:11:30.3214720Z [638/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut64-p2-div-u4.c.o 2025-09-07T06:11:30.3249560Z [639/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:11:30.3264300Z [640/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:30.3425210Z [641/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:11:30.3571770Z [642/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-aarch64-neonfma.c.o 2025-09-07T06:11:30.3675100Z [643/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-aarch64-neonfma.c.o 2025-09-07T06:11:30.3720460Z [644/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x2-minmax-aarch64-neonfma.c.o 2025-09-07T06:11:30.4047840Z [645/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x4-minmax-aarch64-neonfma.c.o 2025-09-07T06:11:30.4062420Z [646/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x2-minmax-aarch64-neonfma.c.o 2025-09-07T06:11:30.4266560Z [647/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x2-minmax-aarch64-neonfma.c.o 2025-09-07T06:11:30.4507080Z [648/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x4-minmax-aarch64-neonfma.c.o 2025-09-07T06:11:30.4619710Z [649/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut64-p2-div-u12.c.o 2025-09-07T06:11:30.4671590Z [650/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut64-p2-div-u8.c.o 2025-09-07T06:11:30.4723970Z [651/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut64-p2-div-u16.c.o 2025-09-07T06:11:30.4840790Z [652/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut2048-p1-div-u4.c.o 2025-09-07T06:11:30.5043330Z [653/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut2048-p1-div-u8.c.o 2025-09-07T06:11:30.5201020Z [654/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut2048-p1-div-u12.c.o 2025-09-07T06:11:30.5602380Z [655/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut2048-p1-div-u16.c.o 2025-09-07T06:11:30.5744770Z [656/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u4.c.o 2025-09-07T06:11:30.5854240Z [657/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u8.c.o 2025-09-07T06:11:30.5922710Z [658/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u2.c.o 2025-09-07T06:11:30.5979430Z [659/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u16.c.o 2025-09-07T06:11:30.6069500Z [660/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u4.c.o 2025-09-07T06:11:30.6270760Z [661/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u12.c.o 2025-09-07T06:11:30.6380800Z [662/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u1.c.o 2025-09-07T06:11:30.6406650Z [663/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u1.c.o 2025-09-07T06:11:30.6486070Z [664/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u2.c.o 2025-09-07T06:11:30.6950890Z [665/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x16-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:30.7124940Z [666/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u1.c.o 2025-09-07T06:11:30.7153400Z [667/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u4.c.o 2025-09-07T06:11:30.7523480Z [668/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x8-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:11:30.7526570Z [669/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x16-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:30.7726980Z [670/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:30.7827430Z [671/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x8-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:30.7847340Z [672/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x8-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:30.7966440Z [673/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-6x16-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:11:30.8195970Z [674/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-6x8-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:11:30.8389660Z [675/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x8-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:11:30.8492450Z [676/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x16-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:11:30.8493260Z [677/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:30.9026800Z [678/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x8-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:30.9083210Z [679/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x8-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:11:30.9241270Z [680/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x16-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:11:30.9422210Z [681/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-6x8-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:11:30.9424440Z [682/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-6x16-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:11:30.9480200Z [683/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u16.c.o 2025-09-07T06:11:30.9481070Z [684/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:30.9653860Z [685/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u64.c.o 2025-09-07T06:11:31.0095330Z [686/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u64-acc2.c.o 2025-09-07T06:11:31.0169870Z [687/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u64-acc4.c.o 2025-09-07T06:11:31.0234280Z [688/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u8.c.o 2025-09-07T06:11:31.0254620Z [689/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u8.c.o 2025-09-07T06:11:31.0412910Z [690/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld128-u16.c.o 2025-09-07T06:11:31.0790100Z [691/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld128-u16.c.o 2025-09-07T06:11:31.0806090Z [692/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u8.c.o 2025-09-07T06:11:31.0983310Z [693/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u8.c.o 2025-09-07T06:11:31.1187500Z [694/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u16.c.o 2025-09-07T06:11:31.1288370Z [695/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-dec-zip-neon.c.o 2025-09-07T06:11:31.1465330Z [696/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld128-u16.c.o 2025-09-07T06:11:31.1485080Z [697/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2025-09-07T06:11:31.1515720Z [698/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u8.c.o 2025-09-07T06:11:31.1699940Z [699/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u16.c.o 2025-09-07T06:11:31.1976480Z [700/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u16.c.o 2025-09-07T06:11:31.1987760Z [701/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2025-09-07T06:11:31.2137300Z [702/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2025-09-07T06:11:31.2166450Z [703/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2025-09-07T06:11:31.2172910Z [704/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2025-09-07T06:11:31.2442040Z [705/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2025-09-07T06:11:31.2824480Z [706/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2025-09-07T06:11:31.2944680Z [707/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-2p2x-minmax-neon-c16.c.o 2025-09-07T06:11:31.2994410Z [708/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-mov-zip-neon.c.o 2025-09-07T06:11:31.3102600Z [709/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-4p3x-minmax-neon-c16.c.o 2025-09-07T06:11:31.3227110Z [710/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-switch-zip-neon.c.o 2025-09-07T06:11:31.3420310Z [711/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-multi-zip-neon.c.o 2025-09-07T06:11:31.3576040Z [712/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-dec-zip-neon.c.o 2025-09-07T06:11:31.3670890Z [713/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-switch-zip-neon.c.o 2025-09-07T06:11:31.3793420Z [714/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-zip-neon.c.o 2025-09-07T06:11:31.3846900Z [715/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-mov-zip-neon.c.o 2025-09-07T06:11:31.4178200Z [716/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-switch-zip-neon.c.o 2025-09-07T06:11:31.4233860Z [717/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-09-07T06:11:31.4246510Z [718/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u16-prfm.c.o 2025-09-07T06:11:31.4471760Z [719/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u4.c.o 2025-09-07T06:11:31.4651110Z [720/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u12-prfm.c.o 2025-09-07T06:11:31.4894440Z [721/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u8.c.o 2025-09-07T06:11:31.5044630Z [722/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u12-prfm.c.o 2025-09-07T06:11:31.5048620Z [723/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u16.c.o 2025-09-07T06:11:31.5256290Z [724/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u12.c.o 2025-09-07T06:11:31.5259490Z [725/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-09-07T06:11:31.5507130Z [726/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u4.c.o 2025-09-07T06:11:31.5567550Z [727/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u12.c.o 2025-09-07T06:11:31.5634810Z [728/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u8.c.o 2025-09-07T06:11:31.5778460Z [729/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u16.c.o 2025-09-07T06:11:31.6215540Z [730/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u16-prfm.c.o 2025-09-07T06:11:31.6282420Z [731/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-mov-zip-neon.c.o 2025-09-07T06:11:31.6386370Z [732/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-dec-zip-neon.c.o 2025-09-07T06:11:31.6394360Z [733/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-multi-zip-neon.c.o 2025-09-07T06:11:31.6476640Z [734/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-dec-zip-neon.c.o 2025-09-07T06:11:31.6504610Z [735/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-switch-zip-neon.c.o 2025-09-07T06:11:31.6674040Z [736/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-mov-zip-neon.c.o 2025-09-07T06:11:31.6937410Z [737/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-multi-zip-neon.c.o 2025-09-07T06:11:31.7149690Z [738/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-switch-zip-neon.c.o 2025-09-07T06:11:31.7173650Z [739/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-dec-zip-neon.c.o 2025-09-07T06:11:31.7486410Z [740/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-switch-zip-neon.c.o 2025-09-07T06:11:31.7763090Z [741/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-mov-zip-neon.c.o 2025-09-07T06:11:31.7766930Z [742/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-mov-zip-neon.c.o 2025-09-07T06:11:31.7820180Z [743/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u4.c.o 2025-09-07T06:11:31.7840620Z [744/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-09-07T06:11:31.7969620Z [745/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-switch-zip-neon.c.o 2025-09-07T06:11:31.8144130Z [746/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-zip-neon.c.o 2025-09-07T06:11:31.8340080Z [747/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u4.c.o 2025-09-07T06:11:31.8539480Z [748/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-neon-ld2lane-u2.c.o 2025-09-07T06:11:31.8561770Z [749/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-gio-neon-u2.c.o 2025-09-07T06:11:31.8723640Z [750/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-09-07T06:11:31.9104880Z [751/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x12-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-09-07T06:11:31.9121010Z [752/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u8.c.o 2025-09-07T06:11:31.9246000Z [753/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u8.c.o 2025-09-07T06:11:31.9313960Z [754/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u8.c.o 2025-09-07T06:11:31.9337400Z [755/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x12-gemm-goi-neon-ld4lane-u4.c.o 2025-09-07T06:11:31.9343620Z [756/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x12-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-09-07T06:11:31.9933200Z [757/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x12-gemm-goi-neon-ld4lane-u8.c.o 2025-09-07T06:11:32.0005810Z [758/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:32.0078650Z [759/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x16-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:32.0098650Z [760/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:32.0657490Z [761/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:32.0663800Z [762/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:32.0760390Z [763/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:32.0824180Z [764/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:32.0922740Z [765/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:32.1069470Z [766/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:32.1226100Z [767/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c64.c.o 2025-09-07T06:11:32.1335940Z [768/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:32.1339010Z [769/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u16.c.o 2025-09-07T06:11:32.1657900Z [770/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c16.c.o 2025-09-07T06:11:32.1953210Z [771/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u8.c.o 2025-09-07T06:11:32.1964790Z [772/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u64-acc2.c.o 2025-09-07T06:11:32.2018710Z [773/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u64-acc4.c.o 2025-09-07T06:11:32.2212960Z [774/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u8.c.o 2025-09-07T06:11:32.2250970Z [775/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u24.c.o 2025-09-07T06:11:32.2288810Z [776/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u16.c.o 2025-09-07T06:11:32.2615010Z [777/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u32.c.o 2025-09-07T06:11:32.2986370Z [778/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u8.c.o 2025-09-07T06:11:32.3099020Z [779/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u16.c.o 2025-09-07T06:11:32.3163580Z [780/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u24.c.o 2025-09-07T06:11:32.3230350Z [781/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u16.c.o 2025-09-07T06:11:32.3244730Z [782/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u8.c.o 2025-09-07T06:11:32.3254080Z [783/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u32.c.o 2025-09-07T06:11:32.3418870Z [784/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u16.c.o 2025-09-07T06:11:32.3432120Z [785/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u8.c.o 2025-09-07T06:11:32.3598180Z [786/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:32.3882890Z [787/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u16.c.o 2025-09-07T06:11:32.4317630Z [788/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld128-u16.c.o 2025-09-07T06:11:32.4481610Z [789/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2025-09-07T06:11:32.4668890Z [790/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2025-09-07T06:11:32.4670870Z [791/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2025-09-07T06:11:32.4679650Z [792/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2025-09-07T06:11:32.4840380Z [793/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-09-07T06:11:32.4900550Z [794/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2025-09-07T06:11:32.5131990Z [795/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2025-09-07T06:11:32.5152120Z [796/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2025-09-07T06:11:32.5378840Z [797/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:32.5911590Z [798/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-09-07T06:11:32.5947570Z [799/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:32.5953820Z [800/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-09-07T06:11:32.5986900Z [801/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:32.5998060Z [802/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:32.6197270Z [803/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:32.6329420Z [804/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:32.6783880Z [805/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:32.6887660Z [806/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:32.6989830Z [807/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-09-07T06:11:32.7175370Z [808/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-09-07T06:11:32.7351660Z [809/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:32.7354350Z [810/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:32.7402270Z [811/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:32.7433820Z [812/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-09-07T06:11:32.7615480Z [813/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:32.7616440Z [814/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-09-07T06:11:32.8118020Z [815/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:32.8401190Z [816/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:32.8628260Z [817/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-09-07T06:11:32.8667880Z [818/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:32.8872480Z [819/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-09-07T06:11:32.8878800Z [820/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:32.9033140Z [821/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:32.9072570Z [822/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:32.9087950Z [823/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:32.9099650Z [824/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul8.c.o 2025-09-07T06:11:32.9512460Z [825/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:32.9716680Z [826/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:32.9737510Z [827/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:33.0006990Z [828/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul8.c.o 2025-09-07T06:11:33.0445520Z [829/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:33.0547600Z [830/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:33.0583660Z [831/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:33.0592120Z [832/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:33.0767770Z [833/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:33.0819480Z [834/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul8.c.o 2025-09-07T06:11:33.0825920Z [835/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:33.1015920Z [836/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul8.c.o 2025-09-07T06:11:33.1109050Z [837/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:33.1562040Z [838/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x8-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:33.1835370Z [839/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u16.c.o 2025-09-07T06:11:33.1972560Z [840/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x8-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:11:33.2036490Z [841/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:33.2089260Z [842/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u8.c.o 2025-09-07T06:11:33.2119710Z [843/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u24.c.o 2025-09-07T06:11:33.2429680Z [844/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma.c.o 2025-09-07T06:11:33.2445580Z [845/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x16-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:11:33.2458820Z [846/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x16-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:11:33.2678230Z [847/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neonfma-dup-ld64.c.o 2025-09-07T06:11:33.2990980Z [848/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma.c.o 2025-09-07T06:11:33.3334970Z [849/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma-acc2.c.o 2025-09-07T06:11:33.3405260Z [850/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-09-07T06:11:33.3620370Z [851/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-09-07T06:11:33.3647950Z [852/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld128.c.o 2025-09-07T06:11:33.3795210Z [853/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-09-07T06:11:33.3804390Z [854/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld128.c.o 2025-09-07T06:11:33.3965350Z [855/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld64.c.o 2025-09-07T06:11:33.3970530Z [856/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neonfma.c.o 2025-09-07T06:11:33.3972710Z [857/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld128.c.o 2025-09-07T06:11:33.4643730Z [858/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neonfma.c.o 2025-09-07T06:11:33.4797200Z [859/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld128.c.o 2025-09-07T06:11:33.5035400Z [860/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld64.c.o 2025-09-07T06:11:33.5142940Z [861/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-09-07T06:11:33.5255240Z [862/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c4.c.o 2025-09-07T06:11:33.5408240Z [863/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p16.c.o 2025-09-07T06:11:33.5532230Z [864/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p4.c.o 2025-09-07T06:11:33.5576390Z [865/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neonfma.c.o 2025-09-07T06:11:33.5865700Z [866/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neonfma.c.o 2025-09-07T06:11:33.5934350Z [867/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-09-07T06:11:33.6103190Z [868/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neonfma.c.o 2025-09-07T06:11:33.6237980Z [869/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld128.c.o 2025-09-07T06:11:33.6428340Z [870/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-09-07T06:11:33.6609730Z [871/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld128.c.o 2025-09-07T06:11:33.6747310Z [872/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-09-07T06:11:33.6893210Z [873/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neonfma.c.o 2025-09-07T06:11:33.7130440Z [874/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-09-07T06:11:33.7140020Z [875/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-09-07T06:11:33.7350450Z [876/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-09-07T06:11:33.7400290Z [877/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-09-07T06:11:33.7607090Z [878/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u4.c.o 2025-09-07T06:11:33.7999500Z [879/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-09-07T06:11:33.8005550Z [880/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8s4-minmax-neonfma.c.o 2025-09-07T06:11:33.8009720Z [881/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u8-acc2.c.o 2025-09-07T06:11:33.8203770Z [882/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8s4-minmax-neonfma.c.o 2025-09-07T06:11:33.8209340Z [883/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8s4-minmax-neonfma.c.o 2025-09-07T06:11:33.8382770Z [884/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u16-acc4.c.o 2025-09-07T06:11:33.8418710Z [885/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u4.c.o 2025-09-07T06:11:33.8834030Z [886/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u8-acc2.c.o 2025-09-07T06:11:33.8953680Z [887/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc2.c.o 2025-09-07T06:11:33.8974420Z [888/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc4.c.o 2025-09-07T06:11:33.9250160Z [889/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma.c.o 2025-09-07T06:11:33.9261670Z [890/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-pipelined.c.o 2025-09-07T06:11:33.9437090Z [891/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-x2.c.o 2025-09-07T06:11:33.9497390Z [892/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-pipelined.c.o 2025-09-07T06:11:33.9695290Z [893/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma.c.o 2025-09-07T06:11:33.9704200Z [894/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neonfma.c.o 2025-09-07T06:11:33.9974490Z [895/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-x2.c.o 2025-09-07T06:11:34.0009890Z [896/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-x2.c.o 2025-09-07T06:11:34.0026650Z [897/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma.c.o 2025-09-07T06:11:34.0129850Z [898/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-pipelined.c.o 2025-09-07T06:11:34.0615730Z [899/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma.c.o 2025-09-07T06:11:34.0673210Z [900/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-x2.c.o 2025-09-07T06:11:34.0751530Z [901/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u8.c.o 2025-09-07T06:11:34.0780850Z [902/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u4.c.o 2025-09-07T06:11:34.0992310Z [903/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u12.c.o 2025-09-07T06:11:34.1095370Z [904/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neonfma-2x.c.o 2025-09-07T06:11:34.1267600Z [905/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u12.c.o 2025-09-07T06:11:34.1335890Z [906/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u8.c.o 2025-09-07T06:11:34.1491250Z [907/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u4.c.o 2025-09-07T06:11:34.1518510Z [908/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u4.c.o 2025-09-07T06:11:34.2006930Z [909/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u16.c.o 2025-09-07T06:11:34.2058380Z [910/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u12.c.o 2025-09-07T06:11:34.2187060Z [911/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-09-07T06:11:34.2240450Z [912/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-09-07T06:11:34.2359380Z [913/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-neon-ld4lane-u4.c.o 2025-09-07T06:11:34.2366130Z [914/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-neon-ld4lane-u8.c.o 2025-09-07T06:11:34.2535900Z [915/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4-prfm.c.o 2025-09-07T06:11:34.2546880Z [916/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4.c.o 2025-09-07T06:11:34.2946770Z [917/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8.c.o 2025-09-07T06:11:34.3017730Z [918/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8-prfm.c.o 2025-09-07T06:11:34.3254480Z [919/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4-prfm.c.o 2025-09-07T06:11:34.3289170Z [920/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-mov-zip-neon.c.o 2025-09-07T06:11:34.3448490Z [921/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4.c.o 2025-09-07T06:11:34.3483090Z [922/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-multi-zip-neon.c.o 2025-09-07T06:11:34.3489220Z [923/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8-prfm.c.o 2025-09-07T06:11:34.3724760Z [924/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8.c.o 2025-09-07T06:11:34.3725650Z [925/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-switch-zip-neon.c.o 2025-09-07T06:11:34.3782610Z [926/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-dec-zip-neon.c.o 2025-09-07T06:11:34.4325100Z [927/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-mov-zip-neon.c.o 2025-09-07T06:11:34.4424220Z [928/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-multi-zip-neon.c.o 2025-09-07T06:11:34.4550860Z [929/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-switch-zip-neon.c.o 2025-09-07T06:11:34.4700010Z [930/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-dec-zip-neon.c.o 2025-09-07T06:11:34.4703240Z [931/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-dec-zip-neon.c.o 2025-09-07T06:11:34.4842260Z [932/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-multi-zip-neon.c.o 2025-09-07T06:11:34.4889970Z [933/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-switch-zip-neon.c.o 2025-09-07T06:11:34.4919060Z [934/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-mov-zip-neon.c.o 2025-09-07T06:11:34.5022490Z [935/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-multi-zip-neon.c.o 2025-09-07T06:11:34.5174440Z [936/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-mov-zip-neon.c.o 2025-09-07T06:11:34.5566270Z [937/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-multi-zip-neon.c.o 2025-09-07T06:11:34.5612380Z [938/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-switch-zip-neon.c.o 2025-09-07T06:11:34.5688090Z [939/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-zip-neon.c.o 2025-09-07T06:11:34.5937080Z [940/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-switch-zip-neon.c.o 2025-09-07T06:11:34.5996970Z [941/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-mov-zip-neon.c.o 2025-09-07T06:11:34.6157510Z [942/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-multi-zip-neon.c.o 2025-09-07T06:11:34.6278060Z [943/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma-acc2.c.o 2025-09-07T06:11:34.6322160Z [944/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u8.c.o 2025-09-07T06:11:34.6455090Z [945/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-switch-zip-neon.c.o 2025-09-07T06:11:34.6540530Z [946/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u8.c.o 2025-09-07T06:11:34.7058720Z [947/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-shland.c.o 2025-09-07T06:11:34.7092990Z [948/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-shland.c.o 2025-09-07T06:11:34.7153030Z [949/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-shland.c.o 2025-09-07T06:11:34.7331260Z [950/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-zip.c.o 2025-09-07T06:11:34.7338400Z [951/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-zip.c.o 2025-09-07T06:11:34.7682130Z [952/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-zip.c.o 2025-09-07T06:11:34.7934800Z [953/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-shland.c.o 2025-09-07T06:11:34.8154760Z [954/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-zip.c.o 2025-09-07T06:11:34.8199640Z [955/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-zip.c.o 2025-09-07T06:11:34.8445780Z [956/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma-acc2.c.o 2025-09-07T06:11:34.8551440Z [957/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma.c.o 2025-09-07T06:11:34.8553960Z [958/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-shland.c.o 2025-09-07T06:11:34.8554960Z [959/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma-acc2.c.o 2025-09-07T06:11:34.8584060Z [960/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma.c.o 2025-09-07T06:11:34.8778790Z [961/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma-acc2.c.o 2025-09-07T06:11:34.8905270Z [962/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma-acc2.c.o 2025-09-07T06:11:34.9274460Z [963/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma-acc2.c.o 2025-09-07T06:11:34.9515500Z [964/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma-acc2.c.o 2025-09-07T06:11:34.9641080Z [965/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma.c.o 2025-09-07T06:11:34.9983130Z [966/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma-acc2.c.o 2025-09-07T06:11:34.9985360Z [967/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma.c.o 2025-09-07T06:11:34.9995740Z [968/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma.c.o 2025-09-07T06:11:35.0027210Z [969/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma.c.o 2025-09-07T06:11:35.0035100Z [970/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma.c.o 2025-09-07T06:11:35.0195710Z [971/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma-acc2.c.o 2025-09-07T06:11:35.0320480Z [972/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma.c.o 2025-09-07T06:11:35.0720230Z [973/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma-acc2.c.o 2025-09-07T06:11:35.0740970Z [974/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma.c.o 2025-09-07T06:11:35.0752490Z [975/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma-acc2.c.o 2025-09-07T06:11:35.1508550Z [976/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma-acc2.c.o 2025-09-07T06:11:35.1511030Z [977/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma-acc2.c.o 2025-09-07T06:11:35.1523580Z [978/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u16.c.o 2025-09-07T06:11:35.1529010Z [979/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma-acc2.c.o 2025-09-07T06:11:35.1584040Z [980/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma.c.o 2025-09-07T06:11:35.1754300Z [981/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma.c.o 2025-09-07T06:11:35.1930470Z [982/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma.c.o 2025-09-07T06:11:35.2230430Z [983/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma-acc2.c.o 2025-09-07T06:11:35.2403900Z [984/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma.c.o 2025-09-07T06:11:35.2416710Z [985/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u4.c.o 2025-09-07T06:11:35.2485100Z [986/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla_asm.S.o 2025-09-07T06:11:35.2878010Z [987/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.c.o 2025-09-07T06:11:35.2990040Z [988/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.c.o 2025-09-07T06:11:35.3122690Z [989/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.c.o 2025-09-07T06:11:35.3264160Z [990/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.c.o 2025-09-07T06:11:35.3512960Z [991/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32p_qau4c32s0s1_f32_f32_f32_neon.c.o 2025-09-07T06:11:35.3516420Z [992/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.c.o 2025-09-07T06:11:35.3693810Z [993/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla.c.o 2025-09-07T06:11:35.3701740Z [994/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.c.o 2025-09-07T06:11:35.3711010Z [995/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p16x1biasf16_6x16x8_neon_mla.c.o 2025-09-07T06:11:35.3989840Z [996/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.c.o 2025-09-07T06:11:35.4101040Z [997/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.c.o 2025-09-07T06:11:35.4285870Z [998/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.c.o 2025-09-07T06:11:35.4390180Z [999/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod_asm.S.o 2025-09-07T06:11:35.4426390Z [1000/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.c.o 2025-09-07T06:11:35.4427430Z [1001/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p1x4_bf16p12x4b_1x36_neon_dot.c.o 2025-09-07T06:11:35.4543640Z [1002/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod_asm.S.o 2025-09-07T06:11:35.4611480Z [1003/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod_asm.S.o 2025-09-07T06:11:35.4794730Z [1004/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.c.o 2025-09-07T06:11:35.4969380Z [1005/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod_asm.S.o 2025-09-07T06:11:35.5216570Z [1006/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod_asm.S.o 2025-09-07T06:11:35.5332190Z [1007/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod_asm.S.o 2025-09-07T06:11:35.5381320Z [1008/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod.c.o 2025-09-07T06:11:35.5547630Z [1009/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.c.o 2025-09-07T06:11:35.5556820Z [1010/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod_asm.S.o 2025-09-07T06:11:35.5770230Z [1011/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod.c.o 2025-09-07T06:11:35.5773100Z [1012/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.c.o 2025-09-07T06:11:35.6016130Z [1013/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm_asm.S.o 2025-09-07T06:11:35.6039860Z [1014/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.c.o 2025-09-07T06:11:35.6093950Z [1015/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm_asm.S.o 2025-09-07T06:11:35.6191860Z [1016/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.c.o 2025-09-07T06:11:35.6361820Z [1017/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.c.o 2025-09-07T06:11:35.6365670Z [1018/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm_asm.S.o 2025-09-07T06:11:35.6840640Z [1019/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.c.o 2025-09-07T06:11:35.7058010Z [1020/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm.c.o 2025-09-07T06:11:35.7085840Z [1021/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.c.o 2025-09-07T06:11:35.7254510Z [1022/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.c.o 2025-09-07T06:11:35.7364900Z [1023/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p8x4_bf16p12x4b_8x12_neon_mmla.c.o 2025-09-07T06:11:35.7390340Z [1024/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.c.o 2025-09-07T06:11:35.7515460Z [1025/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.c.o 2025-09-07T06:11:35.7577470Z [1026/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.c.o 2025-09-07T06:11:35.7593010Z [1027/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.c.o 2025-09-07T06:11:35.7849520Z [1028/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod_asm.S.o 2025-09-07T06:11:35.8004130Z [1029/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod_asm.S.o 2025-09-07T06:11:35.8111630Z [1030/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p8x4_bf16p12x4b_8x12_neon_mmla.c.o 2025-09-07T06:11:35.8234290Z [1031/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod_asm.S.o 2025-09-07T06:11:35.8339930Z [1032/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod.c.o 2025-09-07T06:11:35.8473690Z [1033/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod.c.o 2025-09-07T06:11:35.8580290Z [1034/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod_asm.S.o 2025-09-07T06:11:35.8591990Z [1035/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod_asm.S.o 2025-09-07T06:11:35.8728620Z [1036/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod.c.o 2025-09-07T06:11:35.8910150Z [1037/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod_asm.S.o 2025-09-07T06:11:35.9145340Z [1038/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod_asm.S.o 2025-09-07T06:11:35.9173550Z [1039/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod_asm.S.o 2025-09-07T06:11:35.9263360Z [1040/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod.c.o 2025-09-07T06:11:35.9323920Z [1041/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod.c.o 2025-09-07T06:11:35.9476630Z [1042/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod.c.o 2025-09-07T06:11:35.9768700Z [1043/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.c.o 2025-09-07T06:11:35.9912560Z [1044/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod.c.o 2025-09-07T06:11:35.9916040Z [1045/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.c.o 2025-09-07T06:11:35.9976000Z [1046/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp4x8_1x4x32_neon_dotprod.c.o 2025-09-07T06:11:36.0192560Z [1047/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp8x8_1x8x32_neon_dotprod.c.o 2025-09-07T06:11:36.0418940Z [1048/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x4_16x4x32_neon_dotprod.c.o 2025-09-07T06:11:36.0595370Z [1049/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.c.o 2025-09-07T06:11:36.0749340Z [1050/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.c.o 2025-09-07T06:11:36.0769390Z [1051/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi4cxp8x4_8x8x32_neon_dotprod.c.o 2025-09-07T06:11:36.0909180Z [1052/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.c.o 2025-09-07T06:11:36.1093270Z [1053/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm_asm.S.o 2025-09-07T06:11:36.1220220Z [1054/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm.c.o 2025-09-07T06:11:36.1235320Z [1055/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.c.o 2025-09-07T06:11:36.1396270Z [1056/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.c.o 2025-09-07T06:11:36.1406020Z [1057/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm_asm.S.o 2025-09-07T06:11:36.1420700Z [1058/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.c.o 2025-09-07T06:11:36.1577550Z [1059/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm_asm.S.o 2025-09-07T06:11:36.1635470Z [1060/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm.c.o 2025-09-07T06:11:36.2111560Z [1061/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm_asm.S.o 2025-09-07T06:11:36.2214230Z [1062/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm.c.o 2025-09-07T06:11:36.2317730Z [1063/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:11:36.2324910Z [1064/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x1-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:36.2331440Z [1065/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:36.2332480Z [1066/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:11:36.2334180Z [1067/5254] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm_asm.S.o 2025-09-07T06:11:36.2335400Z [1068/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:36.2424130Z [1069/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-09-07T06:11:36.2552930Z [1070/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm.c.o 2025-09-07T06:11:36.3105780Z [1071/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:11:36.3210130Z [1072/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:11:36.3311440Z [1073/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-goi-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:36.3312370Z [1074/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:11:36.3314550Z [1075/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:36.3319640Z [1076/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-09-07T06:11:36.3326910Z [1077/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:11:36.3334460Z [1078/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-goi-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-09-07T06:11:36.3345350Z [1079/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-goi-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:36.3528140Z [1080/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:11:36.4097370Z [1081/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-09-07T06:11:36.4149620Z [1082/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:36.4272210Z [1083/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-09-07T06:11:36.4301670Z [1084/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-09-07T06:11:36.4308880Z [1085/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-09-07T06:11:36.4340080Z [1086/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:36.4351970Z [1087/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:36.4359280Z [1088/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:11:36.4363180Z [1089/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:11:36.4568600Z [1090/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:11:36.5126240Z [1091/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:11:36.5159520Z [1092/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-09-07T06:11:36.5322520Z [1093/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:11:36.5357270Z [1094/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/f32-igemm-1x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-09-07T06:11:36.5384980Z [1095/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-09-07T06:11:36.5408240Z [1096/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S.o 2025-09-07T06:11:36.5416860Z [1097/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:36.5427030Z [1098/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:36.5681830Z [1099/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:11:36.5683380Z [1100/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/f32-igemm-4x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-09-07T06:11:36.6323260Z [1101/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:36.6439790Z [1102/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:11:36.6465050Z [1103/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2025-09-07T06:11:36.6468070Z [1104/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:11:36.6470610Z [1105/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:36.6549370Z [1106/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:11:36.6668310Z [1107/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:11:36.6784470Z [1108/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:11:36.6863920Z [1109/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:36.6897690Z [1110/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:11:36.7491370Z [1111/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-09-07T06:11:36.7595020Z [1112/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-09-07T06:11:36.7605150Z [1113/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:36.7609400Z [1114/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:11:36.7610560Z [1115/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2.S.o 2025-09-07T06:11:36.7611620Z [1116/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2-prfm.S.o 2025-09-07T06:11:36.7613960Z [1117/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2-prfm.S.o 2025-09-07T06:11:36.7619410Z [1118/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:11:36.7620280Z [1119/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2.S.o 2025-09-07T06:11:36.7621100Z [1120/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:36.8424010Z [1121/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4-prfm.S.o 2025-09-07T06:11:36.8537120Z [1122/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4.S.o 2025-09-07T06:11:36.8543540Z [1123/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2025-09-07T06:11:36.8554540Z [1124/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:36.8568730Z [1125/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4-prfm.S.o 2025-09-07T06:11:36.8575710Z [1126/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4.S.o 2025-09-07T06:11:36.8587080Z [1127/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2-prfm.S.o 2025-09-07T06:11:36.8591310Z [1128/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:36.8593900Z [1129/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-09-07T06:11:36.8602380Z [1130/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2.S.o 2025-09-07T06:11:36.9348140Z [1131/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x1-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:36.9362010Z [1132/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x1-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:36.9383750Z [1133/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:36.9416510Z [1134/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:36.9426730Z [1135/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:36.9443060Z [1136/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2-prfm.S.o 2025-09-07T06:11:36.9453580Z [1137/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:36.9461930Z [1138/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:36.9470380Z [1139/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:36.9477820Z [1140/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2.S.o 2025-09-07T06:11:37.0336970Z [1141/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2-prfm.S.o 2025-09-07T06:11:37.0362430Z [1142/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2.S.o 2025-09-07T06:11:37.0364960Z [1143/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:37.0367480Z [1144/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2025-09-07T06:11:37.0421550Z [1145/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4-prfm.S.o 2025-09-07T06:11:37.0431060Z [1146/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4.S.o 2025-09-07T06:11:37.0439230Z [1147/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2.S.o 2025-09-07T06:11:37.0448560Z [1148/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-09-07T06:11:37.0457160Z [1149/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4-prfm.S.o 2025-09-07T06:11:37.0682640Z [1150/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2-prfm.S.o 2025-09-07T06:11:37.1270900Z [1151/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x1-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:37.1280150Z [1152/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:37.1299830Z [1153/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x1-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:37.1305530Z [1154/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:37.1334360Z [1155/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:37.1358790Z [1156/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:37.1393810Z [1157/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:37.1522610Z [1158/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-ld64.S.o 2025-09-07T06:11:37.1609960Z [1159/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53.S.o 2025-09-07T06:11:37.1670650Z [1160/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c4-minmax-fp32-asm-aarch64-neondot-ld32.S.o 2025-09-07T06:11:37.2312840Z [1161/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53.S.o 2025-09-07T06:11:37.2314980Z [1162/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mull.S.o 2025-09-07T06:11:37.2330170Z [1163/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c4-minmax-fp32-asm-aarch64-neondot-ld64.S.o 2025-09-07T06:11:37.2340700Z [1164/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-09-07T06:11:37.2343720Z [1165/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld32.S.o 2025-09-07T06:11:37.2356790Z [1166/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld64.S.o 2025-09-07T06:11:37.2362060Z [1167/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-ld64-prfm.S.o 2025-09-07T06:11:37.2363010Z [1168/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c16-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-09-07T06:11:37.2552790Z [1169/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53.S.o 2025-09-07T06:11:37.2692710Z [1170/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53.S.o 2025-09-07T06:11:37.3356670Z [1171/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64-prfm.S.o 2025-09-07T06:11:37.3387570Z [1172/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-09-07T06:11:37.3390260Z [1173/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c16-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-09-07T06:11:37.3395060Z [1174/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64.S.o 2025-09-07T06:11:37.3418480Z [1175/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-ld64-prfm.S.o 2025-09-07T06:11:37.3444640Z [1176/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-09-07T06:11:37.3445650Z [1177/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-09-07T06:11:37.3451090Z [1178/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu16-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-09-07T06:11:37.3488950Z [1179/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld64.S.o 2025-09-07T06:11:37.3638120Z [1180/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64-prfm.S.o 2025-09-07T06:11:37.4292380Z [1181/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu16-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-09-07T06:11:37.4403600Z [1182/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64.S.o 2025-09-07T06:11:37.4829750Z [1183/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.c.o 2025-09-07T06:11:37.4934490Z [1184/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.c.o 2025-09-07T06:11:37.5004890Z [1185/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.c.o 2025-09-07T06:11:37.5032140Z [1186/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.c.o 2025-09-07T06:11:37.5050670Z [1187/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.c.o 2025-09-07T06:11:37.5061160Z [1188/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.c.o 2025-09-07T06:11:37.5342070Z [1189/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.c.o 2025-09-07T06:11:37.5451270Z [1190/5254] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.c.o 2025-09-07T06:11:37.5784710Z [1191/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x8-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:37.5851170Z [1192/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:37.6102850Z [1193/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x8-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:37.6222020Z [1194/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p16.c.o 2025-09-07T06:11:37.6326950Z [1195/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x16-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:37.6329320Z [1196/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p4.c.o 2025-09-07T06:11:37.6333660Z [1197/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x8-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:37.6361320Z [1198/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x16-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:37.6772210Z [1199/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c16.c.o 2025-09-07T06:11:37.7011840Z [1200/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x8-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:37.7050030Z [1201/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x16-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:37.7273110Z [1202/5254] Linking C static library lib/libkleidiai.a 2025-09-07T06:11:37.7573080Z [1203/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc4.c.o 2025-09-07T06:11:37.7640080Z [1204/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc2.c.o 2025-09-07T06:11:37.7761780Z [1205/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u24.c.o 2025-09-07T06:11:37.7832500Z [1206/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u64.c.o 2025-09-07T06:11:37.7845460Z [1207/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u16.c.o 2025-09-07T06:11:37.7849430Z [1208/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u8.c.o 2025-09-07T06:11:37.8032370Z [1209/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc2.c.o 2025-09-07T06:11:37.8425080Z [1210/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40.c.o 2025-09-07T06:11:37.8528950Z [1211/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc5.c.o 2025-09-07T06:11:37.8666770Z [1212/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc2.c.o 2025-09-07T06:11:37.8673490Z [1213/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc3.c.o 2025-09-07T06:11:37.8858710Z [1214/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48.c.o 2025-09-07T06:11:37.9126970Z [1215/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc2.c.o 2025-09-07T06:11:37.9305460Z [1216/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72-acc3.c.o 2025-09-07T06:11:37.9332390Z [1217/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64.c.o 2025-09-07T06:11:37.9427360Z [1218/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc4.c.o 2025-09-07T06:11:37.9530320Z [1219/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72.c.o 2025-09-07T06:11:37.9656380Z [1220/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc2.c.o 2025-09-07T06:11:37.9673330Z [1221/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc5.c.o 2025-09-07T06:11:37.9814410Z [1222/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc2.c.o 2025-09-07T06:11:37.9964460Z [1223/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc3.c.o 2025-09-07T06:11:38.0372690Z [1224/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80.c.o 2025-09-07T06:11:38.0478710Z [1225/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc6.c.o 2025-09-07T06:11:38.0689190Z [1226/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96.c.o 2025-09-07T06:11:38.0703110Z [1227/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u8.c.o 2025-09-07T06:11:38.0708010Z [1228/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u16-acc2.c.o 2025-09-07T06:11:38.0709990Z [1229/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u24-acc3.c.o 2025-09-07T06:11:38.0888910Z [1230/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc2.c.o 2025-09-07T06:11:38.0893130Z [1231/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u8.c.o 2025-09-07T06:11:38.0992100Z [1232/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc1.c.o 2025-09-07T06:11:38.1286350Z [1233/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc2.c.o 2025-09-07T06:11:38.1781950Z [1234/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc3.c.o 2025-09-07T06:11:38.1870590Z [1235/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc2.c.o 2025-09-07T06:11:38.2016420Z [1236/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc2.c.o 2025-09-07T06:11:38.2030350Z [1237/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc4.c.o 2025-09-07T06:11:38.2047120Z [1238/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24.c.o 2025-09-07T06:11:38.2194540Z [1239/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc2.c.o 2025-09-07T06:11:38.2212950Z [1240/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32.c.o 2025-09-07T06:11:38.2303420Z [1241/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64.c.o 2025-09-07T06:11:38.2544240Z [1242/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc4.c.o 2025-09-07T06:11:38.2647660Z [1243/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u8.c.o 2025-09-07T06:11:38.3045820Z [1244/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc1.c.o 2025-09-07T06:11:38.3109010Z [1245/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc2.c.o 2025-09-07T06:11:38.3344140Z [1246/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc2.c.o 2025-09-07T06:11:38.3461530Z [1247/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24.c.o 2025-09-07T06:11:38.3478020Z [1248/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc2.c.o 2025-09-07T06:11:38.3597780Z [1249/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32.c.o 2025-09-07T06:11:38.3628650Z [1250/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc2.c.o 2025-09-07T06:11:38.3690070Z [1251/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc3.c.o 2025-09-07T06:11:38.3967790Z [1252/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64.c.o 2025-09-07T06:11:38.3969830Z [1253/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc4.c.o 2025-09-07T06:11:38.4228970Z [1254/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-pipelined.c.o 2025-09-07T06:11:38.4405270Z [1255/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x1-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:38.4466840Z [1256/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u8.c.o 2025-09-07T06:11:38.4588190Z [1257/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-09-07T06:11:38.4621620Z [1258/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u16-acc2.c.o 2025-09-07T06:11:38.4704880Z [1259/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u24-acc3.c.o 2025-09-07T06:11:38.4707280Z [1260/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc2.c.o 2025-09-07T06:11:38.5497560Z [1261/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc4.c.o 2025-09-07T06:11:38.5691970Z [1262/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u2.c.o 2025-09-07T06:11:38.5696590Z [1263/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.5967810Z [1264/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u1.c.o 2025-09-07T06:11:38.6209210Z [1265/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.6251270Z [1266/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.6258830Z [1267/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.6281330Z [1268/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.6328070Z [1269/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.6366780Z [1270/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u4.c.o 2025-09-07T06:11:38.7216550Z [1271/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-5x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.7313700Z [1272/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-5x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.7363900Z [1273/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-6x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.7452760Z [1274/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.7544360Z [1275/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-6x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.7683900Z [1276/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.7687570Z [1277/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-3x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.7742430Z [1278/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-2x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.8111940Z [1279/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-2x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.8261890Z [1280/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-3x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.8633090Z [1281/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-5x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.8640840Z [1282/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-6x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.8804960Z [1283/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-5x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.9201620Z [1284/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-6x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.9257620Z [1285/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-2x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.9356190Z [1286/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-2x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.9358750Z [1287/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-3x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.9504700Z [1288/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-3x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.9629260Z [1289/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-5x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:38.9767330Z [1290/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-5x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:39.0225600Z [1291/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-6x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:39.0267240Z [1292/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x32c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:39.0473860Z [1293/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-6x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:39.0589870Z [1294/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-2x32c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:39.0600430Z [1295/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-6x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:39.0642110Z [1296/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-2x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:39.0844940Z [1297/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x32c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:39.0919950Z [1298/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-6x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:39.1133230Z [1299/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-2x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:39.1135660Z [1300/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-6x32c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:39.1605670Z [1301/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-8x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:39.1653840Z [1302/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-8x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:39.1801090Z [1303/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-8x32c4-minmax-neondotfp16arith.c.o 2025-09-07T06:11:39.1884450Z [1304/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.1958130Z [1305/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.2035350Z [1306/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.2188320Z [1307/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.2460420Z [1308/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.2682020Z [1309/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.3131990Z [1310/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.3132840Z [1311/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.3236130Z [1312/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.3238370Z [1313/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.3247690Z [1314/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.3265440Z [1315/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.3416300Z [1316/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.3420490Z [1317/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.4150510Z [1318/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.4198500Z [1319/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.4307610Z [1320/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.4474150Z [1321/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.4477280Z [1322/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.4620930Z [1323/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.4649750Z [1324/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.4713850Z [1325/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.4831070Z [1326/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.4871280Z [1327/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.5499590Z [1328/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.5550750Z [1329/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.5837040Z [1330/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.5843020Z [1331/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.5974500Z [1332/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.6051710Z [1333/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.6127560Z [1334/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.6137520Z [1335/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.6325030Z [1336/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.6334370Z [1337/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.6833660Z [1338/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.6959240Z [1339/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:11:39.7159770Z [1340/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith.c.o 2025-09-07T06:11:39.7351160Z [1341/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-1x8-acc2.c.o 2025-09-07T06:11:39.7430130Z [1342/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-1x8-acc3.c.o 2025-09-07T06:11:39.7514030Z [1343/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-1x8-acc4.c.o 2025-09-07T06:11:39.7663650Z [1344/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-3x8.c.o 2025-09-07T06:11:39.7670870Z [1345/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-2x8-acc2.c.o 2025-09-07T06:11:39.7731960Z [1346/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-1x8.c.o 2025-09-07T06:11:39.7908520Z [1347/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-4x8.c.o 2025-09-07T06:11:39.8230660Z [1348/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-5x8.c.o 2025-09-07T06:11:39.8403990Z [1349/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-6x8.c.o 2025-09-07T06:11:39.8514700Z [1350/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-1x8-acc2.c.o 2025-09-07T06:11:39.8632650Z [1351/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-1x8-acc3.c.o 2025-09-07T06:11:39.9033200Z [1352/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-1x8-acc4.c.o 2025-09-07T06:11:39.9081770Z [1353/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-2x8-acc2.c.o 2025-09-07T06:11:39.9200660Z [1354/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-2x8.c.o 2025-09-07T06:11:39.9286750Z [1355/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8-acc2.c.o 2025-09-07T06:11:39.9410330Z [1356/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-4x8.c.o 2025-09-07T06:11:39.9464230Z [1357/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-3x8.c.o 2025-09-07T06:11:39.9726880Z [1358/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8-acc3.c.o 2025-09-07T06:11:39.9733640Z [1359/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8-acc5.c.o 2025-09-07T06:11:39.9851960Z [1360/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-2x8-acc2.c.o 2025-09-07T06:11:39.9984110Z [1361/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8-acc4.c.o 2025-09-07T06:11:40.0206980Z [1362/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-2x8-acc3.c.o 2025-09-07T06:11:40.0485290Z [1363/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-2x8.c.o 2025-09-07T06:11:40.0894070Z [1364/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-4x8.c.o 2025-09-07T06:11:40.0980370Z [1365/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-3x8-acc2.c.o 2025-09-07T06:11:40.1053520Z [1366/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-3x8.c.o 2025-09-07T06:11:40.1138840Z [1367/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-4x8-acc2.c.o 2025-09-07T06:11:40.1196410Z [1368/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-5x8.c.o 2025-09-07T06:11:40.1240570Z [1369/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8-acc2.c.o 2025-09-07T06:11:40.1359270Z [1370/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8-acc3.c.o 2025-09-07T06:11:40.1418470Z [1371/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8-acc4.c.o 2025-09-07T06:11:40.1426350Z [1372/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8-acc5.c.o 2025-09-07T06:11:40.1693600Z [1373/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-2x8-acc2.c.o 2025-09-07T06:11:40.2148230Z [1374/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-2x8-acc3.c.o 2025-09-07T06:11:40.2371380Z [1375/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-3x8-acc2.c.o 2025-09-07T06:11:40.2489490Z [1376/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-2x8.c.o 2025-09-07T06:11:40.2586140Z [1377/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-3x8.c.o 2025-09-07T06:11:40.2739250Z [1378/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-minmax-neonfp16arith-c32.c.o 2025-09-07T06:11:40.2767680Z [1379/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u16-acc2.c.o 2025-09-07T06:11:40.2783130Z [1380/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u24-acc3.c.o 2025-09-07T06:11:40.2905520Z [1381/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-minmax-neonfp16arith-c64.c.o 2025-09-07T06:11:40.3088980Z [1382/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u4.c.o 2025-09-07T06:11:40.3108100Z [1383/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u8.c.o 2025-09-07T06:11:40.3320150Z [1384/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u32-acc2.c.o 2025-09-07T06:11:40.3854450Z [1385/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:40.3914660Z [1386/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x8-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:40.3963000Z [1387/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:40.4083060Z [1388/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x8-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:40.4305800Z [1389/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u8.c.o 2025-09-07T06:11:40.4454090Z [1390/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x16-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:11:40.4513340Z [1391/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-09-07T06:11:40.4685090Z [1392/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-09-07T06:11:40.4745540Z [1393/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x16-minmax-neonfp16arith-mlal-lane.c.o 2025-09-07T06:11:40.4981070Z [1394/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-09-07T06:11:40.5216470Z [1395/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x16-minmax-neonfp16arith-mlal-lane.c.o 2025-09-07T06:11:40.5529110Z [1396/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x16-minmax-neonfp16arith-mlal-lane.c.o 2025-09-07T06:11:40.5631090Z [1397/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-6x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-09-07T06:11:40.5763930Z [1398/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-09-07T06:11:40.5776280Z [1399/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-09-07T06:11:40.5933010Z [1400/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-2x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-09-07T06:11:40.6174340Z [1401/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-2x16-minmax-neonfp16arith-mlal-lane.c.o 2025-09-07T06:11:40.6530560Z [1402/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-3x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-09-07T06:11:40.6554200Z [1403/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-3x16-minmax-neonfp16arith-mlal-lane.c.o 2025-09-07T06:11:40.6735410Z [1404/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u8.c.o 2025-09-07T06:11:40.6743800Z [1405/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u8.c.o 2025-09-07T06:11:40.6846590Z [1406/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x16-minmax-neonfp16arith-mlal-lane.c.o 2025-09-07T06:11:40.6952630Z [1407/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-09-07T06:11:40.6953700Z [1408/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u16.c.o 2025-09-07T06:11:40.7094100Z [1409/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u24.c.o 2025-09-07T06:11:40.7546150Z [1410/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u16.c.o 2025-09-07T06:11:40.7708130Z [1411/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-6x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-09-07T06:11:40.7885760Z [1412/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u24.c.o 2025-09-07T06:11:40.7912910Z [1413/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-aarch64-neonfp16arith-u16.c.o 2025-09-07T06:11:40.7927920Z [1414/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-aarch64-neonfp16arith-u16.c.o 2025-09-07T06:11:40.8118670Z [1415/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-aarch64-neonfp16arith-u16.c.o 2025-09-07T06:11:40.8122410Z [1416/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u32.c.o 2025-09-07T06:11:40.8126900Z [1417/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u16.c.o 2025-09-07T06:11:40.8261930Z [1418/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u32.c.o 2025-09-07T06:11:40.8687340Z [1419/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u8.c.o 2025-09-07T06:11:40.9087040Z [1420/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u16.c.o 2025-09-07T06:11:40.9191130Z [1421/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u24.c.o 2025-09-07T06:11:40.9476950Z [1422/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x8c4-minmax-neondot.c.o 2025-09-07T06:11:40.9480120Z [1423/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x8c4-minmax-neondot.c.o 2025-09-07T06:11:40.9482840Z [1424/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x8c4-minmax-neondot.c.o 2025-09-07T06:11:40.9490720Z [1425/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x16c4-minmax-neondot.c.o 2025-09-07T06:11:40.9708030Z [1426/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x16c4-minmax-neondot.c.o 2025-09-07T06:11:40.9711570Z [1427/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-5x8c4-minmax-neondot.c.o 2025-09-07T06:11:40.9720300Z [1428/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x8c4-minmax-neondot.c.o 2025-09-07T06:11:41.0558740Z [1429/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-5x16c4-minmax-neondot.c.o 2025-09-07T06:11:41.0688500Z [1430/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-6x8c4-minmax-neondot.c.o 2025-09-07T06:11:41.0782640Z [1431/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-6x16c4-minmax-neondot.c.o 2025-09-07T06:11:41.1051530Z [1432/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x8c4-minmax-neondot.c.o 2025-09-07T06:11:41.1067300Z [1433/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-6x8c4-minmax-neondot.c.o 2025-09-07T06:11:41.1111290Z [1434/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-3x16c4-minmax-neondot.c.o 2025-09-07T06:11:41.1131970Z [1435/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-6x16c4-minmax-neondot.c.o 2025-09-07T06:11:41.1323170Z [1436/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x8c4-minmax-neondot.c.o 2025-09-07T06:11:41.1340170Z [1437/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x16c4-minmax-neondot.c.o 2025-09-07T06:11:41.1348070Z [1438/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x8c4-minmax-neondot.c.o 2025-09-07T06:11:41.1972040Z [1439/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c8-minmax-neondot-ld64.c.o 2025-09-07T06:11:41.2005850Z [1440/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-neondot-ld64.c.o 2025-09-07T06:11:41.2152140Z [1441/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8c4-minmax-neondot.c.o 2025-09-07T06:11:41.2722870Z [1442/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x16c4-minmax-neondot.c.o 2025-09-07T06:11:41.2818590Z [1443/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x16c4-minmax-neondot.c.o 2025-09-07T06:11:41.2821310Z [1444/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-5x8c4-minmax-neondot.c.o 2025-09-07T06:11:41.2825130Z [1445/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-5x16c4-minmax-neondot.c.o 2025-09-07T06:11:41.3051990Z [1446/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x8c4-minmax-neondot.c.o 2025-09-07T06:11:41.3106770Z [1447/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x16c4-minmax-neondot.c.o 2025-09-07T06:11:41.3380250Z [1448/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-neondot-ld64.c.o 2025-09-07T06:11:41.3389620Z [1449/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x32c4-minmax-neondot.c.o 2025-09-07T06:11:41.3458760Z [1450/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c8-minmax-neondot-ld64.c.o 2025-09-07T06:11:41.3592150Z [1451/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x8c4-minmax-neondot.c.o 2025-09-07T06:11:41.4019520Z [1452/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8c4-minmax-neondot.c.o 2025-09-07T06:11:41.4121850Z [1453/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x16c4-minmax-neondot.c.o 2025-09-07T06:11:41.4353540Z [1454/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x8c4-minmax-neondot.c.o 2025-09-07T06:11:41.4461240Z [1455/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x32c4-minmax-neondot.c.o 2025-09-07T06:11:41.4733650Z [1456/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x32c4-minmax-neondot.c.o 2025-09-07T06:11:41.4785390Z [1457/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x8c4-minmax-neondot.c.o 2025-09-07T06:11:41.4803780Z [1458/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x16c4-minmax-neondot.c.o 2025-09-07T06:11:41.4806050Z [1459/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x16c4-minmax-neondot.c.o 2025-09-07T06:11:41.4913300Z [1460/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x32c4-minmax-neondot.c.o 2025-09-07T06:11:41.5239880Z [1461/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x32c4-minmax-neondot.c.o 2025-09-07T06:11:41.5557150Z [1462/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-neondot-ld64.c.o 2025-09-07T06:11:41.5943910Z [1463/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8c4-minmax-fp32-neondot.c.o 2025-09-07T06:11:41.6058720Z [1464/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16c4-minmax-fp32-neondot.c.o 2025-09-07T06:11:41.6090050Z [1465/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-neondot-ld64.c.o 2025-09-07T06:11:41.6260230Z [1466/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-8x8c4-minmax-fp32-neondot.c.o 2025-09-07T06:11:41.6411930Z [1467/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-neondot-ld64.c.o 2025-09-07T06:11:41.6416670Z [1468/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-8x16c4-minmax-fp32-neondot.c.o 2025-09-07T06:11:41.6532420Z [1469/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-fp32-neondot-ld64.c.o 2025-09-07T06:11:41.6619700Z [1470/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8c4-minmax-fp32-neondot.c.o 2025-09-07T06:11:41.6641540Z [1471/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16c4-minmax-fp32-neondot.c.o 2025-09-07T06:11:41.7175140Z [1472/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-8x8c4-minmax-fp32-neondot.c.o 2025-09-07T06:11:41.7186370Z [1473/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u16.c.o 2025-09-07T06:11:41.7416890Z [1474/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c8-minmax-aarch64-neondot-ld128.c.o 2025-09-07T06:11:41.7439250Z [1475/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-8x16c4-minmax-fp32-neondot.c.o 2025-09-07T06:11:41.7828010Z [1476/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-aarch64-neondot-ld128.c.o 2025-09-07T06:11:41.7878570Z [1477/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qp8-f32-qc4w-gemm/qp8-f32-qc4w-gemm-minmax-1x4c16s2-aarch64-neondot.c.o 2025-09-07T06:11:41.8148240Z [1478/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u64-acc4.c.o 2025-09-07T06:11:41.8159960Z [1479/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u64-acc2.c.o 2025-09-07T06:11:41.8227840Z [1480/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-aarch64-neondot-ld128.c.o 2025-09-07T06:11:41.8442010Z [1481/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c8-minmax-aarch64-neondot-ld128.c.o 2025-09-07T06:11:41.8516710Z [1482/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-aarch64-neondot-ld128.c.o 2025-09-07T06:11:41.8547650Z [1483/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-09-07T06:11:41.8636540Z [1484/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-aarch64-neondot-ld128.c.o 2025-09-07T06:11:41.8661180Z [1485/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-09-07T06:11:41.8841510Z [1486/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-aarch64-neondot-ld128.c.o 2025-09-07T06:11:41.8924990Z [1487/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-09-07T06:11:41.8925930Z [1488/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-09-07T06:11:41.8991060Z [1489/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-09-07T06:11:41.9144970Z [1490/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-09-07T06:11:41.9303130Z [1491/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-fp32-aarch64-neondot-ld128.c.o 2025-09-07T06:11:41.9484380Z [1492/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-09-07T06:11:41.9488520Z [1493/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-09-07T06:11:41.9501840Z [1494/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-09-07T06:11:41.9519840Z [1495/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-09-07T06:11:41.9717210Z [1496/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-09-07T06:11:41.9838420Z [1497/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S.o 2025-09-07T06:11:41.9896250Z [1498/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-09-07T06:11:42.0023190Z [1499/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S.o 2025-09-07T06:11:42.0133920Z [1500/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-09-07T06:11:42.0250220Z [1501/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-09-07T06:11:42.0457330Z [1502/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-09-07T06:11:42.0464390Z [1503/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma.S.o 2025-09-07T06:11:42.0487760Z [1504/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-09-07T06:11:42.0531740Z [1505/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-09-07T06:11:42.0738960Z [1506/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2-prfm.S.o 2025-09-07T06:11:42.0776640Z [1507/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2.S.o 2025-09-07T06:11:42.0865990Z [1508/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2-prfm.S.o 2025-09-07T06:11:42.1045780Z [1509/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2.S.o 2025-09-07T06:11:42.1089610Z [1510/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4-prfm.S.o 2025-09-07T06:11:42.1314700Z [1511/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4.S.o 2025-09-07T06:11:42.1380330Z [1512/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2-prfm.S.o 2025-09-07T06:11:42.1384030Z [1513/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2025-09-07T06:11:42.1571440Z [1514/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:11:42.1572440Z [1515/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4-prfm.S.o 2025-09-07T06:11:42.2298220Z [1516/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-pipelined.c.o 2025-09-07T06:11:42.2480620Z [1517/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-x2.c.o 2025-09-07T06:11:42.2487300Z [1518/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-pipelined.c.o 2025-09-07T06:11:42.2514680Z [1519/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith.c.o 2025-09-07T06:11:42.2530030Z [1520/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-x2.c.o 2025-09-07T06:11:42.2689430Z [1521/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith.c.o 2025-09-07T06:11:42.2749290Z [1522/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-x2.c.o 2025-09-07T06:11:42.2855250Z [1523/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-x2.c.o 2025-09-07T06:11:42.2905290Z [1524/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith.c.o 2025-09-07T06:11:42.3084050Z [1525/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith.c.o 2025-09-07T06:11:42.3730500Z [1526/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-neonfp16arith-u8.c.o 2025-09-07T06:11:42.3739680Z [1527/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u8.c.o 2025-09-07T06:11:42.3751240Z [1528/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u8.c.o 2025-09-07T06:11:42.3826950Z [1529/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u8.c.o 2025-09-07T06:11:42.3839630Z [1530/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-neonfp16arith-u8.c.o 2025-09-07T06:11:42.4046280Z [1531/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u8.c.o 2025-09-07T06:11:42.4055380Z [1532/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-neonfp16arith-u8.c.o 2025-09-07T06:11:42.4424910Z [1533/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-neonfp16arith-u8.c.o 2025-09-07T06:11:42.4626010Z [1534/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vpreluc-neonfp16arith-u8.c.o 2025-09-07T06:11:42.4817390Z [1535/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vprelu-neonfp16arith-u8.c.o 2025-09-07T06:11:42.5028510Z [1536/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-neonfp16arith-u8.c.o 2025-09-07T06:11:42.5034260Z [1537/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u8.c.o 2025-09-07T06:11:42.5045050Z [1538/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-neonfp16arith-u8.c.o 2025-09-07T06:11:42.5050070Z [1539/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrpreluc-neonfp16arith-u8.c.o 2025-09-07T06:11:42.5211800Z [1540/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u8.c.o 2025-09-07T06:11:42.5314720Z [1541/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u8.c.o 2025-09-07T06:11:42.5407110Z [1542/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-neonfp16arith-u8.c.o 2025-09-07T06:11:42.5754990Z [1543/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c16-minmax-neonfp16arith-2x.c.o 2025-09-07T06:11:42.5942090Z [1544/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u8.c.o 2025-09-07T06:11:42.6073550Z [1545/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u32.c.o 2025-09-07T06:11:42.6542420Z [1546/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u8.c.o 2025-09-07T06:11:42.6646670Z [1547/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u8.c.o 2025-09-07T06:11:42.6665220Z [1548/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u8.c.o 2025-09-07T06:11:42.6669330Z [1549/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u8.c.o 2025-09-07T06:11:42.6677720Z [1550/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u8.c.o 2025-09-07T06:11:42.6851560Z [1551/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u8.c.o 2025-09-07T06:11:42.6991750Z [1552/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u8.c.o 2025-09-07T06:11:42.7480830Z [1553/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u8.c.o 2025-09-07T06:11:42.7540870Z [1554/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u8.c.o 2025-09-07T06:11:42.7736190Z [1555/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u32.c.o 2025-09-07T06:11:42.7757410Z [1556/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u16.c.o 2025-09-07T06:11:42.7799950Z [1557/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u24.c.o 2025-09-07T06:11:42.7996240Z [1558/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u24.c.o 2025-09-07T06:11:42.8015820Z [1559/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u32.c.o 2025-09-07T06:11:42.8023430Z [1560/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u8.c.o 2025-09-07T06:11:42.8042160Z [1561/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u8.c.o 2025-09-07T06:11:42.8216840Z [1562/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u16.c.o 2025-09-07T06:11:42.8771040Z [1563/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u16.c.o 2025-09-07T06:11:42.8916640Z [1564/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u32.c.o 2025-09-07T06:11:42.9081940Z [1565/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u24.c.o 2025-09-07T06:11:42.9107120Z [1566/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u8.c.o 2025-09-07T06:11:42.9219300Z [1567/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u32.c.o 2025-09-07T06:11:42.9223510Z [1568/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u8.c.o 2025-09-07T06:11:42.9241350Z [1569/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u16.c.o 2025-09-07T06:11:42.9404970Z [1570/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u24.c.o 2025-09-07T06:11:42.9407210Z [1571/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u24.c.o 2025-09-07T06:11:42.9440390Z [1572/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u16.c.o 2025-09-07T06:11:42.9590260Z [1573/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-09-07T06:11:43.0018610Z [1574/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:11:43.0162910Z [1575/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u32.c.o 2025-09-07T06:11:43.0287290Z [1576/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u4.c.o 2025-09-07T06:11:43.0405220Z [1577/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u8.c.o 2025-09-07T06:11:43.0410780Z [1578/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u2.c.o 2025-09-07T06:11:43.0509250Z [1579/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u1.c.o 2025-09-07T06:11:43.0559180Z [1580/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u2.c.o 2025-09-07T06:11:43.0717930Z [1581/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u8.c.o 2025-09-07T06:11:43.0752370Z [1582/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u2.c.o 2025-09-07T06:11:43.1046380Z [1583/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u2.c.o 2025-09-07T06:11:43.1180950Z [1584/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u2.c.o 2025-09-07T06:11:43.1281330Z [1585/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-u1.c.o 2025-09-07T06:11:43.1412530Z [1586/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-u2.c.o 2025-09-07T06:11:43.1453040Z [1587/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-u4.c.o 2025-09-07T06:11:43.1606150Z [1588/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u2.c.o 2025-09-07T06:11:43.1610660Z [1589/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u4.c.o 2025-09-07T06:11:43.1709400Z [1590/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u1.c.o 2025-09-07T06:11:43.1911890Z [1591/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x8-minmax-scalar.c.o 2025-09-07T06:11:43.2104250Z [1592/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x4-minmax-scalar.c.o 2025-09-07T06:11:43.2199270Z [1593/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u4.c.o 2025-09-07T06:11:43.2443700Z [1594/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u2.c.o 2025-09-07T06:11:43.2562340Z [1595/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x2-minmax-scalar.c.o 2025-09-07T06:11:43.2568050Z [1596/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x2-minmax-scalar.c.o 2025-09-07T06:11:43.2592790Z [1597/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x4-minmax-scalar.c.o 2025-09-07T06:11:43.2776380Z [1598/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x8-minmax-scalar.c.o 2025-09-07T06:11:43.2794340Z [1599/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x2-minmax-scalar.c.o 2025-09-07T06:11:43.2909680Z [1600/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x4-minmax-scalar.c.o 2025-09-07T06:11:43.3432530Z [1601/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x4-minmax-scalar.c.o 2025-09-07T06:11:43.3523420Z [1602/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x8-minmax-scalar.c.o 2025-09-07T06:11:43.3573350Z [1603/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x8-minmax-scalar.c.o 2025-09-07T06:11:43.3604520Z [1604/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x1-minmax-scalar.c.o 2025-09-07T06:11:43.3735490Z [1605/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x2-minmax-scalar.c.o 2025-09-07T06:11:43.3761330Z [1606/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x8-minmax-scalar.c.o 2025-09-07T06:11:43.3794770Z [1607/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x2-minmax-scalar.c.o 2025-09-07T06:11:43.3987700Z [1608/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x2-minmax-scalar.c.o 2025-09-07T06:11:43.3991650Z [1609/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x8-minmax-scalar.c.o 2025-09-07T06:11:43.4194760Z [1610/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x4-minmax-scalar.c.o 2025-09-07T06:11:43.4517790Z [1611/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8-minmax-scalar.c.o 2025-09-07T06:11:43.4791530Z [1612/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8-minmax-scalar.c.o 2025-09-07T06:11:43.4815410Z [1613/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x4-minmax-scalar.c.o 2025-09-07T06:11:43.4928160Z [1614/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8-minmax-scalar.c.o 2025-09-07T06:11:43.4931850Z [1615/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8-minmax-scalar.c.o 2025-09-07T06:11:43.5001270Z [1616/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:43.5092210Z [1617/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:43.5094660Z [1618/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:43.5098260Z [1619/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x4-minmax-scalar.c.o 2025-09-07T06:11:43.5339190Z [1620/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:43.5899490Z [1621/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:43.5905670Z [1622/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:43.5951790Z [1623/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:43.6052870Z [1624/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:43.6101140Z [1625/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:43.6127770Z [1626/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:43.6154290Z [1627/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:43.6359180Z [1628/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:43.6437140Z [1629/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:43.6580580Z [1630/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:43.6968900Z [1631/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:43.6994430Z [1632/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:43.7173650Z [1633/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:43.7219670Z [1634/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:43.7233040Z [1635/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:43.7406920Z [1636/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:43.7410880Z [1637/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:43.7580920Z [1638/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:43.7697740Z [1639/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:43.7761730Z [1640/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:43.8021160Z [1641/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:43.8152920Z [1642/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:43.8210620Z [1643/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:43.8350940Z [1644/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:43.8416730Z [1645/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:43.8767110Z [1646/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2025-09-07T06:11:43.8792320Z [1647/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:43.8810470Z [1648/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2025-09-07T06:11:43.8814840Z [1649/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:43.8890140Z [1650/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:43.9068960Z [1651/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:43.9134100Z [1652/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:43.9142770Z [1653/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:43.9345700Z [1654/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:43.9513150Z [1655/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2025-09-07T06:11:43.9878990Z [1656/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u2.c.o 2025-09-07T06:11:43.9951900Z [1657/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:44.0017220Z [1658/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u3.c.o 2025-09-07T06:11:44.0063900Z [1659/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c4-gemm-goi-scalar.c.o 2025-09-07T06:11:44.0073780Z [1660/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:44.0156450Z [1661/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c4-gemm-gio-scalar.c.o 2025-09-07T06:11:44.0257230Z [1662/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-gio-scalar.c.o 2025-09-07T06:11:44.0259850Z [1663/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:44.0423020Z [1664/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-goi-scalar.c.o 2025-09-07T06:11:44.0765320Z [1665/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c4-gemm-gio-scalar.c.o 2025-09-07T06:11:44.0930310Z [1666/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-gio-scalar.c.o 2025-09-07T06:11:44.1133520Z [1667/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x32c4-gemm-gio-scalar.c.o 2025-09-07T06:11:44.1154920Z [1668/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u4.c.o 2025-09-07T06:11:44.1159920Z [1669/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c4-gemm-goi-scalar.c.o 2025-09-07T06:11:44.1302090Z [1670/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u1.c.o 2025-09-07T06:11:44.1311680Z [1671/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:44.1318380Z [1672/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u1.c.o 2025-09-07T06:11:44.1319500Z [1673/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u8.c.o 2025-09-07T06:11:44.1502040Z [1674/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u2.c.o 2025-09-07T06:11:44.1716340Z [1675/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u4.c.o 2025-09-07T06:11:44.2019400Z [1676/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u1.c.o 2025-09-07T06:11:44.2243800Z [1677/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u4.c.o 2025-09-07T06:11:44.2245130Z [1678/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u2.c.o 2025-09-07T06:11:44.2248360Z [1679/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u2.c.o 2025-09-07T06:11:44.2450350Z [1680/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u2.c.o 2025-09-07T06:11:44.2457440Z [1681/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u1.c.o 2025-09-07T06:11:44.2474920Z [1682/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u1.c.o 2025-09-07T06:11:44.2669060Z [1683/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u2.c.o 2025-09-07T06:11:44.2742730Z [1684/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u1.c.o 2025-09-07T06:11:44.2760170Z [1685/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u4.c.o 2025-09-07T06:11:44.2979670Z [1686/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u4.c.o 2025-09-07T06:11:44.3306410Z [1687/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u4.c.o 2025-09-07T06:11:44.3350410Z [1688/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u1.c.o 2025-09-07T06:11:44.3365330Z [1689/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u2.c.o 2025-09-07T06:11:44.3545450Z [1690/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u4.c.o 2025-09-07T06:11:44.3591480Z [1691/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u1.c.o 2025-09-07T06:11:44.3644210Z [1692/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u1.c.o 2025-09-07T06:11:44.3790270Z [1693/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u2.c.o 2025-09-07T06:11:44.3806870Z [1694/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u8.c.o 2025-09-07T06:11:44.3905370Z [1695/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u2.c.o 2025-09-07T06:11:44.4068290Z [1696/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u1.c.o 2025-09-07T06:11:44.4395500Z [1697/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u3.c.o 2025-09-07T06:11:44.4562680Z [1698/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u6.c.o 2025-09-07T06:11:44.4678510Z [1699/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u1.c.o 2025-09-07T06:11:44.4680820Z [1700/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u5.c.o 2025-09-07T06:11:44.4734100Z [1701/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u3.c.o 2025-09-07T06:11:44.4846510Z [1702/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u4.c.o 2025-09-07T06:11:44.4856940Z [1703/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vgelu/gen/f32-vgelu-scalar.c.o 2025-09-07T06:11:44.4881440Z [1704/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u2.c.o 2025-09-07T06:11:44.4982520Z [1705/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u5.c.o 2025-09-07T06:11:44.5237600Z [1706/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u6.c.o 2025-09-07T06:11:44.5244230Z [1707/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u1.c.o 2025-09-07T06:11:44.5668270Z [1708/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlog/gen/f32-vlog-scalar-log.c.o 2025-09-07T06:11:44.5784980Z [1709/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u1.c.o 2025-09-07T06:11:44.5787560Z [1710/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u1.c.o 2025-09-07T06:11:44.5789790Z [1711/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u2.c.o 2025-09-07T06:11:44.5964010Z [1712/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c2-minmax-scalar-2x.c.o 2025-09-07T06:11:44.6077160Z [1713/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u2.c.o 2025-09-07T06:11:44.6210980Z [1714/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x32c4-gemm-goi-scalar.c.o 2025-09-07T06:11:44.6222710Z [1715/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-scalar-2x.c.o 2025-09-07T06:11:44.6430310Z [1716/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:44.6597550Z [1717/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u2.c.o 2025-09-07T06:11:44.6639130Z [1718/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:44.6741820Z [1719/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:44.6954570Z [1720/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:44.6958010Z [1721/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:44.7062870Z [1722/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:44.7322760Z [1723/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:44.7385870Z [1724/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:44.7431520Z [1725/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:44.7595700Z [1726/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:44.7782910Z [1727/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:44.8004170Z [1728/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2025-09-07T06:11:44.8031620Z [1729/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:44.8058410Z [1730/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:44.8176100Z [1731/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2025-09-07T06:11:44.8181100Z [1732/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:44.8354700Z [1733/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:44.8525550Z [1734/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2025-09-07T06:11:44.8608530Z [1735/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:44.8765870Z [1736/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:44.8882170Z [1737/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:44.9135280Z [1738/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:44.9200050Z [1739/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:44.9292830Z [1740/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:44.9298410Z [1741/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u2.c.o 2025-09-07T06:11:44.9478380Z [1742/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:44.9484100Z [1743/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:44.9611370Z [1744/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u3.c.o 2025-09-07T06:11:44.9811350Z [1745/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-rndnu-scalar.c.o 2025-09-07T06:11:44.9924840Z [1746/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.0390770Z [1747/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-rndnu-scalar.c.o 2025-09-07T06:11:45.0402220Z [1748/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.0452730Z [1749/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.0598900Z [1750/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.0600990Z [1751/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-rndnu-scalar.c.o 2025-09-07T06:11:45.0722690Z [1752/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.0776330Z [1753/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.1067770Z [1754/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.1276190Z [1755/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-rndnu-scalar.c.o 2025-09-07T06:11:45.1382130Z [1756/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.1609420Z [1757/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.1618330Z [1758/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.1735080Z [1759/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.1742440Z [1760/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.1788640Z [1761/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-rndnu-scalar.c.o 2025-09-07T06:11:45.1954250Z [1762/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-rndnu-scalar.c.o 2025-09-07T06:11:45.2021210Z [1763/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.2429010Z [1764/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.2452190Z [1765/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.2699650Z [1766/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.2923970Z [1767/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.2975840Z [1768/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.3038310Z [1769/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.3064980Z [1770/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-rndnu-scalar.c.o 2025-09-07T06:11:45.3234360Z [1771/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.3235400Z [1772/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-rndnu-scalar.c.o 2025-09-07T06:11:45.3641510Z [1773/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-rndnu-scalar.c.o 2025-09-07T06:11:45.3797270Z [1774/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.3946360Z [1775/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.3996410Z [1776/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.4079980Z [1777/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.4116850Z [1778/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-rndnu-scalar.c.o 2025-09-07T06:11:45.4210540Z [1779/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.4392660Z [1780/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-rndnu-scalar.c.o 2025-09-07T06:11:45.4418170Z [1781/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.4566920Z [1782/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.4938440Z [1783/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.5058030Z [1784/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.5077730Z [1785/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-rndnu-scalar.c.o 2025-09-07T06:11:45.5265330Z [1786/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.5269220Z [1787/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-rndnu-scalar.c.o 2025-09-07T06:11:45.5289230Z [1788/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.5491870Z [1789/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.5501490Z [1790/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.5843050Z [1791/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-rndnu-scalar.c.o 2025-09-07T06:11:45.6067750Z [1792/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.6124960Z [1793/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.6274100Z [1794/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.6276310Z [1795/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.6327590Z [1796/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x2-scalar.c.o 2025-09-07T06:11:45.6421030Z [1797/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-rndnu-scalar.c.o 2025-09-07T06:11:45.6780430Z [1798/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.6884070Z [1799/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-gio-scalar.c.o 2025-09-07T06:11:45.6886180Z [1800/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x16c8-gemm-goi-scalar.c.o 2025-09-07T06:11:45.7098210Z [1801/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x8c8-gemm-goi-scalar.c.o 2025-09-07T06:11:45.7102410Z [1802/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x32c8-gemm-goi-scalar.c.o 2025-09-07T06:11:45.7140430Z [1803/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-4p2c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.7294970Z [1804/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.7298110Z [1805/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.7697510Z [1806/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.7728720Z [1807/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.8033960Z [1808/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.8045660Z [1809/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.8250450Z [1810/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.8252660Z [1811/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.8364890Z [1812/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.8374090Z [1813/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.8381050Z [1814/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.8414720Z [1815/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.8660840Z [1816/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.8734160Z [1817/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.9230770Z [1818/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.9282800Z [1819/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.9367690Z [1820/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.9376320Z [1821/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.9440370Z [1822/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:45.9530580Z [1823/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:45.9596930Z [1824/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.9736270Z [1825/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:45.9890020Z [1826/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.0239540Z [1827/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.0378370Z [1828/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.0381030Z [1829/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.0522840Z [1830/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.0566130Z [1831/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.0568780Z [1832/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.0710560Z [1833/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.0827160Z [1834/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.0890810Z [1835/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.1225880Z [1836/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.1346650Z [1837/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.1436540Z [1838/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.1446720Z [1839/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.1703840Z [1840/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.1715660Z [1841/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.1878130Z [1842/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.1983110Z [1843/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.2086060Z [1844/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.2096080Z [1845/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.2493310Z [1846/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.2514270Z [1847/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.2549570Z [1848/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.2673610Z [1849/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.2810390Z [1850/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.2915550Z [1851/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.3129500Z [1852/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.3192630Z [1853/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.3425490Z [1854/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.3534120Z [1855/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.3742620Z [1856/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.3793100Z [1857/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.3799050Z [1858/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.4032850Z [1859/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.4052460Z [1860/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.4066260Z [1861/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.4373130Z [1862/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.4586390Z [1863/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.4842630Z [1864/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.4954190Z [1865/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.4967080Z [1866/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.4997550Z [1867/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.5168160Z [1868/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.5182140Z [1869/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.5190320Z [1870/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.5399120Z [1871/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.5553820Z [1872/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.5820370Z [1873/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.5888210Z [1874/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.6125330Z [1875/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.6282320Z [1876/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.6434960Z [1877/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.6500250Z [1878/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.6552020Z [1879/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.6597380Z [1880/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.6747990Z [1881/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.6781830Z [1882/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.6899530Z [1883/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x16c8-gemm-gio-scalar.c.o 2025-09-07T06:11:46.6901170Z [1884/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u1.c.o 2025-09-07T06:11:46.7082840Z [1885/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x8c8-gemm-gio-scalar.c.o 2025-09-07T06:11:46.7190790Z [1886/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x8c8-gemm-goi-scalar.c.o 2025-09-07T06:11:46.7582890Z [1887/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u2.c.o 2025-09-07T06:11:46.7599640Z [1888/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u2.c.o 2025-09-07T06:11:46.7628310Z [1889/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.7694420Z [1890/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u2.c.o 2025-09-07T06:11:46.7829540Z [1891/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u1.c.o 2025-09-07T06:11:46.7852500Z [1892/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u2.c.o 2025-09-07T06:11:46.8020390Z [1893/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u2.c.o 2025-09-07T06:11:46.8071190Z [1894/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u2.c.o 2025-09-07T06:11:46.8079710Z [1895/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u1.c.o 2025-09-07T06:11:46.8433040Z [1896/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u1.c.o 2025-09-07T06:11:46.8714330Z [1897/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.8767980Z [1898/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u1.c.o 2025-09-07T06:11:46.8783160Z [1899/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u2.c.o 2025-09-07T06:11:46.8913560Z [1900/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.8963930Z [1901/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.9104620Z [1902/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u2.c.o 2025-09-07T06:11:46.9211020Z [1903/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:46.9255810Z [1904/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:46.9298760Z [1905/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.9426360Z [1906/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:46.9996680Z [1907/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:47.0022990Z [1908/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:47.0031550Z [1909/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:47.0136430Z [1910/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:47.0301830Z [1911/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:47.0303920Z [1912/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:11:47.0332180Z [1913/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:47.0526250Z [1914/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.o 2025-09-07T06:11:47.0532630Z [1915/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.o 2025-09-07T06:11:47.0547510Z [1916/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:11:47.1071950Z [1917/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar.c.o 2025-09-07T06:11:47.1127630Z [1918/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.o 2025-09-07T06:11:47.1380000Z [1919/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar.c.o 2025-09-07T06:11:47.1430530Z [1920/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar.c.o 2025-09-07T06:11:47.1470290Z [1921/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.o 2025-09-07T06:11:47.1479900Z [1922/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar.c.o 2025-09-07T06:11:47.1709360Z [1923/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar.c.o 2025-09-07T06:11:47.1753540Z [1924/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar.c.o 2025-09-07T06:11:47.1884840Z [1925/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar-acc2.c.o 2025-09-07T06:11:47.2091120Z [1926/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar.c.o 2025-09-07T06:11:47.2094090Z [1927/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar-acc2.c.o 2025-09-07T06:11:47.2103410Z [1928/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc3.c.o 2025-09-07T06:11:47.2470460Z [1929/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar.c.o 2025-09-07T06:11:47.2525240Z [1930/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar.c.o 2025-09-07T06:11:47.2561960Z [1931/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar-acc2.c.o 2025-09-07T06:11:47.2574250Z [1932/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar-acc2.c.o 2025-09-07T06:11:47.2802760Z [1933/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc4.c.o 2025-09-07T06:11:47.2822670Z [1934/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc2.c.o 2025-09-07T06:11:47.3173960Z [1935/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1.c.o 2025-09-07T06:11:47.3252410Z [1936/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar.c.o 2025-09-07T06:11:47.3411480Z [1937/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1.c.o 2025-09-07T06:11:47.3422060Z [1938/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-3x1.c.o 2025-09-07T06:11:47.3618030Z [1939/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc3.c.o 2025-09-07T06:11:47.3643100Z [1940/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-5x1.c.o 2025-09-07T06:11:47.3700260Z [1941/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc4.c.o 2025-09-07T06:11:47.3819330Z [1942/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-6x1.c.o 2025-09-07T06:11:47.3848990Z [1943/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1.c.o 2025-09-07T06:11:47.3950770Z [1944/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1.c.o 2025-09-07T06:11:47.4265860Z [1945/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-3x1.c.o 2025-09-07T06:11:47.4427160Z [1946/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-4x1.c.o 2025-09-07T06:11:47.4479720Z [1947/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc2.c.o 2025-09-07T06:11:47.4497530Z [1948/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc3.c.o 2025-09-07T06:11:47.4769740Z [1949/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc4.c.o 2025-09-07T06:11:47.4912330Z [1950/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc3.c.o 2025-09-07T06:11:47.5077240Z [1951/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1.c.o 2025-09-07T06:11:47.5083190Z [1952/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1-acc2.c.o 2025-09-07T06:11:47.5148230Z [1953/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1.c.o 2025-09-07T06:11:47.5336480Z [1954/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc2.c.o 2025-09-07T06:11:47.5451390Z [1955/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1.c.o 2025-09-07T06:11:47.5489620Z [1956/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc3.c.o 2025-09-07T06:11:47.5649030Z [1957/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1.c.o 2025-09-07T06:11:47.5681610Z [1958/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc3.c.o 2025-09-07T06:11:47.5850500Z [1959/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc4.c.o 2025-09-07T06:11:47.5891590Z [1960/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1.c.o 2025-09-07T06:11:47.6115610Z [1961/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u1.c.o 2025-09-07T06:11:47.6119100Z [1962/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1-acc2.c.o 2025-09-07T06:11:47.6313020Z [1963/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1.c.o 2025-09-07T06:11:47.6507230Z [1964/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u2.c.o 2025-09-07T06:11:47.6574200Z [1965/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u3.c.o 2025-09-07T06:11:47.6676800Z [1966/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u1.c.o 2025-09-07T06:11:47.6782010Z [1967/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u4.c.o 2025-09-07T06:11:47.6804820Z [1968/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u3.c.o 2025-09-07T06:11:47.6959290Z [1969/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-relu-scalar.c.o 2025-09-07T06:11:47.7027980Z [1970/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x4-minmax-scalar.c.o 2025-09-07T06:11:47.7264930Z [1971/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p1.c.o 2025-09-07T06:11:47.7310360Z [1972/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x4-minmax-scalar.c.o 2025-09-07T06:11:47.7554480Z [1973/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p2.c.o 2025-09-07T06:11:47.7687150Z [1974/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-2x4-minmax-scalar.c.o 2025-09-07T06:11:47.7727490Z [1975/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c4.c.o 2025-09-07T06:11:47.7828830Z [1976/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-2x4-minmax-scalar.c.o 2025-09-07T06:11:47.7931850Z [1977/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-relu-scalar.c.o 2025-09-07T06:11:47.8029490Z [1978/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x4-minmax-scalar.c.o 2025-09-07T06:11:47.8152390Z [1979/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c1.c.o 2025-09-07T06:11:47.8156970Z [1980/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-3x3-minmax-scalar.c.o 2025-09-07T06:11:47.8353750Z [1981/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x2-minmax-scalar.c.o 2025-09-07T06:11:47.8557550Z [1982/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:11:47.8664540Z [1983/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u3.c.o 2025-09-07T06:11:47.8695100Z [1984/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u1.c.o 2025-09-07T06:11:47.8813470Z [1985/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u1.c.o 2025-09-07T06:11:47.8815490Z [1986/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u2.c.o 2025-09-07T06:11:47.8962690Z [1987/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u2.c.o 2025-09-07T06:11:47.9023940Z [1988/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u3.c.o 2025-09-07T06:11:47.9026770Z [1989/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u1.c.o 2025-09-07T06:11:47.9144270Z [1990/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u4.c.o 2025-09-07T06:11:47.9393210Z [1991/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u2.c.o 2025-09-07T06:11:47.9589710Z [1992/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u1.c.o 2025-09-07T06:11:47.9723920Z [1993/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u3.c.o 2025-09-07T06:11:47.9818090Z [1994/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u2.c.o 2025-09-07T06:11:47.9978760Z [1995/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar.c.o 2025-09-07T06:11:48.0106940Z [1996/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar.c.o 2025-09-07T06:11:48.0150480Z [1997/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar.c.o 2025-09-07T06:11:48.0161750Z [1998/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar.c.o 2025-09-07T06:11:48.0174730Z [1999/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.o 2025-09-07T06:11:48.0413050Z [2000/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar-acc2.c.o 2025-09-07T06:11:48.0415360Z [2001/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar.c.o 2025-09-07T06:11:48.0656670Z [2002/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.o 2025-09-07T06:11:48.0857730Z [2003/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.o 2025-09-07T06:11:48.1007180Z [2004/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar.c.o 2025-09-07T06:11:48.1026740Z [2005/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.o 2025-09-07T06:11:48.1184440Z [2006/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.o 2025-09-07T06:11:48.1287430Z [2007/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc2.c.o 2025-09-07T06:11:48.1405930Z [2008/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc4.c.o 2025-09-07T06:11:48.1408850Z [2009/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u3.c.o 2025-09-07T06:11:48.1421330Z [2010/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u3-acc3.c.o 2025-09-07T06:11:48.1713720Z [2011/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u2-acc2.c.o 2025-09-07T06:11:48.1756410Z [2012/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u1.c.o 2025-09-07T06:11:48.1938510Z [2013/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc4.c.o 2025-09-07T06:11:48.1942110Z [2014/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc2.c.o 2025-09-07T06:11:48.1944020Z [2015/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u3-acc3.c.o 2025-09-07T06:11:48.2240730Z [2016/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.o 2025-09-07T06:11:48.2284780Z [2017/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u1.c.o 2025-09-07T06:11:48.2503160Z [2018/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc2.c.o 2025-09-07T06:11:48.2521700Z [2019/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u3-acc3.c.o 2025-09-07T06:11:48.2720890Z [2020/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.o 2025-09-07T06:11:48.2762340Z [2021/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.o 2025-09-07T06:11:48.3060690Z [2022/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar.c.o 2025-09-07T06:11:48.3071010Z [2023/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc4.c.o 2025-09-07T06:11:48.3073570Z [2024/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar-acc2.c.o 2025-09-07T06:11:48.3239430Z [2025/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar.c.o 2025-09-07T06:11:48.3297570Z [2026/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar.c.o 2025-09-07T06:11:48.3304710Z [2027/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar-acc2.c.o 2025-09-07T06:11:48.3651680Z [2028/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc4.c.o 2025-09-07T06:11:48.3785770Z [2029/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u1.c.o 2025-09-07T06:11:48.3794360Z [2030/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u2-acc2.c.o 2025-09-07T06:11:48.3860930Z [2031/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u1.c.o 2025-09-07T06:11:48.4063110Z [2032/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u2-acc2.c.o 2025-09-07T06:11:48.4092670Z [2033/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc2.c.o 2025-09-07T06:11:48.4318510Z [2034/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u3-acc3.c.o 2025-09-07T06:11:48.4509850Z [2035/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u3-acc3.c.o 2025-09-07T06:11:48.4614580Z [2036/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar-pipelined.c.o 2025-09-07T06:11:48.4786370Z [2037/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc2.c.o 2025-09-07T06:11:48.4788380Z [2038/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar-pipelined.c.o 2025-09-07T06:11:48.4792700Z [2039/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar-pipelined.c.o 2025-09-07T06:11:48.4974440Z [2040/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar.c.o 2025-09-07T06:11:48.4977330Z [2041/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar.c.o 2025-09-07T06:11:48.4988820Z [2042/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar.c.o 2025-09-07T06:11:48.5011370Z [2043/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u1.c.o 2025-09-07T06:11:48.5250090Z [2044/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar-pipelined.c.o 2025-09-07T06:11:48.5386970Z [2045/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u2.c.o 2025-09-07T06:11:48.5694310Z [2046/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u4.c.o 2025-09-07T06:11:48.5871450Z [2047/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u1.c.o 2025-09-07T06:11:48.5884680Z [2048/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u2.c.o 2025-09-07T06:11:48.6055410Z [2049/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u1.c.o 2025-09-07T06:11:48.6060970Z [2050/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u8.c.o 2025-09-07T06:11:48.6118850Z [2051/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u4.c.o 2025-09-07T06:11:48.6269340Z [2052/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u1.c.o 2025-09-07T06:11:48.6281620Z [2053/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u4.c.o 2025-09-07T06:11:48.6339290Z [2054/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u4.c.o 2025-09-07T06:11:48.6399120Z [2055/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u1.c.o 2025-09-07T06:11:48.6846520Z [2056/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u8.c.o 2025-09-07T06:11:48.6870970Z [2057/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u4.c.o 2025-09-07T06:11:48.7142280Z [2058/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u1.c.o 2025-09-07T06:11:48.7244940Z [2059/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u4.c.o 2025-09-07T06:11:48.7246870Z [2060/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u4.c.o 2025-09-07T06:11:48.7272090Z [2061/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u1.c.o 2025-09-07T06:11:48.7277130Z [2062/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u2.c.o 2025-09-07T06:11:48.7501580Z [2063/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u1.c.o 2025-09-07T06:11:48.7556070Z [2064/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u2.c.o 2025-09-07T06:11:48.7571240Z [2065/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u2.c.o 2025-09-07T06:11:48.7813120Z [2066/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u1.c.o 2025-09-07T06:11:48.7843400Z [2067/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u2.c.o 2025-09-07T06:11:48.8252570Z [2068/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u4.c.o 2025-09-07T06:11:48.8307330Z [2069/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u4.c.o 2025-09-07T06:11:48.8417140Z [2070/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u2.c.o 2025-09-07T06:11:48.8521170Z [2071/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u1.c.o 2025-09-07T06:11:48.8636680Z [2072/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u1.c.o 2025-09-07T06:11:48.8737500Z [2073/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u4.c.o 2025-09-07T06:11:48.8843520Z [2074/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u2.c.o 2025-09-07T06:11:48.8955950Z [2075/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u4.c.o 2025-09-07T06:11:48.8973520Z [2076/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u4.c.o 2025-09-07T06:11:48.8980330Z [2077/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u2.c.o 2025-09-07T06:11:48.9190810Z [2078/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u1.c.o 2025-09-07T06:11:48.9534030Z [2079/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.o 2025-09-07T06:11:48.9734860Z [2080/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-2x4-minmax-scalar.c.o 2025-09-07T06:11:48.9839280Z [2081/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u2.c.o 2025-09-07T06:11:49.0037040Z [2082/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-scalar.c.o 2025-09-07T06:11:49.0141210Z [2083/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-relu-scalar.c.o 2025-09-07T06:11:49.0142080Z [2084/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-scalar.c.o 2025-09-07T06:11:49.0250310Z [2085/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-scalar.c.o 2025-09-07T06:11:49.0309080Z [2086/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-minmax-scalar.c.o 2025-09-07T06:11:49.0419910Z [2087/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-relu-scalar.c.o 2025-09-07T06:11:49.0432790Z [2088/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-scalar.c.o 2025-09-07T06:11:49.0877820Z [2089/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-relu-scalar.c.o 2025-09-07T06:11:49.0914190Z [2090/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-relu-scalar.c.o 2025-09-07T06:11:49.0933370Z [2091/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-scalar.c.o 2025-09-07T06:11:49.0956770Z [2092/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-1x1-minmax-scalar.c.o 2025-09-07T06:11:49.1154310Z [2093/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x1-minmax-scalar.c.o 2025-09-07T06:11:49.1189060Z [2094/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-4x1-minmax-scalar.c.o 2025-09-07T06:11:49.1207830Z [2095/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-2x1-minmax-scalar.c.o 2025-09-07T06:11:49.1314950Z [2096/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-scalar.c.o 2025-09-07T06:11:49.1371820Z [2097/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x2-minmax-scalar.c.o 2025-09-07T06:11:49.1914590Z [2098/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x4-minmax-scalar.c.o 2025-09-07T06:11:49.1917280Z [2099/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u1.c.o 2025-09-07T06:11:49.1974030Z [2100/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u3.c.o 2025-09-07T06:11:49.1990070Z [2101/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u2.c.o 2025-09-07T06:11:49.2069910Z [2102/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u4.c.o 2025-09-07T06:11:49.2212310Z [2103/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u2.c.o 2025-09-07T06:11:49.2240940Z [2104/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u3.c.o 2025-09-07T06:11:49.2270180Z [2105/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u2.c.o 2025-09-07T06:11:49.2389340Z [2106/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u3.c.o 2025-09-07T06:11:49.2458160Z [2107/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u1.c.o 2025-09-07T06:11:49.2899280Z [2108/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u1.c.o 2025-09-07T06:11:49.2917520Z [2109/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u2.c.o 2025-09-07T06:11:49.3065070Z [2110/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u3.c.o 2025-09-07T06:11:49.3080680Z [2111/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u4.c.o 2025-09-07T06:11:49.3262480Z [2112/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u1.c.o 2025-09-07T06:11:49.3374970Z [2113/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u2.c.o 2025-09-07T06:11:49.3434120Z [2114/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u2.c.o 2025-09-07T06:11:49.3581860Z [2115/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u2-acc2.c.o 2025-09-07T06:11:49.3604880Z [2116/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u3.c.o 2025-09-07T06:11:49.3782720Z [2117/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u4-acc4.c.o 2025-09-07T06:11:49.3817910Z [2118/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u3.c.o 2025-09-07T06:11:49.3858600Z [2119/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u4-acc2.c.o 2025-09-07T06:11:49.4000000Z [2120/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.o 2025-09-07T06:11:49.4021900Z [2121/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.o 2025-09-07T06:11:49.4208470Z [2122/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.o 2025-09-07T06:11:49.4536060Z [2123/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u1.c.o 2025-09-07T06:11:49.4538700Z [2124/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u2-acc2.c.o 2025-09-07T06:11:49.4716460Z [2125/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u1.c.o 2025-09-07T06:11:49.4741690Z [2126/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u3-acc3.c.o 2025-09-07T06:11:49.4863590Z [2127/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u2-acc2.c.o 2025-09-07T06:11:49.5074660Z [2128/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u4.c.o 2025-09-07T06:11:49.5177730Z [2129/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc2.c.o 2025-09-07T06:11:49.5294980Z [2130/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u3-acc3.c.o 2025-09-07T06:11:49.5319080Z [2131/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc2.c.o 2025-09-07T06:11:49.5348750Z [2132/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u4.c.o 2025-09-07T06:11:49.5861930Z [2133/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u12-acc3.c.o 2025-09-07T06:11:49.5937260Z [2134/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc2.c.o 2025-09-07T06:11:49.5948120Z [2135/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc2.c.o 2025-09-07T06:11:49.6169530Z [2136/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u8-acc2.c.o 2025-09-07T06:11:49.6192430Z [2137/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc4.c.o 2025-09-07T06:11:49.6434650Z [2138/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u4.c.o 2025-09-07T06:11:49.6473460Z [2139/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u4.c.o 2025-09-07T06:11:49.6739840Z [2140/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u8-acc2.c.o 2025-09-07T06:11:49.6842780Z [2141/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc2.c.o 2025-09-07T06:11:49.6958880Z [2142/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u12-acc3.c.o 2025-09-07T06:11:49.7077200Z [2143/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u12-acc3.c.o 2025-09-07T06:11:49.7329530Z [2144/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc2.c.o 2025-09-07T06:11:49.7361370Z [2145/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u8-acc2.c.o 2025-09-07T06:11:49.7473320Z [2146/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-x2.c.o 2025-09-07T06:11:49.7580150Z [2147/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-pipelined.c.o 2025-09-07T06:11:49.7724750Z [2148/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon.c.o 2025-09-07T06:11:49.7986660Z [2149/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neon.c.o 2025-09-07T06:11:49.8170500Z [2150/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon.c.o 2025-09-07T06:11:49.8249520Z [2151/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-pipelined.c.o 2025-09-07T06:11:49.8250270Z [2152/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-x2.c.o 2025-09-07T06:11:49.8439220Z [2153/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-pipelined.c.o 2025-09-07T06:11:49.8751780Z [2154/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-neon-u4.c.o 2025-09-07T06:11:49.8845840Z [2155/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon.c.o 2025-09-07T06:11:49.8935820Z [2156/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-x2.c.o 2025-09-07T06:11:49.8965820Z [2157/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-x2.c.o 2025-09-07T06:11:49.9075540Z [2158/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-pipelined.c.o 2025-09-07T06:11:49.9377970Z [2159/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-neon-u4.c.o 2025-09-07T06:11:49.9500780Z [2160/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u4.c.o 2025-09-07T06:11:49.9545720Z [2161/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-neon-u4.c.o 2025-09-07T06:11:49.9586540Z [2162/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-neon-u4.c.o 2025-09-07T06:11:49.9934070Z [2163/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-neon-u4.c.o 2025-09-07T06:11:50.0165590Z [2164/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-neon-u4.c.o 2025-09-07T06:11:50.0201430Z [2165/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-neon-u4.c.o 2025-09-07T06:11:50.0237080Z [2166/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-neon-u4.c.o 2025-09-07T06:11:50.0282090Z [2167/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-neon-u4.c.o 2025-09-07T06:11:50.0533270Z [2168/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-neon-u4.c.o 2025-09-07T06:11:50.0795060Z [2169/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-neon-u4.c.o 2025-09-07T06:11:50.0808740Z [2170/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u4.c.o 2025-09-07T06:11:50.0836910Z [2171/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-neon-u4.c.o 2025-09-07T06:11:50.1060330Z [2172/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-neon-u4.c.o 2025-09-07T06:11:50.1253670Z [2173/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u4.c.o 2025-09-07T06:11:50.1521530Z [2174/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u4.c.o 2025-09-07T06:11:50.1663870Z [2175/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u8.c.o 2025-09-07T06:11:50.1785710Z [2176/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u4.c.o 2025-09-07T06:11:50.1795180Z [2177/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u16.c.o 2025-09-07T06:11:50.1797100Z [2178/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u12.c.o 2025-09-07T06:11:50.2119270Z [2179/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u16.c.o 2025-09-07T06:11:50.2286960Z [2180/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:50.2302000Z [2181/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u12.c.o 2025-09-07T06:11:50.2535790Z [2182/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p4.c.o 2025-09-07T06:11:50.2609460Z [2183/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u4.c.o 2025-09-07T06:11:50.2904150Z [2184/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c4.c.o 2025-09-07T06:11:50.2915710Z [2185/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p16.c.o 2025-09-07T06:11:50.3138630Z [2186/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-dup-ld64.c.o 2025-09-07T06:11:50.3203410Z [2187/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:50.3309640Z [2188/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neon.c.o 2025-09-07T06:11:50.3416470Z [2189/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:50.3736920Z [2190/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:50.3905550Z [2191/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x16-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:50.4163950Z [2192/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:50.4204310Z [2193/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld64.c.o 2025-09-07T06:11:50.4385370Z [2194/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld128.c.o 2025-09-07T06:11:50.4525630Z [2195/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:50.4526530Z [2196/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:50.4527250Z [2197/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neon.c.o 2025-09-07T06:11:50.4722110Z [2198/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:50.4740030Z [2199/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x2-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:50.5319470Z [2200/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld64.c.o 2025-09-07T06:11:50.5419540Z [2201/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld128.c.o 2025-09-07T06:11:50.5497070Z [2202/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:50.5602670Z [2203/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:50.5808720Z [2204/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neon.c.o 2025-09-07T06:11:50.5916160Z [2205/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neon.c.o 2025-09-07T06:11:50.5940510Z [2206/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon-prfm.c.o 2025-09-07T06:11:50.5951260Z [2207/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon-prfm.c.o 2025-09-07T06:11:50.6134230Z [2208/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x16-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:50.6193650Z [2209/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon.c.o 2025-09-07T06:11:50.6684860Z [2210/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon.c.o 2025-09-07T06:11:50.6903870Z [2211/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-5x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:50.6954880Z [2212/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon-prfm.c.o 2025-09-07T06:11:50.7626390Z [2213/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon.c.o 2025-09-07T06:11:50.7633880Z [2214/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-neon-dup-ld64.c.o 2025-09-07T06:11:50.7640330Z [2215/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:50.7650650Z [2216/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-neon-dup-ld64.c.o 2025-09-07T06:11:50.7869900Z [2217/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:50.8122010Z [2218/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-neon-dup-ld64.c.o 2025-09-07T06:11:50.8278920Z [2219/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-neon-dup-ld64.c.o 2025-09-07T06:11:50.8831230Z [2220/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x2-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:50.8868480Z [2221/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u8.c.o 2025-09-07T06:11:50.8898790Z [2222/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-neon-dup-ld64.c.o 2025-09-07T06:11:50.8905100Z [2223/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u16-acc2.c.o 2025-09-07T06:11:50.8924440Z [2224/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u16.c.o 2025-09-07T06:11:50.8946910Z [2225/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:50.9208820Z [2226/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-neon-dup-ld64.c.o 2025-09-07T06:11:50.9409600Z [2227/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:50.9679380Z [2228/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u24.c.o 2025-09-07T06:11:50.9877520Z [2229/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u8.c.o 2025-09-07T06:11:51.0136210Z [2230/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u16.c.o 2025-09-07T06:11:51.0188260Z [2231/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u4.c.o 2025-09-07T06:11:51.0246240Z [2232/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u8-acc2.c.o 2025-09-07T06:11:51.0264070Z [2233/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u24.c.o 2025-09-07T06:11:51.0367470Z [2234/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u16-acc4.c.o 2025-09-07T06:11:51.0370430Z [2235/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u4.c.o 2025-09-07T06:11:51.0531520Z [2236/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u8-acc2.c.o 2025-09-07T06:11:51.0874350Z [2237/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc2.c.o 2025-09-07T06:11:51.0884270Z [2238/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc4.c.o 2025-09-07T06:11:51.1076330Z [2239/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u4.c.o 2025-09-07T06:11:51.1501680Z [2240/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c32.c.o 2025-09-07T06:11:51.1656770Z [2241/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c64.c.o 2025-09-07T06:11:51.1687930Z [2242/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u4.c.o 2025-09-07T06:11:51.1810320Z [2243/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:51.1879680Z [2244/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u12-acc3.c.o 2025-09-07T06:11:51.2024790Z [2245/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u8-acc2.c.o 2025-09-07T06:11:51.2059670Z [2246/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:51.2579550Z [2247/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mla8-ld64.c.o 2025-09-07T06:11:51.2668640Z [2248/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:51.2829460Z [2249/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mul8-ld64.c.o 2025-09-07T06:11:51.2840220Z [2250/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:51.2850310Z [2251/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mla8-ld128.c.o 2025-09-07T06:11:51.3003950Z [2252/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul8-ld64.c.o 2025-09-07T06:11:51.3021700Z [2253/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul8-ld128.c.o 2025-09-07T06:11:51.3587770Z [2254/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:51.3687950Z [2255/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:51.3845770Z [2256/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:51.3872700Z [2257/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:51.4022070Z [2258/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mul8-ld64.c.o 2025-09-07T06:11:51.4024600Z [2259/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:51.4236800Z [2260/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:51.4451010Z [2261/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mla8-ld128.c.o 2025-09-07T06:11:51.4462390Z [2262/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul8-ld128.c.o 2025-09-07T06:11:51.4770850Z [2263/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul8-ld64.c.o 2025-09-07T06:11:51.4860140Z [2264/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:51.5025730Z [2265/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:51.5202330Z [2266/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-4p8c-minmax-fp32-neon-mla8-ld64.c.o 2025-09-07T06:11:51.5439930Z [2267/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u8.c.o 2025-09-07T06:11:51.5546850Z [2268/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:51.5752460Z [2269/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neon-mla8-ld64.c.o 2025-09-07T06:11:51.5855080Z [2270/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-neon-mla8-ld64.c.o 2025-09-07T06:11:51.5857010Z [2271/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u24.c.o 2025-09-07T06:11:51.5858620Z [2272/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u16.c.o 2025-09-07T06:11:51.6068530Z [2273/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-09-07T06:11:51.6206750Z [2274/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-09-07T06:11:51.6505860Z [2275/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-09-07T06:11:51.6598540Z [2276/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:51.6716420Z [2277/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mla8-ld128.c.o 2025-09-07T06:11:51.6993760Z [2278/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-09-07T06:11:51.7177310Z [2279/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul8-ld128.c.o 2025-09-07T06:11:51.7379800Z [2280/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-09-07T06:11:51.7483270Z [2281/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:51.7594930Z [2282/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:51.7701860Z [2283/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-09-07T06:11:51.7773230Z [2284/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-09-07T06:11:51.7860430Z [2285/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:51.7947740Z [2286/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-09-07T06:11:51.8362340Z [2287/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mla8-ld128.c.o 2025-09-07T06:11:51.8479200Z [2288/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:51.8520280Z [2289/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul8-ld128.c.o 2025-09-07T06:11:51.8789390Z [2290/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:51.8982820Z [2291/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-09-07T06:11:51.9011280Z [2292/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-09-07T06:11:51.9189920Z [2293/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-09-07T06:11:51.9205030Z [2294/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-09-07T06:11:51.9217350Z [2295/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mla8-ld128.c.o 2025-09-07T06:11:51.9252050Z [2296/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:51.9748380Z [2297/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul8-ld128.c.o 2025-09-07T06:11:51.9969660Z [2298/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neon-mla8-ld64.c.o 2025-09-07T06:11:52.0071770Z [2299/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:52.0090700Z [2300/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:52.0397570Z [2301/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neon-mul8-ld64.c.o 2025-09-07T06:11:52.0608130Z [2302/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mla8-ld128.c.o 2025-09-07T06:11:52.0647840Z [2303/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mul8-ld64.c.o 2025-09-07T06:11:52.0800120Z [2304/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:52.0803250Z [2305/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:52.0994130Z [2306/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mul8-ld128.c.o 2025-09-07T06:11:52.1134210Z [2307/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:52.1266110Z [2308/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neon-mla8-ld64.c.o 2025-09-07T06:11:52.1472030Z [2309/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neon-mul8-ld64.c.o 2025-09-07T06:11:52.1540040Z [2310/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:52.1752530Z [2311/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neon-mla8-ld128.c.o 2025-09-07T06:11:52.1998360Z [2312/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neon-mul8-ld128.c.o 2025-09-07T06:11:52.2044470Z [2313/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neon-mul8-ld64.c.o 2025-09-07T06:11:52.2207080Z [2314/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:52.2209790Z [2315/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:52.2327290Z [2316/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:52.2422530Z [2317/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:52.2932000Z [2318/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neon-mlal-ld1r.c.o 2025-09-07T06:11:52.3059920Z [2319/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neon-mlal-ld4r.c.o 2025-09-07T06:11:52.3170660Z [2320/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neon-mlal-ld2r.c.o 2025-09-07T06:11:52.3286170Z [2321/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neon-mlal-dup.c.o 2025-09-07T06:11:52.3433270Z [2322/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neon-mlal-ld1r.c.o 2025-09-07T06:11:52.3483760Z [2323/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neon-mlal-dup.c.o 2025-09-07T06:11:52.3848190Z [2324/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-neon-mlal.c.o 2025-09-07T06:11:52.3855120Z [2325/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:52.3948100Z [2326/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4s2-minmax-fp32-neon-mlal.c.o 2025-09-07T06:11:52.4129810Z [2327/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neon-mlal-ld2r.c.o 2025-09-07T06:11:52.4753130Z [2328/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neon-mlal-ld1r.c.o 2025-09-07T06:11:52.4822200Z [2329/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:52.4836760Z [2330/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neon-mlal-ld2r.c.o 2025-09-07T06:11:52.4845690Z [2331/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:52.4941490Z [2332/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neon-mlal-dup.c.o 2025-09-07T06:11:52.5058640Z [2333/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:52.5156730Z [2334/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neon-mlal-dup.c.o 2025-09-07T06:11:52.5212610Z [2335/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neon-mlal-ld4r.c.o 2025-09-07T06:11:52.5394870Z [2336/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neon-mlal-ld1r.c.o 2025-09-07T06:11:52.5412630Z [2337/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neon-mlal-ld2r.c.o 2025-09-07T06:11:52.6428070Z [2338/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x16-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:52.6469240Z [2339/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:52.6503930Z [2340/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:52.6510270Z [2341/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:52.6514340Z [2342/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:52.6692490Z [2343/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-neon-mlal.c.o 2025-09-07T06:11:52.6693500Z [2344/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x16-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:52.6717240Z [2345/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4s2-minmax-fp32-neon-mlal.c.o 2025-09-07T06:11:52.7309720Z [2346/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:52.7850680Z [2347/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:52.7944160Z [2348/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:52.8019490Z [2349/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:52.8021150Z [2350/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:52.8039890Z [2351/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:52.8184510Z [2352/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:52.8185680Z [2353/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:52.8223150Z [2354/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:52.8270560Z [2355/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:52.9196860Z [2356/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neon-mlal-dup.c.o 2025-09-07T06:11:52.9298940Z [2357/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neon-mlal-ld1r.c.o 2025-09-07T06:11:52.9466810Z [2358/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neon-mlal-ld1r.c.o 2025-09-07T06:11:52.9506480Z [2359/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neon-mlal-ld4r.c.o 2025-09-07T06:11:52.9565780Z [2360/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neon-mlal-dup.c.o 2025-09-07T06:11:52.9597290Z [2361/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neon-mlal-ld2r.c.o 2025-09-07T06:11:52.9632280Z [2362/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-neon-mlal.c.o 2025-09-07T06:11:52.9647010Z [2363/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:52.9651860Z [2364/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neon-mlal-ld2r.c.o 2025-09-07T06:11:52.9852970Z [2365/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4s2-minmax-fp32-neon-mlal.c.o 2025-09-07T06:11:53.0435420Z [2366/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:53.0757860Z [2367/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:53.1045720Z [2368/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neon-mlal-ld2r.c.o 2025-09-07T06:11:53.1134990Z [2369/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.1136590Z [2370/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neon-mlal-dup.c.o 2025-09-07T06:11:53.1137610Z [2371/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neon-mlal-dup.c.o 2025-09-07T06:11:53.1160070Z [2372/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neon-mlal-ld1r.c.o 2025-09-07T06:11:53.1338870Z [2373/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neon-mlal-ld4r.c.o 2025-09-07T06:11:53.1344450Z [2374/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neon-mlal-ld2r.c.o 2025-09-07T06:11:53.1361940Z [2375/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neon-mlal-ld1r.c.o 2025-09-07T06:11:53.2163830Z [2376/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-neon-mlal.c.o 2025-09-07T06:11:53.2468410Z [2377/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4s2-minmax-fp32-neon-mlal.c.o 2025-09-07T06:11:53.2487290Z [2378/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.2529620Z [2379/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u8.c.o 2025-09-07T06:11:53.2533050Z [2380/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:53.2597190Z [2381/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u12.c.o 2025-09-07T06:11:53.2606280Z [2382/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.2614030Z [2383/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u4.c.o 2025-09-07T06:11:53.2665440Z [2384/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x16-minmax-fp32-neon-mlal-lane.c.o 2025-09-07T06:11:53.2739600Z [2385/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u16.c.o 2025-09-07T06:11:53.3637690Z [2386/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u4.c.o 2025-09-07T06:11:53.3738010Z [2387/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u8.c.o 2025-09-07T06:11:53.3941460Z [2388/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u4.c.o 2025-09-07T06:11:53.3984440Z [2389/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neon-2x.c.o 2025-09-07T06:11:53.3990580Z [2390/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neon-u4.c.o 2025-09-07T06:11:53.3993610Z [2391/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neon-u4.c.o 2025-09-07T06:11:53.4180120Z [2392/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u16.c.o 2025-09-07T06:11:53.4191340Z [2393/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u8.c.o 2025-09-07T06:11:53.4199690Z [2394/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neon-u4.c.o 2025-09-07T06:11:53.4934980Z [2395/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neon-u4.c.o 2025-09-07T06:11:53.5092490Z [2396/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u12.c.o 2025-09-07T06:11:53.5120880Z [2397/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u4.c.o 2025-09-07T06:11:53.5135480Z [2398/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u4.c.o 2025-09-07T06:11:53.5263710Z [2399/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u8.c.o 2025-09-07T06:11:53.5489750Z [2400/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u4.c.o 2025-09-07T06:11:53.5561200Z [2401/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u4.c.o 2025-09-07T06:11:53.5664560Z [2402/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u16.c.o 2025-09-07T06:11:53.5682410Z [2403/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u12.c.o 2025-09-07T06:11:53.5796940Z [2404/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u8.c.o 2025-09-07T06:11:53.6209400Z [2405/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u12.c.o 2025-09-07T06:11:53.6284900Z [2406/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u8.c.o 2025-09-07T06:11:53.6424060Z [2407/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.6529530Z [2408/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u16.c.o 2025-09-07T06:11:53.6650240Z [2409/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.6852010Z [2410/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neon-rational-9-8-nr.c.o 2025-09-07T06:11:53.7081320Z [2411/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.7088930Z [2412/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:53.7219020Z [2413/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.7350870Z [2414/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:53.8010740Z [2415/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-3x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.8022720Z [2416/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:53.8059960Z [2417/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.8231460Z [2418/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:53.8290850Z [2419/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-6x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.8319590Z [2420/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.8584710Z [2421/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-3x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:53.8633540Z [2422/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.8777840Z [2423/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:53.8843480Z [2424/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-6x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.9628970Z [2425/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.9642500Z [2426/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.9654330Z [2427/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:53.9686980Z [2428/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:53.9905440Z [2429/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:53.9913510Z [2430/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.0133490Z [2431/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.0242540Z [2432/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.0365100Z [2433/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x8-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.0488480Z [2434/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x8-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.1128950Z [2435/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.1263700Z [2436/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.1271440Z [2437/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.1392180Z [2438/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.1416320Z [2439/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.1644600Z [2440/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.1802540Z [2441/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x8-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.2182640Z [2442/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x8-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.2210090Z [2443/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.2229660Z [2444/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.2419860Z [2445/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.2620510Z [2446/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.2774960Z [2447/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.2837560Z [2448/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.2857230Z [2449/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.3101110Z [2450/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.3149290Z [2451/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.3687570Z [2452/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-3x8-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.3709310Z [2453/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-3x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.3927400Z [2454/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.3943730Z [2455/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-3x8-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.4168440Z [2456/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-3x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.4211680Z [2457/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.4401140Z [2458/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.4468950Z [2459/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.4479430Z [2460/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x8-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.4646960Z [2461/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.5228660Z [2462/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.5310190Z [2463/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x8-minmax-neon-mlal-lane.c.o 2025-09-07T06:11:54.5396410Z [2464/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-09-07T06:11:54.5412450Z [2465/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:54.5479520Z [2466/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x16-minmax-neon-mlal-lane-prfm.c.o 2025-09-07T06:11:54.5632360Z [2467/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:54.5743110Z [2468/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-09-07T06:11:54.6071550Z [2469/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:54.6238020Z [2470/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-09-07T06:11:54.6289210Z [2471/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mla8-ld128.c.o 2025-09-07T06:11:54.6416430Z [2472/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-09-07T06:11:54.6578510Z [2473/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8-ld128.c.o 2025-09-07T06:11:54.6984850Z [2474/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:54.7026420Z [2475/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:54.7095210Z [2476/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:54.7348210Z [2477/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:54.7351630Z [2478/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:54.7497880Z [2479/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-09-07T06:11:54.7500160Z [2480/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-09-07T06:11:54.7503610Z [2481/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:54.7835900Z [2482/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mla8-ld128.c.o 2025-09-07T06:11:54.7999250Z [2483/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-09-07T06:11:54.8437910Z [2484/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:54.8538310Z [2485/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-09-07T06:11:54.8645600Z [2486/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8-ld128.c.o 2025-09-07T06:11:54.8737630Z [2487/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:54.8850460Z [2488/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-09-07T06:11:54.8941410Z [2489/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-09-07T06:11:54.8944090Z [2490/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:54.8946890Z [2491/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:54.9450790Z [2492/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:54.9585330Z [2493/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-09-07T06:11:54.9751430Z [2494/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x4-scalar.c.o 2025-09-07T06:11:54.9757240Z [2495/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-2x-scalar.c.o 2025-09-07T06:11:54.9886980Z [2496/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x2-scalar.c.o 2025-09-07T06:11:54.9890570Z [2497/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-09-07T06:11:55.0034240Z [2498/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-09-07T06:11:55.0036510Z [2499/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8-ld128.c.o 2025-09-07T06:11:55.0212610Z [2500/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mla8-ld128.c.o 2025-09-07T06:11:55.0359500Z [2501/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x1-scalar.c.o 2025-09-07T06:11:55.0361980Z [2502/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x4-scalar.c.o 2025-09-07T06:11:55.0572610Z [2503/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-float.c.o 2025-09-07T06:11:55.0711690Z [2504/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-int.c.o 2025-09-07T06:11:55.0724270Z [2505/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-float.c.o 2025-09-07T06:11:55.0903240Z [2506/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-float.c.o 2025-09-07T06:11:55.0904920Z [2507/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-int.c.o 2025-09-07T06:11:55.1181790Z [2508/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-float.c.o 2025-09-07T06:11:55.1183800Z [2509/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-int.c.o 2025-09-07T06:11:55.1382570Z [2510/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-int.c.o 2025-09-07T06:11:55.1415070Z [2511/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-int-u4.c.o 2025-09-07T06:11:55.1585270Z [2512/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x3-gemm-goi-scalar-float-u4.c.o 2025-09-07T06:11:55.1682290Z [2513/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-int-u4.c.o 2025-09-07T06:11:55.1710280Z [2514/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x4-gemm-gio-scalar.c.o 2025-09-07T06:11:55.1713910Z [2515/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x3-gemm-goi-scalar-int-u4.c.o 2025-09-07T06:11:55.1958340Z [2516/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-gio-scalar.c.o 2025-09-07T06:11:55.2007820Z [2517/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-scalar-float-u4.c.o 2025-09-07T06:11:55.2324000Z [2518/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-scalar-int-u4.c.o 2025-09-07T06:11:55.2411160Z [2519/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-gio-scalar.c.o 2025-09-07T06:11:55.2430620Z [2520/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-scalar-int-u4.c.o 2025-09-07T06:11:55.2600510Z [2521/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-3x-scalar.c.o 2025-09-07T06:11:55.2707700Z [2522/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-float.c.o 2025-09-07T06:11:55.2825510Z [2523/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-scalar-float-u4.c.o 2025-09-07T06:11:55.2876270Z [2524/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-int.c.o 2025-09-07T06:11:55.2890570Z [2525/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x32-gemm-gio-scalar.c.o 2025-09-07T06:11:55.2919090Z [2526/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-4x-scalar.c.o 2025-09-07T06:11:55.3023510Z [2527/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-float.c.o 2025-09-07T06:11:55.3229590Z [2528/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-int.c.o 2025-09-07T06:11:55.3311940Z [2529/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-float.c.o 2025-09-07T06:11:55.3407260Z [2530/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-int.c.o 2025-09-07T06:11:55.3743070Z [2531/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-float.c.o 2025-09-07T06:11:55.3753080Z [2532/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-int.c.o 2025-09-07T06:11:55.3981070Z [2533/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-int.c.o 2025-09-07T06:11:55.4083000Z [2534/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-float.c.o 2025-09-07T06:11:55.4115380Z [2535/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-float.c.o 2025-09-07T06:11:55.4279020Z [2536/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-float.c.o 2025-09-07T06:11:55.4291260Z [2537/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-float.c.o 2025-09-07T06:11:55.4468970Z [2538/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-int.c.o 2025-09-07T06:11:55.4480250Z [2539/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-float.c.o 2025-09-07T06:11:55.4585760Z [2540/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-int.c.o 2025-09-07T06:11:55.4692520Z [2541/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-int.c.o 2025-09-07T06:11:55.4696950Z [2542/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-float.c.o 2025-09-07T06:11:55.4811080Z [2543/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-int.c.o 2025-09-07T06:11:55.5210970Z [2544/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-float.c.o 2025-09-07T06:11:55.5242410Z [2545/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-int.c.o 2025-09-07T06:11:55.5288480Z [2546/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-float.c.o 2025-09-07T06:11:55.5480630Z [2547/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-int.c.o 2025-09-07T06:11:55.5573660Z [2548/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u1.c.o 2025-09-07T06:11:55.5634590Z [2549/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-float.c.o 2025-09-07T06:11:55.5722950Z [2550/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u2.c.o 2025-09-07T06:11:55.5830740Z [2551/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-rndnu-scalar.c.o 2025-09-07T06:11:55.5861050Z [2552/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u2.c.o 2025-09-07T06:11:55.6177040Z [2553/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u1.c.o 2025-09-07T06:11:55.6367820Z [2554/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u2.c.o 2025-09-07T06:11:55.6376310Z [2555/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u2.c.o 2025-09-07T06:11:55.6504430Z [2556/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u2.c.o 2025-09-07T06:11:55.6546530Z [2557/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u1.c.o 2025-09-07T06:11:55.6661070Z [2558/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u1.c.o 2025-09-07T06:11:55.6822120Z [2559/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u2.c.o 2025-09-07T06:11:55.6924700Z [2560/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u2.c.o 2025-09-07T06:11:55.6989550Z [2561/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u2.c.o 2025-09-07T06:11:55.7110620Z [2562/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u2.c.o 2025-09-07T06:11:55.7125690Z [2563/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u1.c.o 2025-09-07T06:11:55.7273780Z [2564/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c4.c.o 2025-09-07T06:11:55.7346120Z [2565/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u1.c.o 2025-09-07T06:11:55.7431770Z [2566/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c2.c.o 2025-09-07T06:11:55.7591180Z [2567/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c2.c.o 2025-09-07T06:11:55.7593600Z [2568/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c4.c.o 2025-09-07T06:11:55.7798470Z [2569/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u8.c.o 2025-09-07T06:11:55.7802570Z [2570/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u16.c.o 2025-09-07T06:11:55.8121740Z [2571/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-u4.c.o 2025-09-07T06:11:55.8124300Z [2572/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u4.c.o 2025-09-07T06:11:55.8257870Z [2573/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-u2.c.o 2025-09-07T06:11:55.8308590Z [2574/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8c8-gemm-gio-scalar.c.o 2025-09-07T06:11:55.8314370Z [2575/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u4.c.o 2025-09-07T06:11:55.8443130Z [2576/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u4.c.o 2025-09-07T06:11:55.8718170Z [2577/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x4-scalar-int.c.o 2025-09-07T06:11:55.8886700Z [2578/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x2-scalar-int.c.o 2025-09-07T06:11:55.8916460Z [2579/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u4.c.o 2025-09-07T06:11:55.8918510Z [2580/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x1-scalar-int.c.o 2025-09-07T06:11:55.9229700Z [2581/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x2-scalar-int.c.o 2025-09-07T06:11:55.9271680Z [2582/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x2-scalar-int.c.o 2025-09-07T06:11:55.9338320Z [2583/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x4-scalar-int.c.o 2025-09-07T06:11:55.9417870Z [2584/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x1-scalar-int.c.o 2025-09-07T06:11:55.9425270Z [2585/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-scalar-int-u4.c.o 2025-09-07T06:11:55.9523970Z [2586/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-scalar-int-u4.c.o 2025-09-07T06:11:55.9781020Z [2587/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x32-gemm-goi-scalar-int-u4.c.o 2025-09-07T06:11:55.9949180Z [2588/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x4-scalar-int.c.o 2025-09-07T06:11:56.0100780Z [2589/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x2-scalar-int.c.o 2025-09-07T06:11:56.0203500Z [2590/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x1-scalar-int.c.o 2025-09-07T06:11:56.0581430Z [2591/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x1-scalar.c.o 2025-09-07T06:11:56.0585910Z [2592/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x2-scalar-int.c.o 2025-09-07T06:11:56.0591930Z [2593/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-1x4-scalar.c.o 2025-09-07T06:11:56.0654260Z [2594/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-scalar-int.c.o 2025-09-07T06:11:56.0897050Z [2595/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x1-scalar-int.c.o 2025-09-07T06:11:56.0922500Z [2596/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x2-scalar-int.c.o 2025-09-07T06:11:56.1198600Z [2597/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon-acc2.c.o 2025-09-07T06:11:56.1262810Z [2598/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-1x4-acc2.c.o 2025-09-07T06:11:56.1384390Z [2599/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon.c.o 2025-09-07T06:11:56.1831240Z [2600/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-1x4-acc3.c.o 2025-09-07T06:11:56.2018180Z [2601/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-2x4-acc2.c.o 2025-09-07T06:11:56.2045710Z [2602/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-1x4-acc4.c.o 2025-09-07T06:11:56.2260510Z [2603/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-1x4.c.o 2025-09-07T06:11:56.2261440Z [2604/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-3x4.c.o 2025-09-07T06:11:56.2362170Z [2605/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-5x4.c.o 2025-09-07T06:11:56.2774400Z [2606/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-4x4.c.o 2025-09-07T06:11:56.2978120Z [2607/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-6x4.c.o 2025-09-07T06:11:56.3083120Z [2608/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-1x4-acc3.c.o 2025-09-07T06:11:56.3186500Z [2609/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-1x4-acc2.c.o 2025-09-07T06:11:56.3218160Z [2610/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-1x4-acc4.c.o 2025-09-07T06:11:56.3331600Z [2611/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-2x4.c.o 2025-09-07T06:11:56.3336790Z [2612/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-2x4-acc2.c.o 2025-09-07T06:11:56.3371490Z [2613/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-4x4.c.o 2025-09-07T06:11:56.3541430Z [2614/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-3x4.c.o 2025-09-07T06:11:56.3615590Z [2615/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4-acc2.c.o 2025-09-07T06:11:56.4210020Z [2616/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4-acc3.c.o 2025-09-07T06:11:56.4444960Z [2617/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4-acc5.c.o 2025-09-07T06:11:56.4463650Z [2618/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-2x4-acc2.c.o 2025-09-07T06:11:56.4628890Z [2619/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-2x4-acc3.c.o 2025-09-07T06:11:56.4650610Z [2620/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4-acc4.c.o 2025-09-07T06:11:56.4766350Z [2621/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-2x4.c.o 2025-09-07T06:11:56.4894710Z [2622/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-3x4.c.o 2025-09-07T06:11:56.5064670Z [2623/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-4x4-acc2.c.o 2025-09-07T06:11:56.5165930Z [2624/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-3x4-acc2.c.o 2025-09-07T06:11:56.5268040Z [2625/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-4x4.c.o 2025-09-07T06:11:56.5809300Z [2626/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4-acc2.c.o 2025-09-07T06:11:56.5910240Z [2627/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4-acc3.c.o 2025-09-07T06:11:56.5962420Z [2628/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-2x4-acc2.c.o 2025-09-07T06:11:56.5989310Z [2629/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-5x4.c.o 2025-09-07T06:11:56.5992310Z [2630/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4-acc4.c.o 2025-09-07T06:11:56.6001070Z [2631/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4-acc5.c.o 2025-09-07T06:11:56.6625870Z [2632/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-2x4-acc3.c.o 2025-09-07T06:11:56.6824330Z [2633/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-2x4.c.o 2025-09-07T06:11:56.6859400Z [2634/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-3x4-acc2.c.o 2025-09-07T06:11:56.6964090Z [2635/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-3x4.c.o 2025-09-07T06:11:56.7199850Z [2636/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u32.c.o 2025-09-07T06:11:56.7246580Z [2637/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u24.c.o 2025-09-07T06:11:56.7370570Z [2638/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u16.c.o 2025-09-07T06:11:56.7524100Z [2639/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neon.c.o 2025-09-07T06:11:56.7632070Z [2640/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-dup-ld64.c.o 2025-09-07T06:11:56.7921730Z [2641/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:56.8097530Z [2642/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:56.8356460Z [2643/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x16-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:56.8489090Z [2644/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld64.c.o 2025-09-07T06:11:56.8592510Z [2645/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:56.8696600Z [2646/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:56.8813070Z [2647/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neon.c.o 2025-09-07T06:11:56.8848210Z [2648/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld128.c.o 2025-09-07T06:11:56.8960460Z [2649/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:56.8971890Z [2650/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:56.9509910Z [2651/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:56.9844410Z [2652/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x2-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:57.0048590Z [2653/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:57.0049410Z [2654/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld64.c.o 2025-09-07T06:11:57.0237340Z [2655/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:57.0257170Z [2656/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neon.c.o 2025-09-07T06:11:57.0308330Z [2657/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:57.0516900Z [2658/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld128.c.o 2025-09-07T06:11:57.0751510Z [2659/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x16-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:57.0951950Z [2660/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:57.1022670Z [2661/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-dup-ld64.c.o 2025-09-07T06:11:57.1274780Z [2662/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neon.c.o 2025-09-07T06:11:57.1301790Z [2663/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld128.c.o 2025-09-07T06:11:57.1373320Z [2664/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:57.1611080Z [2665/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:57.1622610Z [2666/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neon.c.o 2025-09-07T06:11:57.1680510Z [2667/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld64.c.o 2025-09-07T06:11:57.2079870Z [2668/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld128.c.o 2025-09-07T06:11:57.2133690Z [2669/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:57.2641300Z [2670/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neon.c.o 2025-09-07T06:11:57.2794920Z [2671/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:11:57.2806550Z [2672/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-int.c.o 2025-09-07T06:11:57.2831440Z [2673/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld64.c.o 2025-09-07T06:11:57.2931750Z [2674/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-09-07T06:11:57.3050870Z [2675/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld128.c.o 2025-09-07T06:11:57.3073100Z [2676/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-int.c.o 2025-09-07T06:11:57.3208060Z [2677/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon-acc2.c.o 2025-09-07T06:11:57.3306000Z [2678/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-float.c.o 2025-09-07T06:11:57.3382440Z [2679/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neon.c.o 2025-09-07T06:11:57.3589060Z [2680/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-float.c.o 2025-09-07T06:11:57.3728920Z [2681/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-int.c.o 2025-09-07T06:11:57.3783750Z [2682/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-float.c.o 2025-09-07T06:11:57.3895270Z [2683/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-int.c.o 2025-09-07T06:11:57.4091470Z [2684/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-float.c.o 2025-09-07T06:11:57.4332440Z [2685/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u8.c.o 2025-09-07T06:11:57.4345300Z [2686/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u24.c.o 2025-09-07T06:11:57.4770790Z [2687/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u16.c.o 2025-09-07T06:11:57.4871440Z [2688/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u32.c.o 2025-09-07T06:11:57.4976890Z [2689/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u8.c.o 2025-09-07T06:11:57.5005520Z [2690/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u24.c.o 2025-09-07T06:11:57.5221180Z [2691/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u32.c.o 2025-09-07T06:11:57.5325280Z [2692/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x2.c.o 2025-09-07T06:11:57.5428790Z [2693/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x1.c.o 2025-09-07T06:11:57.5463310Z [2694/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x1.c.o 2025-09-07T06:11:57.5606190Z [2695/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x2.c.o 2025-09-07T06:11:57.5754320Z [2696/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x1.c.o 2025-09-07T06:11:57.5799980Z [2697/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x2.c.o 2025-09-07T06:11:57.5919580Z [2698/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x1.c.o 2025-09-07T06:11:57.6524080Z [2699/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon-acc2.c.o 2025-09-07T06:11:57.6605920Z [2700/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon-acc2.c.o 2025-09-07T06:11:57.6616710Z [2701/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon.c.o 2025-09-07T06:11:57.6696780Z [2702/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x2.c.o 2025-09-07T06:11:57.6707420Z [2703/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon.c.o 2025-09-07T06:11:57.6922540Z [2704/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon-acc2.c.o 2025-09-07T06:11:57.6998870Z [2705/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon-acc2.c.o 2025-09-07T06:11:57.7339610Z [2706/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon.c.o 2025-09-07T06:11:57.7550420Z [2707/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon-acc2.c.o 2025-09-07T06:11:57.7651740Z [2708/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon-acc2.c.o 2025-09-07T06:11:57.7958290Z [2709/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon-acc2.c.o 2025-09-07T06:11:57.7966360Z [2710/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon.c.o 2025-09-07T06:11:57.7969820Z [2711/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon.c.o 2025-09-07T06:11:57.8139210Z [2712/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon-acc2.c.o 2025-09-07T06:11:57.8195960Z [2713/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon.c.o 2025-09-07T06:11:57.8292580Z [2714/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon-acc2.c.o 2025-09-07T06:11:57.8356550Z [2715/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon-acc2.c.o 2025-09-07T06:11:57.9042340Z [2716/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neon.c.o 2025-09-07T06:11:57.9122280Z [2717/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon.c.o 2025-09-07T06:11:57.9186810Z [2718/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon.c.o 2025-09-07T06:11:57.9307080Z [2719/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon-acc2.c.o 2025-09-07T06:11:57.9334000Z [2720/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon.c.o 2025-09-07T06:11:57.9390680Z [2721/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon.c.o 2025-09-07T06:11:57.9515930Z [2722/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon.c.o 2025-09-07T06:11:57.9714070Z [2723/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon-acc2.c.o 2025-09-07T06:11:57.9717240Z [2724/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon-acc2.c.o 2025-09-07T06:11:57.9828180Z [2725/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon.c.o 2025-09-07T06:11:58.0116620Z [2726/5254] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-dq-aarch64-neon.S.o 2025-09-07T06:11:58.0181280Z [2727/5254] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x4-packA-aarch64-neon.S.o 2025-09-07T06:11:58.0343960Z [2728/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon-acc2.c.o 2025-09-07T06:11:58.0347330Z [2729/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon.c.o 2025-09-07T06:11:58.0357790Z [2730/5254] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c1x4-dq-packedA-aarch64-neon.S.o 2025-09-07T06:11:58.0568470Z [2731/5254] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c8x1-dq-packedA-aarch64-neon.S.o 2025-09-07T06:11:58.0634620Z [2732/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon.c.o 2025-09-07T06:11:58.0848880Z [2733/5254] Building C object confu-deps/clog/CMakeFiles/clog.dir/src/clog.c.o 2025-09-07T06:11:58.1088150Z [2734/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/init.c.o 2025-09-07T06:11:58.1143400Z [2735/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-inference.c.o 2025-09-07T06:11:58.1326880Z [2736/5254] Linking C static library lib/libclog.a 2025-09-07T06:11:58.1340350Z [2737/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/pooling-output.c.o 2025-09-07T06:11:58.1463520Z [2738/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-inference.c.o 2025-09-07T06:11:58.1498930Z [2739/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-output.c.o 2025-09-07T06:11:58.1656040Z [2740/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-output.c.o 2025-09-07T06:11:58.1669800Z [2741/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-input-gradient.c.o 2025-09-07T06:11:58.1714730Z [2742/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/softmax-output.c.o 2025-09-07T06:11:58.1938880Z [2743/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-input-gradient.c.o 2025-09-07T06:11:58.2336830Z [2744/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-output.c.o 2025-09-07T06:11:58.2357500Z [2745/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-kernel-gradient.c.o 2025-09-07T06:11:58.2695730Z [2746/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3-fp16.c.o 2025-09-07T06:11:58.2753060Z [2747/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-16x16.c.o 2025-09-07T06:11:58.2759980Z [2748/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3.c.o 2025-09-07T06:11:58.2814090Z [2749/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-8x8.c.o 2025-09-07T06:11:58.2888090Z [2750/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4gemm.c.o 2025-09-07T06:11:58.3027080Z [2751/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/h4gemm.c.o 2025-09-07T06:11:58.3030780Z [2752/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb.c.o 2025-09-07T06:11:58.3377120Z [2753/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb.c.o 2025-09-07T06:11:58.3648070Z [2754/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/conv1x1.c.o 2025-09-07T06:11:58.3732040Z [2755/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sgemm.c.o 2025-09-07T06:11:58.3880240Z [2756/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/relu.c.o 2025-09-07T06:11:58.4092890Z [2757/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/softmax.c.o 2025-09-07T06:11:58.4114170Z [2758/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/blas/shdotxf.c.o 2025-09-07T06:11:58.4241830Z [2759/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sdotxf.c.o 2025-09-07T06:11:58.4269520Z [2760/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm.c.o 2025-09-07T06:11:58.4277530Z [2761/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm.c.o 2025-09-07T06:11:58.4459480Z [2762/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-output.c.o 2025-09-07T06:11:58.4647940Z [2763/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb-transc.c.o 2025-09-07T06:11:58.4655670Z [2764/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/fully-connected-output.c.o 2025-09-07T06:11:58.4763870Z [2765/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb-transc.c.o 2025-09-07T06:11:58.4769530Z [2766/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-kernel.c.o 2025-09-07T06:11:58.5162380Z [2767/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/softmax-output.c.o 2025-09-07T06:11:58.5176370Z [2768/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/max-pooling-output.c.o 2025-09-07T06:11:58.5202940Z [2769/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-input-gradient.c.o 2025-09-07T06:11:58.5423500Z [2770/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-output.c.o 2025-09-07T06:11:58.5439440Z [2771/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconvolution.c.o 2025-09-07T06:11:58.5585710Z [2772/5254] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-prepack.cc.o 2025-09-07T06:11:58.5657420Z [2773/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected-sparse.c.o 2025-09-07T06:11:58.5802700Z [2774/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected.c.o 2025-09-07T06:11:58.5808430Z [2775/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/global-average-pooling.c.o 2025-09-07T06:11:58.5847620Z [2776/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardsigmoid.c.o 2025-09-07T06:11:58.6241190Z [2777/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardswish.c.o 2025-09-07T06:11:58.6417050Z [2778/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/leaky-relu.c.o 2025-09-07T06:11:58.6557550Z [2779/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sigmoid.c.o 2025-09-07T06:11:58.6558700Z [2780/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/max-pooling.c.o 2025-09-07T06:11:58.6619870Z [2781/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/softargmax.c.o 2025-09-07T06:11:58.6823510Z [2782/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/tanh.c.o 2025-09-07T06:11:58.6911040Z [2783/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-delete.c.o 2025-09-07T06:11:58.7028960Z [2784/5254] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-run.cc.o 2025-09-07T06:11:58.7363140Z [2785/5254] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconv-run.cc.o 2025-09-07T06:11:58.7568160Z [2786/5254] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-unpack.cc.o 2025-09-07T06:11:58.7729950Z [2787/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8lut32norm/scalar.c.o 2025-09-07T06:11:58.7845680Z [2788/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-run.c.o 2025-09-07T06:11:58.7889020Z [2789/5254] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-dynamic-run.cc.o 2025-09-07T06:11:58.7898820Z [2790/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8lut/scalar.c.o 2025-09-07T06:11:58.7972260Z [2791/5254] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-run.cc.o 2025-09-07T06:11:58.8122360Z [2792/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-psimd.c.o 2025-09-07T06:11:58.8242760Z [2793/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/mp8x9p8q-neon.c.o 2025-09-07T06:11:58.8247800Z [2794/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/indirection.c.o 2025-09-07T06:11:58.8475550Z [2795/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8x9-neon.c.o 2025-09-07T06:11:58.8932020Z [2796/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8xm-neon.c.o 2025-09-07T06:11:58.9067330Z [2797/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/4x8-neon.c.o 2025-09-07T06:11:58.9192550Z [2798/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon.c.o 2025-09-07T06:11:58.9265280Z [2799/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x27-neon.c.o 2025-09-07T06:11:58.9309650Z [2800/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon-per-channel.c.o 2025-09-07T06:11:58.9316000Z [2801/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon.c.o 2025-09-07T06:11:58.9490910Z [2802/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon-per-channel.c.o 2025-09-07T06:11:58.9502490Z [2803/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-neon.c.o 2025-09-07T06:11:58.9676420Z [2804/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8x7-neon.c.o 2025-09-07T06:11:58.9750100Z [2805/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/mp8x7p7q-neon.c.o 2025-09-07T06:11:59.0112140Z [2806/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x-sumrows-neon.c.o 2025-09-07T06:11:59.0122480Z [2807/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8xm-neon.c.o 2025-09-07T06:11:59.0393860Z [2808/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-neon.c.o 2025-09-07T06:11:59.0594920Z [2809/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8c2-xzp-neon.c.o 2025-09-07T06:11:59.0597060Z [2810/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/6x4-neon.c.o 2025-09-07T06:11:59.0757240Z [2811/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8vadd/neon.c.o 2025-09-07T06:11:59.0800810Z [2812/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-dq-neon.c.o 2025-09-07T06:11:59.0899380Z [2813/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-neon.c.o 2025-09-07T06:11:59.0903400Z [2814/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/5x8-neon.c.o 2025-09-07T06:11:59.0993470Z [2815/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-neon.c.o 2025-09-07T06:11:59.1489670Z [2816/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8clamp/neon.c.o 2025-09-07T06:11:59.1532470Z [2817/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/16x9p8q-neon.c.o 2025-09-07T06:11:59.1673570Z [2818/5254] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-aarch64-neon.S.o 2025-09-07T06:11:59.1675570Z [2819/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/sub16-neon.c.o 2025-09-07T06:11:59.1768200Z [2820/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x2-neon.c.o 2025-09-07T06:11:59.1877110Z [2821/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8rmax/neon.c.o 2025-09-07T06:11:59.1891210Z [2822/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x3-neon.c.o 2025-09-07T06:11:59.2079170Z [2823/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x4-neon.c.o 2025-09-07T06:11:59.2208660Z [2824/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/xm-neon.c.o 2025-09-07T06:11:59.2361390Z [2825/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-neonfp16arith-2x.c.o 2025-09-07T06:11:59.3025080Z [2826/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u16.c.o 2025-09-07T06:11:59.3161420Z [2827/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-neonfp16arith-u16.c.o 2025-09-07T06:11:59.3266550Z [2828/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u16.c.o 2025-09-07T06:11:59.3371740Z [2829/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u2.c.o 2025-09-07T06:11:59.3480080Z [2830/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-neonfp16arith-u16.c.o 2025-09-07T06:11:59.3491330Z [2831/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-neonfp16arith-u16.c.o 2025-09-07T06:11:59.3500580Z [2832/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrsubc-neonfp16arith-u16.c.o 2025-09-07T06:11:59.3504770Z [2833/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u16.c.o 2025-09-07T06:11:59.3602810Z [2834/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u16.c.o 2025-09-07T06:11:59.3614040Z [2835/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u16.c.o 2025-09-07T06:11:59.4270220Z [2836/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u16.c.o 2025-09-07T06:11:59.4370310Z [2837/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u16.c.o 2025-09-07T06:11:59.4581630Z [2838/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u16.c.o 2025-09-07T06:11:59.4609600Z [2839/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u16.c.o 2025-09-07T06:11:59.4793290Z [2840/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u16.c.o 2025-09-07T06:11:59.4825060Z [2841/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u8.c.o 2025-09-07T06:11:59.4854040Z [2842/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u32.c.o 2025-09-07T06:11:59.4956480Z [2843/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u16.c.o 2025-09-07T06:11:59.4957290Z [2844/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u16.c.o 2025-09-07T06:11:59.5017950Z [2845/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u16.c.o 2025-09-07T06:11:59.5705550Z [2846/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u16.c.o 2025-09-07T06:11:59.5805520Z [2847/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u32.c.o 2025-09-07T06:11:59.5808080Z [2848/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u32.c.o 2025-09-07T06:11:59.5956110Z [2849/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u8.c.o 2025-09-07T06:11:59.5993610Z [2850/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-neon-c4.c.o 2025-09-07T06:11:59.6027560Z [2851/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-09-07T06:11:59.6093040Z [2852/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o 2025-09-07T06:11:59.6101930Z [2853/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u16.c.o 2025-09-07T06:11:59.6299970Z [2854/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-neon-c4.c.o 2025-09-07T06:11:59.6313170Z [2855/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u16.c.o 2025-09-07T06:11:59.7076280Z [2856/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-neon-c4.c.o 2025-09-07T06:11:59.7114310Z [2857/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-09-07T06:11:59.7198510Z [2858/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-09-07T06:11:59.7200480Z [2859/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-aarch64-neonfma-2x2.c.o 2025-09-07T06:11:59.7308160Z [2860/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2025-09-07T06:11:59.7393440Z [2861/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o 2025-09-07T06:11:59.7417420Z [2862/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-neon-c4.c.o 2025-09-07T06:11:59.7418420Z [2863/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o 2025-09-07T06:11:59.7419260Z [2864/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-neon-c4.c.o 2025-09-07T06:11:59.7420030Z [2865/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-neon-2x2.c.o 2025-09-07T06:11:59.8097440Z [2866/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.o 2025-09-07T06:11:59.8128580Z [2867/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2025-09-07T06:11:59.8395860Z [2868/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2025-09-07T06:11:59.8424840Z [2869/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-09-07T06:11:59.8621310Z [2870/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o 2025-09-07T06:11:59.8732020Z [2871/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma-acc2.c.o 2025-09-07T06:11:59.8756690Z [2872/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o 2025-09-07T06:11:59.8796480Z [2873/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma.c.o 2025-09-07T06:11:59.8884980Z [2874/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon-acc2.c.o 2025-09-07T06:11:59.9201140Z [2875/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon.c.o 2025-09-07T06:11:59.9391620Z [2876/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o 2025-09-07T06:11:59.9550790Z [2877/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon.c.o 2025-09-07T06:11:59.9721030Z [2878/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma.c.o 2025-09-07T06:11:59.9777520Z [2879/5254] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-input-gradient.c.o 2025-09-07T06:11:59.9783510Z [2880/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-09-07T06:11:59.9951060Z [2881/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-conv-hwc2chw/f16-conv-hwc2chw-3x3s2p1c3x4-neonfp16arith-2x2.c.o 2025-09-07T06:12:00.0019100Z [2882/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith-acc2.c.o 2025-09-07T06:12:00.0077830Z [2883/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-neonfp16arith-c8.c.o 2025-09-07T06:12:00.0295210Z [2884/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith.c.o 2025-09-07T06:12:00.0600150Z [2885/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith.c.o 2025-09-07T06:12:00.0925930Z [2886/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith.c.o 2025-09-07T06:12:00.1029060Z [2887/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-2x8.c.o 2025-09-07T06:12:00.1113230Z [2888/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-09-07T06:12:00.1230500Z [2889/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-1x8.c.o 2025-09-07T06:12:00.1287610Z [2890/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith.c.o 2025-09-07T06:12:00.1363230Z [2891/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u16.c.o 2025-09-07T06:12:00.1494230Z [2892/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8.c.o 2025-09-07T06:12:00.1794430Z [2893/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u16.c.o 2025-09-07T06:12:00.1994630Z [2894/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u1.c.o 2025-09-07T06:12:00.2032030Z [2895/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-09-07T06:12:00.2136680Z [2896/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2025-09-07T06:12:00.2158730Z [2897/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u32-acc4.c.o 2025-09-07T06:12:00.2169420Z [2898/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-minmax-neonfp16arith-c16.c.o 2025-09-07T06:12:00.2172060Z [2899/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S.o 2025-09-07T06:12:00.2200660Z [2900/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8.c.o 2025-09-07T06:12:00.2485780Z [2901/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:12:00.2555640Z [2902/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55r0.S.o 2025-09-07T06:12:00.2946290Z [2903/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S.o 2025-09-07T06:12:00.3106750Z [2904/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-09-07T06:12:00.3144280Z [2905/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:12:00.3166580Z [2906/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-09-07T06:12:00.3208690Z [2907/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-09-07T06:12:00.3470300Z [2908/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S.o 2025-09-07T06:12:00.3534610Z [2909/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:12:00.3770260Z [2910/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55r0.S.o 2025-09-07T06:12:00.3902330Z [2911/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S.o 2025-09-07T06:12:00.3964160Z [2912/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:12:00.3972310Z [2913/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-09-07T06:12:00.4122850Z [2914/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c8.c.o 2025-09-07T06:12:00.4162600Z [2915/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p8.c.o 2025-09-07T06:12:00.4826430Z [2916/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:12:00.4961140Z [2917/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:12:00.5050210Z [2918/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:12:00.5091510Z [2919/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-neonfp16arith-c8.c.o 2025-09-07T06:12:00.5104660Z [2920/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-09-07T06:12:00.5270580Z [2921/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32.c.o 2025-09-07T06:12:00.5373660Z [2922/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-09-07T06:12:00.5375850Z [2923/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u4.c.o 2025-09-07T06:12:00.5475730Z [2924/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u32.c.o 2025-09-07T06:12:00.5476570Z [2925/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-09-07T06:12:00.5753200Z [2926/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u4.c.o 2025-09-07T06:12:00.6389270Z [2927/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc4.c.o 2025-09-07T06:12:00.6506880Z [2928/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc4.c.o 2025-09-07T06:12:00.6558710Z [2929/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-scalar-u2-acc2.c.o 2025-09-07T06:12:00.6641460Z [2930/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u2-acc2.c.o 2025-09-07T06:12:00.6753310Z [2931/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vadd-neonfp16arith-u16.c.o 2025-09-07T06:12:00.6798090Z [2932/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-aarch64-neonfp16arith-u8.c.o 2025-09-07T06:12:00.6806100Z [2933/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vaddc-neonfp16arith-u16.c.o 2025-09-07T06:12:00.7044130Z [2934/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u2.c.o 2025-09-07T06:12:00.7156720Z [2935/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-aarch64-neonfp16arith-u8.c.o 2025-09-07T06:12:00.7246600Z [2936/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-pipelined.c.o 2025-09-07T06:12:00.7646320Z [2937/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u2.c.o 2025-09-07T06:12:00.7738950Z [2938/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u16.c.o 2025-09-07T06:12:00.8143800Z [2939/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u16.c.o 2025-09-07T06:12:00.8159430Z [2940/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u16.c.o 2025-09-07T06:12:00.8173450Z [2941/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u16.c.o 2025-09-07T06:12:00.8192110Z [2942/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmul-neonfp16arith-u16.c.o 2025-09-07T06:12:00.8223370Z [2943/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vprelu-neonfp16arith-u16.c.o 2025-09-07T06:12:00.8372900Z [2944/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmulc-neonfp16arith-u16.c.o 2025-09-07T06:12:00.8408910Z [2945/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma-acc2.c.o 2025-09-07T06:12:00.8468290Z [2946/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vpreluc-neonfp16arith-u16.c.o 2025-09-07T06:12:00.8784090Z [2947/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-aarch64-neonfp16arith-u8.c.o 2025-09-07T06:12:00.9159480Z [2948/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon-acc2.c.o 2025-09-07T06:12:01.0585690Z [2949/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/common.cc.o 2025-09-07T06:12:01.0610050Z [2950/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/statusor.cc.o 2025-09-07T06:12:01.0721570Z [2951/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2025-09-07T06:12:01.0749240Z [2952/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2025-09-07T06:12:01.0763290Z [2953/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/status.cc.o 2025-09-07T06:12:01.0961390Z [2954/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/int128.cc.o 2025-09-07T06:12:01.1116560Z [2955/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2025-09-07T06:12:01.1180540Z [2956/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/repeated_field.cc.o 2025-09-07T06:12:01.2158270Z [2957/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/time.cc.o 2025-09-07T06:12:01.2487750Z [2958/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2025-09-07T06:12:01.3386650Z [2959/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.cc.o 2025-09-07T06:12:01.3435890Z [2960/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/strutil.cc.o 2025-09-07T06:12:01.3439240Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/protobuf/src/google/protobuf/stubs/strutil.cc:507:11: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations] 2025-09-07T06:12:01.3442100Z sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2025-09-07T06:12:01.3442670Z ^ 2025-09-07T06:12:01.3443740Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:180:1: note: 'sprintf' has been explicitly marked deprecated here 2025-09-07T06:12:01.3445960Z __deprecated_msg("This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.") 2025-09-07T06:12:01.3447440Z ^ 2025-09-07T06:12:01.3448810Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2025-09-07T06:12:01.3450230Z #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2025-09-07T06:12:01.3450970Z ^ 2025-09-07T06:12:01.3451490Z 1 warning generated. 2025-09-07T06:12:01.3567850Z [2961/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.pb.cc.o 2025-09-07T06:12:01.3610590Z [2962/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/api.pb.cc.o 2025-09-07T06:12:01.3707100Z [2963/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format_lite.cc.o 2025-09-07T06:12:01.3796450Z [2964/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/importer.cc.o 2025-09-07T06:12:01.4803700Z [2965/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/parser.cc.o 2025-09-07T06:12:01.5104230Z [2966/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.cc.o 2025-09-07T06:12:01.5860940Z [2967/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/duration.pb.cc.o 2025-09-07T06:12:01.5997820Z [2968/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/empty.pb.cc.o 2025-09-07T06:12:01.6006360Z [2969/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set_heavy.cc.o 2025-09-07T06:12:01.6033500Z [2970/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven.cc.o 2025-09-07T06:12:01.6134220Z [2971/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/field_mask.pb.cc.o 2025-09-07T06:12:01.6250760Z [2972/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.pb.cc.o 2025-09-07T06:12:01.6254170Z [2973/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/dynamic_message.cc.o 2025-09-07T06:12:01.6280140Z [2974/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor_database.cc.o 2025-09-07T06:12:01.7543950Z [2975/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/gzip_stream.cc.o 2025-09-07T06:12:01.8323480Z [2976/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/service.cc.o 2025-09-07T06:12:01.8609920Z [2977/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/reflection_ops.cc.o 2025-09-07T06:12:01.8708460Z [2978/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/tokenizer.cc.o 2025-09-07T06:12:01.8747760Z [2979/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/struct.pb.cc.o 2025-09-07T06:12:01.8952980Z [2980/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/printer.cc.o 2025-09-07T06:12:01.9058700Z [2981/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_reflection.cc.o 2025-09-07T06:12:01.9061330Z [2982/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/map_field.cc.o 2025-09-07T06:12:01.9278800Z [2983/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message.cc.o 2025-09-07T06:12:02.0524220Z [2984/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/source_context.pb.cc.o 2025-09-07T06:12:02.0649180Z [2985/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/substitute.cc.o 2025-09-07T06:12:02.0829810Z [2986/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/unknown_field_set.cc.o 2025-09-07T06:12:02.1005610Z [2987/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/text_format.cc.o 2025-09-07T06:12:02.1033100Z [2988/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/type.pb.cc.o 2025-09-07T06:12:02.1137460Z [2989/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/delimited_message_util.cc.o 2025-09-07T06:12:02.1509940Z [2990/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/field_mask_utility.cc.o 2025-09-07T06:12:02.1519980Z [2991/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/timestamp.pb.cc.o 2025-09-07T06:12:02.2961640Z [2992/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/error_listener.cc.o 2025-09-07T06:12:02.3150930Z [2993/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_comparator.cc.o 2025-09-07T06:12:02.3255950Z [2994/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_mask_util.cc.o 2025-09-07T06:12:02.3308210Z [2995/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_objectwriter.cc.o 2025-09-07T06:12:02.3317490Z [2996/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/datapiece.cc.o 2025-09-07T06:12:02.3333520Z [2997/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/default_value_objectwriter.cc.o 2025-09-07T06:12:02.3348680Z [2998/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_stream_parser.cc.o 2025-09-07T06:12:02.3472120Z [2999/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_escaping.cc.o 2025-09-07T06:12:02.4720850Z [3000/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/object_writer.cc.o 2025-09-07T06:12:02.4823780Z [3001/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectsource.cc.o 2025-09-07T06:12:02.5733630Z [3002/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectwriter.cc.o 2025-09-07T06:12:02.6188450Z [3003/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/arena.cc.o 2025-09-07T06:12:02.6327070Z [3004/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/utility.cc.o 2025-09-07T06:12:02.6361460Z [3005/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/proto_writer.cc.o 2025-09-07T06:12:02.6476090Z [3006/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info_test_helper.cc.o 2025-09-07T06:12:02.6583790Z [3007/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/js_generator.cc.o 2025-09-07T06:12:02.6664140Z [3008/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info.cc.o 2025-09-07T06:12:02.6672470Z [3009/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o 2025-09-07T06:12:02.7081300Z [3010/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/any_lite.cc.o 2025-09-07T06:12:02.7720900Z [3011/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/io_win32.cc.o 2025-09-07T06:12:02.8218520Z [3012/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/extension_set.cc.o 2025-09-07T06:12:02.8459240Z [3013/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2025-09-07T06:12:02.8715170Z [3014/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_enum_util.cc.o 2025-09-07T06:12:02.8889990Z [3015/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2025-09-07T06:12:02.9081460Z [3016/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/strtod.cc.o 2025-09-07T06:12:02.9130710Z [3017/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/coded_stream.cc.o 2025-09-07T06:12:02.9284320Z [3018/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_util.cc.o 2025-09-07T06:12:02.9309570Z [3019/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2025-09-07T06:12:02.9528000Z [3020/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2025-09-07T06:12:03.0081110Z [3021/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2025-09-07T06:12:03.1149770Z [3022/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2025-09-07T06:12:03.1314090Z [3023/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/parse_context.cc.o 2025-09-07T06:12:03.1388660Z [3024/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/repeated_field.cc.o 2025-09-07T06:12:03.1511130Z [3025/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2025-09-07T06:12:03.1530000Z [3026/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/common.cc.o 2025-09-07T06:12:03.1541380Z [3027/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/message_lite.cc.o 2025-09-07T06:12:03.1690500Z [3028/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/int128.cc.o 2025-09-07T06:12:03.2357060Z [3029/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/status.cc.o 2025-09-07T06:12:03.2360400Z [3030/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/io_win32.cc.o 2025-09-07T06:12:03.2969580Z [3031/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/statusor.cc.o 2025-09-07T06:12:03.3373260Z [3032/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2025-09-07T06:12:03.3576050Z [3033/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/time.cc.o 2025-09-07T06:12:03.3754450Z [3034/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2025-09-07T06:12:03.3861560Z [3035/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/coded_stream.cc.o 2025-09-07T06:12:03.3958640Z [3036/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2025-09-07T06:12:03.3978120Z [3037/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/wire_format_lite.cc.o 2025-09-07T06:12:03.4022770Z [3038/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/strutil.cc.o 2025-09-07T06:12:03.4024080Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/protobuf/src/google/protobuf/stubs/strutil.cc:507:11: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations] 2025-09-07T06:12:03.4026270Z sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2025-09-07T06:12:03.4026670Z ^ 2025-09-07T06:12:03.4027200Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:180:1: note: 'sprintf' has been explicitly marked deprecated here 2025-09-07T06:12:03.4028150Z __deprecated_msg("This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.") 2025-09-07T06:12:03.4031090Z ^ 2025-09-07T06:12:03.4031600Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2025-09-07T06:12:03.4032210Z #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2025-09-07T06:12:03.4032590Z ^ 2025-09-07T06:12:03.4033110Z 1 warning generated. 2025-09-07T06:12:03.4910790Z [3039/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/strtod.cc.o 2025-09-07T06:12:03.5011580Z [3040/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_util.cc.o 2025-09-07T06:12:03.5295570Z [3041/5254] Linking CXX static library lib/libprotobuf-lite.a 2025-09-07T06:12:03.5849970Z [3042/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_enum_util.cc.o 2025-09-07T06:12:03.6143660Z [3043/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2025-09-07T06:12:03.6261200Z [3044/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2025-09-07T06:12:03.6368250Z [3045/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any_lite.cc.o 2025-09-07T06:12:03.6411360Z [3046/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2025-09-07T06:12:03.6578430Z [3047/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set.cc.o 2025-09-07T06:12:03.6594440Z [3048/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/arena.cc.o 2025-09-07T06:12:03.7668470Z [3049/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2025-09-07T06:12:03.7860220Z [3050/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message_lite.cc.o 2025-09-07T06:12:03.8543470Z [3051/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o 2025-09-07T06:12:03.8689550Z [3052/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/parse_context.cc.o 2025-09-07T06:12:03.8837330Z [3053/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o 2025-09-07T06:12:03.9089920Z [3054/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o 2025-09-07T06:12:03.9629090Z [3055/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o 2025-09-07T06:12:03.9661880Z [3056/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o 2025-09-07T06:12:03.9991190Z [3057/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o 2025-09-07T06:12:04.0117580Z [3058/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o 2025-09-07T06:12:04.0696960Z [3059/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o 2025-09-07T06:12:04.0993100Z [3060/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o 2025-09-07T06:12:04.1696220Z [3061/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.cc.o 2025-09-07T06:12:04.1802700Z [3062/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/php/php_generator.cc.o 2025-09-07T06:12:04.1831010Z [3063/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/mach/topology.c.o 2025-09-07T06:12:04.1956340Z [3064/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-09-07T06:12:04.2007160Z [3065/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o 2025-09-07T06:12:04.2106200Z [3066/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/python/python_generator.cc.o 2025-09-07T06:12:04.2221600Z [3067/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/ruby/ruby_generator.cc.o 2025-09-07T06:12:04.2389750Z [3068/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.pb.cc.o 2025-09-07T06:12:04.2440580Z [3069/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/zip_writer.cc.o 2025-09-07T06:12:04.2639250Z [3070/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/subprocess.cc.o 2025-09-07T06:12:04.2771440Z [3071/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/cache.c.o 2025-09-07T06:12:04.3010410Z [3072/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/uarch.c.o 2025-09-07T06:12:04.3035640Z [3073/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-09-07T06:12:04.3050800Z [3074/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/mach/init.c.o 2025-09-07T06:12:04.3179040Z [3075/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-09-07T06:12:04.3352850Z [3076/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-09-07T06:12:04.3458990Z [3077/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-09-07T06:12:04.3555180Z [3078/5254] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/gcd.c.o 2025-09-07T06:12:04.3643440Z [3079/5254] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-09-07T06:12:04.3714760Z [3080/5254] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-09-07T06:12:04.3723290Z [3081/5254] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-09-07T06:12:04.3955840Z [3082/5254] Linking C static library lib/libcpuinfo.a 2025-09-07T06:12:04.4027340Z [3083/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-09-07T06:12:04.4038850Z [3084/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-09-07T06:12:04.4247510Z [3085/5254] Linking C static library lib/libpthreadpool.a 2025-09-07T06:12:04.4349030Z [3086/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-09-07T06:12:04.4416170Z [3087/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/uarch.c.o 2025-09-07T06:12:04.4471140Z [3088/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/cache.c.o 2025-09-07T06:12:04.4733860Z [3089/5254] Linking C static library lib/libnnpack_reference_layers.a 2025-09-07T06:12:04.4772270Z [3090/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/mach/init.c.o 2025-09-07T06:12:04.4785300Z [3091/5254] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/mach/topology.c.o 2025-09-07T06:12:04.4937820Z [3092/5254] Linking C static library lib/libnnpack.a 2025-09-07T06:12:04.5157750Z [3093/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/add.c.o 2025-09-07T06:12:04.5234360Z [3094/5254] Linking C static library lib/libcpuinfo_internals.a 2025-09-07T06:12:04.5329140Z [3095/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/init.c.o 2025-09-07T06:12:04.5594010Z [3096/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/average-pooling.c.o 2025-09-07T06:12:04.5615280Z [3097/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/channel-shuffle.c.o 2025-09-07T06:12:04.5837910Z [3098/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/clamp.c.o 2025-09-07T06:12:04.5849050Z [3099/5254] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-aarch64-neon.S.o 2025-09-07T06:12:04.5852990Z [3100/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/protoc.dir/__/src/google/protobuf/compiler/main.cc.o 2025-09-07T06:12:04.6065860Z [3101/5254] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-prepack.cc.o 2025-09-07T06:12:04.6080780Z [3102/5254] Linking CXX shared library lib/libc10.dylib 2025-09-07T06:12:04.6634620Z [3103/5254] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/convolution.c.o 2025-09-07T06:12:04.7542850Z [3104/5254] Linking CXX static library lib/libpytorch_qnnpack.a 2025-09-07T06:12:04.8410510Z [3105/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o 2025-09-07T06:12:04.8422980Z [3106/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/json_util.cc.o 2025-09-07T06:12:04.8456940Z [3107/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format.cc.o 2025-09-07T06:12:04.8537360Z [3108/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/type_resolver_util.cc.o 2025-09-07T06:12:04.8665840Z [3109/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/message_differencer.cc.o 2025-09-07T06:12:04.9145140Z [3110/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message.cc.o 2025-09-07T06:12:04.9248370Z [3111/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wrappers.pb.cc.o 2025-09-07T06:12:04.9259750Z [3112/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/time_util.cc.o 2025-09-07T06:12:05.0681120Z [3113/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_generator.cc.o 2025-09-07T06:12:05.1033170Z [3114/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o 2025-09-07T06:12:05.1109110Z [3115/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o 2025-09-07T06:12:05.1146220Z [3116/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_service.cc.o 2025-09-07T06:12:05.1245910Z [3117/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o 2025-09-07T06:12:05.1300150Z [3118/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o 2025-09-07T06:12:05.1306790Z [3119/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o 2025-09-07T06:12:05.1492660Z [3120/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum.cc.o 2025-09-07T06:12:05.2818260Z [3121/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o 2025-09-07T06:12:05.3211850Z [3122/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o 2025-09-07T06:12:05.3509120Z [3123/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o 2025-09-07T06:12:05.3978140Z [3124/5254] Linking CXX static library lib/libprotobuf.a 2025-09-07T06:12:05.4121020Z [3125/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o 2025-09-07T06:12:05.4355090Z [3126/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_generator.cc.o 2025-09-07T06:12:05.4357120Z [3127/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message.cc.o 2025-09-07T06:12:05.4460320Z [3128/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o 2025-09-07T06:12:05.4474220Z [3129/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o 2025-09-07T06:12:05.4796570Z [3130/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o 2025-09-07T06:12:05.5849920Z [3131/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_file.cc.o 2025-09-07T06:12:05.6152790Z [3132/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc.o 2025-09-07T06:12:05.6766720Z [3133/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum.cc.o 2025-09-07T06:12:05.6805700Z [3134/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_field.cc.o 2025-09-07T06:12:05.7011990Z [3135/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o 2025-09-07T06:12:05.7115030Z [3136/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_extension.cc.o 2025-09-07T06:12:05.7129900Z [3137/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/code_generator.cc.o 2025-09-07T06:12:05.7311530Z [3138/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/command_line_interface.cc.o 2025-09-07T06:12:05.7352210Z [3139/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o 2025-09-07T06:12:05.8296040Z [3140/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o 2025-09-07T06:12:05.8410260Z [3141/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o 2025-09-07T06:12:05.8972460Z [3142/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o 2025-09-07T06:12:05.9698660Z [3143/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_doc_comment.cc.o 2025-09-07T06:12:05.9872020Z [3144/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_context.cc.o 2025-09-07T06:12:05.9927980Z [3145/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o 2025-09-07T06:12:05.9969590Z [3146/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum.cc.o 2025-09-07T06:12:06.0010540Z [3147/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o 2025-09-07T06:12:06.0113490Z [3148/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension_lite.cc.o 2025-09-07T06:12:06.0275810Z [3149/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field.cc.o 2025-09-07T06:12:06.1780170Z [3150/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_lite.cc.o 2025-09-07T06:12:06.1841020Z [3151/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator_factory.cc.o 2025-09-07T06:12:06.2114290Z [3152/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension.cc.o 2025-09-07T06:12:06.2357080Z [3153/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_field.cc.o 2025-09-07T06:12:06.2368500Z [3154/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator.cc.o 2025-09-07T06:12:06.2578490Z [3155/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_helpers.cc.o 2025-09-07T06:12:06.2620660Z [3156/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field_lite.cc.o 2025-09-07T06:12:06.2628010Z [3157/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_file.cc.o 2025-09-07T06:12:06.3503740Z [3158/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder.cc.o 2025-09-07T06:12:06.4293190Z [3159/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field.cc.o 2025-09-07T06:12:06.4625320Z [3160/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o 2025-09-07T06:12:06.4788460Z [3161/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field.cc.o 2025-09-07T06:12:06.4922750Z [3162/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field_lite.cc.o 2025-09-07T06:12:06.5121240Z [3163/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_name_resolver.cc.o 2025-09-07T06:12:06.5495390Z [3164/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_lite.cc.o 2025-09-07T06:12:06.5496210Z [3165/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message.cc.o 2025-09-07T06:12:06.5764120Z [3166/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/well_known_types_embed.cc.o 2025-09-07T06:12:06.5805290Z [3167/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o 2025-09-07T06:12:06.6666270Z [3168/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field.cc.o 2025-09-07T06:12:06.6844090Z [3169/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:12:06.6857470Z [3170/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:12:06.6950470Z [3171/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o 2025-09-07T06:12:06.7085760Z [3172/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field_lite.cc.o 2025-09-07T06:12:06.7088130Z [3173/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:12:06.7461680Z [3174/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_service.cc.o 2025-09-07T06:12:06.7521480Z [3175/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:12:06.7929550Z [3176/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o 2025-09-07T06:12:06.7987960Z [3177/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:12:06.8138180Z [3178/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c4-minmax-fp32-neondot.c.o 2025-09-07T06:12:06.8143130Z [3179/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:12:06.8153050Z [3180/5254] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field.cc.o 2025-09-07T06:12:06.8170980Z [3181/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-09-07T06:12:06.8220010Z [3182/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2s4-minmax-fp32-neon-mlal.c.o 2025-09-07T06:12:06.8312580Z [3183/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-09-07T06:12:06.8357990Z [3184/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neondot.c.o 2025-09-07T06:12:06.8492390Z [3185/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-09-07T06:12:06.8812440Z [3186/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-09-07T06:12:06.9078630Z [3187/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-09-07T06:12:06.9085890Z [3188/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-09-07T06:12:06.9229790Z [3189/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-09-07T06:12:06.9266190Z [3190/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-09-07T06:12:06.9577910Z [3191/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-ld64.S.o 2025-09-07T06:12:06.9668850Z [3192/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:12:06.9680440Z [3193/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:12:06.9804600Z [3194/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-cortex-a55.S.o 2025-09-07T06:12:06.9916980Z [3195/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2s4-minmax-fp32-neon-mlal.c.o 2025-09-07T06:12:06.9947800Z [3196/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld128.S.o 2025-09-07T06:12:07.0076750Z [3197/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-09-07T06:12:07.0547730Z [3198/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-neondot.c.o 2025-09-07T06:12:07.0874420Z [3199/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:12:07.1014080Z [3200/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:12:07.1016440Z [3201/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8c4-minmax-fp32-neondot.c.o 2025-09-07T06:12:07.1157670Z [3202/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c4-minmax-fp32-neondot.c.o 2025-09-07T06:12:07.1160330Z [3203/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-09-07T06:12:07.1192780Z [3204/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-09-07T06:12:07.1354300Z [3205/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2s4-minmax-fp32-neon-mlal.c.o 2025-09-07T06:12:07.1368340Z [3206/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-09-07T06:12:07.1570080Z [3207/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-09-07T06:12:07.1688970Z [3208/5254] Linking CXX static library lib/libprotoc.a 2025-09-07T06:12:07.1805150Z [3209/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neondot.c.o 2025-09-07T06:12:07.1837100Z [3210/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-09-07T06:12:07.2005100Z [3211/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-09-07T06:12:07.2230960Z [3212/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-09-07T06:12:07.2239820Z [3213/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-09-07T06:12:07.2484530Z [3214/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:12:07.2620530Z [3215/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-09-07T06:12:07.2623310Z [3216/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-ld64.S.o 2025-09-07T06:12:07.2626420Z [3217/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-09-07T06:12:07.2871200Z [3218/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-cortex-a55.S.o 2025-09-07T06:12:07.2977350Z [3219/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:12:07.3185520Z [3220/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld128.S.o 2025-09-07T06:12:07.3686400Z [3221/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.o 2025-09-07T06:12:07.3767480Z [3222/5254] Linking CXX executable bin/protoc-3.13.0.0 2025-09-07T06:12:07.3845410Z [3223/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-neondot.c.o 2025-09-07T06:12:07.3859630Z [3224/5254] Creating executable symlink bin/protoc 2025-09-07T06:12:07.3883990Z [3225/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8c4-minmax-fp32-neondot.c.o 2025-09-07T06:12:07.3932190Z [3226/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x16c8-gemm-goi-scalar.c.o 2025-09-07T06:12:07.4112180Z [3227/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2s4-minmax-fp32-neon-mlal.c.o 2025-09-07T06:12:07.4150090Z [3228/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c32.c.o 2025-09-07T06:12:07.4181100Z [3229/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neon-u32-acc2.c.o 2025-09-07T06:12:07.4276500Z [3230/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u4.c.o 2025-09-07T06:12:07.4328380Z [3231/5254] Running gen_proto.py on onnx/onnx.in.proto 2025-09-07T06:12:07.4339320Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx.in.proto 2025-09-07T06:12:07.4346040Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-09-07T06:12:07.4353810Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto3 2025-09-07T06:12:07.4358800Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-ml.pb.h 2025-09-07T06:12:07.4363040Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_pb.py 2025-09-07T06:12:07.4999510Z [3232/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u32-acc2.c.o 2025-09-07T06:12:07.5004030Z [3233/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u4.c.o 2025-09-07T06:12:07.5030740Z [3234/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2025-09-07T06:12:07.5205360Z [3235/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u32.c.o 2025-09-07T06:12:07.5218610Z [3236/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u1.c.o 2025-09-07T06:12:07.5223920Z [3237/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u1.c.o 2025-09-07T06:12:07.5483860Z [3238/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u16.c.o 2025-09-07T06:12:07.5958000Z [3239/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u32.c.o 2025-09-07T06:12:07.6021940Z [3240/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u16.c.o 2025-09-07T06:12:07.6101590Z [3241/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2025-09-07T06:12:07.6124320Z [3242/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u4.c.o 2025-09-07T06:12:07.6269410Z [3243/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u4.c.o 2025-09-07T06:12:07.6305470Z [3244/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u32.c.o 2025-09-07T06:12:07.6407250Z [3245/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u32.c.o 2025-09-07T06:12:07.6455670Z [3246/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o 2025-09-07T06:12:07.6722260Z [3247/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u4.c.o 2025-09-07T06:12:07.6947640Z [3248/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2025-09-07T06:12:07.7318790Z [3249/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2025-09-07T06:12:07.7341670Z [3250/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o 2025-09-07T06:12:07.7379280Z [3251/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-09-07T06:12:07.7578080Z [3252/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-neon-c8.c.o 2025-09-07T06:12:07.7611510Z [3253/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-09-07T06:12:07.7833820Z [3254/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:12:07.7941560Z [3255/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-neon-c8.c.o 2025-09-07T06:12:07.8047040Z [3256/5254] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-09-07T06:12:07.8070760Z [3257/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:12:07.8406520Z [3258/5254] Running gen_proto.py on onnx/onnx-data.in.proto 2025-09-07T06:12:07.8416150Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-data.in.proto 2025-09-07T06:12:07.8419650Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-09-07T06:12:07.8421950Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto3 2025-09-07T06:12:07.8422630Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data.pb.h 2025-09-07T06:12:07.8423130Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_data_pb.py 2025-09-07T06:12:07.8423780Z [3259/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:12:07.8591250Z [3260/5254] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-09-07T06:12:07.8592440Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-operators.in.proto 2025-09-07T06:12:07.8597190Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-09-07T06:12:07.8599060Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto3 2025-09-07T06:12:07.8600600Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators-ml.pb.h 2025-09-07T06:12:07.8602350Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_operators_pb.py 2025-09-07T06:12:07.8613730Z [3261/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:12:07.8684420Z [3262/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul8.c.o 2025-09-07T06:12:07.8761330Z [3263/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:12:07.8779130Z [3264/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:12:07.8927380Z [3265/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul8.c.o 2025-09-07T06:12:07.8934060Z [3266/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.o 2025-09-07T06:12:07.8954610Z [3267/5254] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-09-07T06:12:07.9142910Z [3268/5254] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-09-07T06:12:07.9660170Z [3269/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u1.c.o 2025-09-07T06:12:07.9829500Z [3270/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2025-09-07T06:12:07.9890230Z [3271/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u32.c.o 2025-09-07T06:12:08.0071080Z [3272/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u16.c.o 2025-09-07T06:12:08.0075460Z [3273/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u16.c.o 2025-09-07T06:12:08.0082350Z [3274/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u8.c.o 2025-09-07T06:12:08.0113000Z [3275/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u4.c.o 2025-09-07T06:12:08.0234200Z [3276/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u2.c.o 2025-09-07T06:12:08.0323160Z [3277/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u4.c.o 2025-09-07T06:12:08.2179040Z [3278/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/assertions.cc.o 2025-09-07T06:12:08.2364960Z [3279/5254] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx_onnx_torch-ml.pb.cc.o 2025-09-07T06:12:08.2467750Z [3280/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/interned_strings.cc.o 2025-09-07T06:12:08.2476680Z [3281/5254] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-operators_onnx_torch-ml.pb.cc.o 2025-09-07T06:12:08.2831310Z [3282/5254] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-data_onnx_torch.pb.cc.o 2025-09-07T06:12:08.2971110Z [3283/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/ir_pb_converter.cc.o 2025-09-07T06:12:08.3163300Z [3284/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/model_helpers.cc.o 2025-09-07T06:12:08.3261190Z [3285/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/status.cc.o 2025-09-07T06:12:08.3390810Z [3286/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/checker.cc.o 2025-09-07T06:12:08.3397680Z [3287/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/path.cc.o 2025-09-07T06:12:08.3467760Z [3288/5254] Linking CXX static library lib/libonnx_proto.a 2025-09-07T06:12:08.4983250Z [3289/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/attr_proto_util.cc.o 2025-09-07T06:12:08.5169020Z [3290/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/utils.cc.o 2025-09-07T06:12:08.5280720Z [3291/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/old.cc.o 2025-09-07T06:12:08.5652940Z [3292/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/defs.cc.o 2025-09-07T06:12:08.5861740Z [3293/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/data_type_utils.cc.o 2025-09-07T06:12:08.6180620Z [3294/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/function.cc.o 2025-09-07T06:12:08.6487000Z [3295/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/defs.cc.o 2025-09-07T06:12:08.6509820Z [3296/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/old.cc.o 2025-09-07T06:12:08.7521490Z [3297/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/image/defs.cc.o 2025-09-07T06:12:08.7755930Z [3298/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/utils.cc.o 2025-09-07T06:12:08.8092650Z [3299/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/defs.cc.o 2025-09-07T06:12:08.8680620Z [3300/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/old.cc.o 2025-09-07T06:12:08.8712500Z [3301/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/defs.cc.o 2025-09-07T06:12:08.8993290Z [3302/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/utils.cc.o 2025-09-07T06:12:08.9011920Z [3303/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/defs.cc.o 2025-09-07T06:12:08.9394110Z [3304/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/defs.cc.o 2025-09-07T06:12:08.9502820Z [3305/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/old.cc.o 2025-09-07T06:12:08.9917030Z [3306/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/old.cc.o 2025-09-07T06:12:09.0352790Z [3307/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/defs.cc.o 2025-09-07T06:12:09.0645250Z [3308/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/old.cc.o 2025-09-07T06:12:09.1591650Z [3309/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/old.cc.o 2025-09-07T06:12:09.2004110Z [3310/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/old.cc.o 2025-09-07T06:12:09.2078420Z [3311/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/parser.cc.o 2025-09-07T06:12:09.2104140Z [3312/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/defs.cc.o 2025-09-07T06:12:09.2259730Z [3313/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/old.cc.o 2025-09-07T06:12:09.2278700Z [3314/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/defs.cc.o 2025-09-07T06:12:09.2493100Z [3315/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/printer.cc.o 2025-09-07T06:12:09.2559400Z [3316/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/utils.cc.o 2025-09-07T06:12:09.3900160Z [3317/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/old.cc.o 2025-09-07T06:12:09.4174010Z [3318/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/defs.cc.o 2025-09-07T06:12:09.4962840Z [3319/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/schema.cc.o 2025-09-07T06:12:09.5166090Z [3320/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/sequence/defs.cc.o 2025-09-07T06:12:09.5189370Z [3321/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/shape_inference.cc.o 2025-09-07T06:12:09.5339620Z [3322/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/utils.cc.o 2025-09-07T06:12:09.5587590Z [3323/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/defs.cc.o 2025-09-07T06:12:09.5674320Z [3324/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/old.cc.o 2025-09-07T06:12:09.5942760Z [3325/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_util.cc.o 2025-09-07T06:12:09.5990980Z [3326/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_proto_util.cc.o 2025-09-07T06:12:09.7256170Z [3327/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/text/defs.cc.o 2025-09-07T06:12:09.7272750Z [3328/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/defs.cc.o 2025-09-07T06:12:09.7507680Z [3329/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u1.c.o 2025-09-07T06:12:09.7872110Z [3330/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/old.cc.o 2025-09-07T06:12:09.7874930Z [3331/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-neon.c.o 2025-09-07T06:12:09.8220730Z [3332/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/inliner/inliner.cc.o 2025-09-07T06:12:09.8461090Z [3333/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/training/defs.cc.o 2025-09-07T06:12:09.8572060Z [3334/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-scalar-rational-9-8-div.c.o 2025-09-07T06:12:09.8574280Z [3335/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-neon-rational-9-8-div.c.o 2025-09-07T06:12:09.8697210Z [3336/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/helper.cc.o 2025-09-07T06:12:09.8822350Z [3337/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/shape_inference/implementation.cc.o 2025-09-07T06:12:09.9042470Z [3338/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-scalar.c.o 2025-09-07T06:12:09.9091530Z [3339/5254] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/convert.cc.o 2025-09-07T06:12:09.9106410Z [3340/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-scalar.c.o 2025-09-07T06:12:09.9532390Z [3341/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-neon.c.o 2025-09-07T06:12:09.9568090Z [3342/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-neon.c.o 2025-09-07T06:12:09.9615840Z [3343/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-scalar.c.o 2025-09-07T06:12:09.9739520Z [3344/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c.o 2025-09-07T06:12:09.9748310Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/XNNPACK/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c:24:1: warning: non-void function does not return a value [-Wreturn-type] 2025-09-07T06:12:09.9751910Z } 2025-09-07T06:12:09.9758870Z ^ 2025-09-07T06:12:09.9813650Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/XNNPACK/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c:34:1: warning: non-void function does not return a value [-Wreturn-type] 2025-09-07T06:12:09.9913810Z } 2025-09-07T06:12:09.9914230Z ^ 2025-09-07T06:12:09.9914560Z 2 warnings generated. 2025-09-07T06:12:09.9916050Z [3345/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:12:09.9974760Z [3346/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x16-minmax-neonfp16arith-mlal-lane.c.o 2025-09-07T06:12:10.0197280Z [3347/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:12:10.0419320Z [3348/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x16-minmax-neonfp16arith-mlal-lane.c.o 2025-09-07T06:12:10.0671450Z [3349/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-6x16-minmax-neonfp16arith-mlal-lane.c.o 2025-09-07T06:12:10.1085090Z [3350/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:12:10.1178150Z [3351/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:12:10.1196400Z [3352/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-6x16-minmax-neonfp16arith-mlal-lane.c.o 2025-09-07T06:12:10.1209270Z [3353/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-09-07T06:12:10.1354060Z [3354/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c2s4-minmax-neonfp16arith.c.o 2025-09-07T06:12:10.1399090Z [3355/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondotfp16arith-cortex-a55.S.o 2025-09-07T06:12:10.1507530Z [3356/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:12:10.1548430Z [3357/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:12:10.1740490Z [3358/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-2x8c2s4-minmax-neonfp16arith.c.o 2025-09-07T06:12:10.2339260Z [3359/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-cortex-a55.S.o 2025-09-07T06:12:10.2348780Z [3360/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-09-07T06:12:10.2519730Z [3361/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:12:10.2578190Z [3362/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:12:10.2652320Z [3363/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c2s4-minmax-neonfp16arith-mlal.c.o 2025-09-07T06:12:10.2796630Z [3364/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:12:10.2802850Z [3365/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-2x8c2s4-minmax-neonfp16arith-mlal.c.o 2025-09-07T06:12:10.2818030Z [3366/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:12:10.3027910Z [3367/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c4-minmax-neondotfp16arith.c.o 2025-09-07T06:12:10.3054510Z [3368/5254] Linking CXX static library lib/libonnx.a 2025-09-07T06:12:10.3841250Z [3369/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x8c4-minmax-neondotfp16arith.c.o 2025-09-07T06:12:10.3906750Z [3370/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16c4-minmax-neondot.c.o 2025-09-07T06:12:10.3942720Z [3371/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4-minmax-scalar.c.o 2025-09-07T06:12:10.4073660Z [3372/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:12:10.4175230Z [3373/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x16c4-minmax-neondot.c.o 2025-09-07T06:12:10.4253440Z [3374/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4-minmax-scalar.c.o 2025-09-07T06:12:10.4263590Z [3375/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:12:10.4438560Z [3376/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-6x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:12:10.4440900Z [3377/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-09-07T06:12:10.5224610Z [3378/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x16c4-minmax-neondot.c.o 2025-09-07T06:12:10.5245140Z [3379/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x2-minmax-scalar.c.o 2025-09-07T06:12:10.5266470Z [3380/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-09-07T06:12:10.5287130Z [3381/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c4-minmax-neondot.c.o 2025-09-07T06:12:10.5397690Z [3382/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-6x16-minmax-neon-mlal-lane.c.o 2025-09-07T06:12:10.5507520Z [3383/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-09-07T06:12:10.5533480Z [3384/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c4-minmax-neondot.c.o 2025-09-07T06:12:10.5554070Z [3385/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c2s4-minmax-neon-mlal.c.o 2025-09-07T06:12:10.6048170Z [3386/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x2-minmax-scalar.c.o 2025-09-07T06:12:10.6060980Z [3387/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-cortex-a55.S.o 2025-09-07T06:12:10.6083590Z [3388/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-09-07T06:12:10.6378650Z [3389/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c4-minmax-neondot.c.o 2025-09-07T06:12:10.6446090Z [3390/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8c2s4-minmax-neon-mlal.c.o 2025-09-07T06:12:10.6805010Z [3391/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x2-minmax-scalar.c.o 2025-09-07T06:12:10.7051420Z [3392/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c4-minmax-neondot.c.o 2025-09-07T06:12:10.7135720Z [3393/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-09-07T06:12:10.7232370Z [3394/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-neondot.c.o 2025-09-07T06:12:10.7235410Z [3395/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8c4-minmax-neondot.c.o 2025-09-07T06:12:10.7465120Z [3396/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c4-minmax-neondot.c.o 2025-09-07T06:12:10.7467460Z [3397/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x2-minmax-scalar.c.o 2025-09-07T06:12:10.7516920Z [3398/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c2s4-minmax-neon-mlal.c.o 2025-09-07T06:12:10.7629660Z [3399/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-cortex-a55.S.o 2025-09-07T06:12:10.7792140Z [3400/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8c2s4-minmax-neon-mlal.c.o 2025-09-07T06:12:10.7898190Z [3401/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-09-07T06:12:10.7900650Z [3402/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4-minmax-scalar.c.o 2025-09-07T06:12:10.8522010Z [3403/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c4-minmax-neondot.c.o 2025-09-07T06:12:10.8530630Z [3404/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.o 2025-09-07T06:12:10.8549510Z [3405/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8c4-minmax-neondot.c.o 2025-09-07T06:12:10.8621550Z [3406/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qp8-f32-qb4w-gemm/qp8-f32-qb4w-gemm-minmax-1x8c16s2-aarch64-neondot.c.o 2025-09-07T06:12:10.8785530Z [3407/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qp8-f32-qb4w-gemm/qp8-f32-qb4w-gemm-minmax-1x4c16s2-aarch64-neondot.c.o 2025-09-07T06:12:10.8883770Z [3408/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qp8-f32-qc4w-gemm/qp8-f32-qc4w-gemm-minmax-1x8c16s2-aarch64-neondot.c.o 2025-09-07T06:12:10.8888120Z [3409/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:12:10.9126890Z [3410/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:12:10.9136290Z [3411/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:12:10.9230180Z [3412/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mla8-ld64.c.o 2025-09-07T06:12:10.9765960Z [3413/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:12:10.9837590Z [3414/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:12:10.9959700Z [3415/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:12:11.0003010Z [3416/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mla8-ld64.c.o 2025-09-07T06:12:11.0086510Z [3417/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u1.c.o 2025-09-07T06:12:11.0147190Z [3418/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mla8-ld64.c.o 2025-09-07T06:12:11.0153070Z [3419/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u4.c.o 2025-09-07T06:12:11.0378420Z [3420/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u32.c.o 2025-09-07T06:12:11.0380320Z [3421/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u32.c.o 2025-09-07T06:12:11.1022350Z [3422/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:12:11.1033650Z [3423/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-goi-scalar.c.o 2025-09-07T06:12:11.1114970Z [3424/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:12:11.1140410Z [3425/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-09-07T06:12:11.1296460Z [3426/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-goi-scalar.c.o 2025-09-07T06:12:11.1301450Z [3427/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:12:11.1410990Z [3428/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neon-mla8-ld64.c.o 2025-09-07T06:12:11.1647130Z [3429/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neonv8-mla8-ld128.c.o 2025-09-07T06:12:11.1756280Z [3430/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-09-07T06:12:11.1878730Z [3431/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neon-mla8-ld128.c.o 2025-09-07T06:12:11.2183680Z [3432/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.o 2025-09-07T06:12:11.2335960Z [3433/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-scalar-u2.c.o 2025-09-07T06:12:11.2338650Z [3434/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-09-07T06:12:11.2376400Z [3435/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:12:11.2431860Z [3436/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-09-07T06:12:11.2585130Z [3437/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-neon-u16.c.o 2025-09-07T06:12:11.2666260Z [3438/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-neon-u64.c.o 2025-09-07T06:12:11.2890310Z [3439/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-09-07T06:12:11.3341350Z [3440/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x64-gemm-goi-scalar-int-u4.c.o 2025-09-07T06:12:11.3354730Z [3441/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-09-07T06:12:11.3419490Z [3442/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2025-09-07T06:12:11.3523500Z [3443/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-dec-zip-neon.c.o 2025-09-07T06:12:11.3651940Z [3444/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-pack-lh/x32-packlh-neonsme2.c.o 2025-09-07T06:12:11.3662110Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/XNNPACK/src/x32-pack-lh/x32-packlh-neonsme2.c:46:1: warning: non-void function does not return a value [-Wreturn-type] 2025-09-07T06:12:11.3663600Z } 2025-09-07T06:12:11.3664630Z ^ 2025-09-07T06:12:11.3665180Z 1 warning generated. 2025-09-07T06:12:11.3807980Z [3445/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-2x2-neon-tbl64.c.o 2025-09-07T06:12:11.3812890Z [3446/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-4x4-aarch64-neon-tbl128.c.o 2025-09-07T06:12:11.3852700Z [3447/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2025-09-07T06:12:11.4063790Z [3448/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-09-07T06:12:11.4094590Z [3449/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-neon-ld2lane-u2-prfm.c.o 2025-09-07T06:12:11.4489140Z [3450/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-float-u4.c.o 2025-09-07T06:12:11.4687860Z [3451/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-09-07T06:12:11.4749920Z [3452/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-float-u4.c.o 2025-09-07T06:12:11.4809120Z [3453/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-dec-zip-neon.c.o 2025-09-07T06:12:11.4899770Z [3454/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-scalar.c.o 2025-09-07T06:12:11.4983010Z [3455/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/x32-transposec-4x4-aarch64-neon-tbl128.c.o 2025-09-07T06:12:11.4998260Z [3456/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2025-09-07T06:12:11.5075900Z [3457/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-09-07T06:12:11.5176040Z [3458/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-neon.c.o 2025-09-07T06:12:11.5308380Z [3459/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-neon.c.o 2025-09-07T06:12:11.5357480Z [3460/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-scalar.c.o 2025-09-07T06:12:11.5760070Z [3461/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-neon.c.o 2025-09-07T06:12:11.5852680Z [3462/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-scalar.c.o 2025-09-07T06:12:11.5991910Z [3463/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-scalar.c.o 2025-09-07T06:12:11.6082290Z [3464/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-neon.c.o 2025-09-07T06:12:11.6198600Z [3465/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2025-09-07T06:12:11.6250860Z [3466/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-neon.c.o 2025-09-07T06:12:11.6426200Z [3467/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2025-09-07T06:12:11.6523710Z [3468/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-dec-zip-neon.c.o 2025-09-07T06:12:11.6583230Z [3469/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u64.c.o 2025-09-07T06:12:11.6939390Z [3470/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-dec-zip-neon.c.o 2025-09-07T06:12:11.7052470Z [3471/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-scalar-f32qp8-u1.c.o 2025-09-07T06:12:11.7207270Z [3472/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u2.c.o 2025-09-07T06:12:11.7223770Z [3473/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-dec-zip-neon.c.o 2025-09-07T06:12:11.7236950Z [3474/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u2.c.o 2025-09-07T06:12:11.7296990Z [3475/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u2.c.o 2025-09-07T06:12:11.7428240Z [3476/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u2.c.o 2025-09-07T06:12:11.7467120Z [3477/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-aarch64-neon-f32qp8-u2.c.o 2025-09-07T06:12:11.7638810Z [3478/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-scalar.c.o 2025-09-07T06:12:11.7662950Z [3479/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-neon.c.o 2025-09-07T06:12:11.7920190Z [3480/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2025-09-07T06:12:11.8164770Z [3481/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-scalar.c.o 2025-09-07T06:12:11.8267670Z [3482/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-scalar.c.o 2025-09-07T06:12:11.8269430Z [3483/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-neon.c.o 2025-09-07T06:12:11.8476610Z [3484/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-neon.c.o 2025-09-07T06:12:11.8487540Z [3485/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-scalar.c.o 2025-09-07T06:12:11.8722250Z [3486/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-neon.c.o 2025-09-07T06:12:11.8828430Z [3487/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2025-09-07T06:12:11.9033660Z [3488/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-neon-u64.c.o 2025-09-07T06:12:11.9139650Z [3489/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p16-neon-u16.c.o 2025-09-07T06:12:11.9143440Z [3490/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2025-09-07T06:12:11.9146900Z [3491/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-09-07T06:12:11.9330330Z [3492/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2025-09-07T06:12:11.9337660Z [3493/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-09-07T06:12:11.9420520Z [3494/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-transposev/xx-transposev-1x1-scalar-memcpy.c.o 2025-09-07T06:12:11.9496830Z [3495/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-09-07T06:12:11.9683860Z [3496/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-09-07T06:12:11.9688100Z [3497/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-09-07T06:12:12.0060350Z [3498/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-09-07T06:12:12.0208040Z [3499/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-09-07T06:12:12.0252410Z [3500/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-09-07T06:12:12.0279200Z [3501/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-09-07T06:12:12.0457880Z [3502/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.o 2025-09-07T06:12:12.0460530Z [3503/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar.c.o 2025-09-07T06:12:12.0523510Z [3504/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar-acc2.c.o 2025-09-07T06:12:12.0633230Z [3505/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar.c.o 2025-09-07T06:12:12.0837370Z [3506/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.o 2025-09-07T06:12:12.0866830Z [3507/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.o 2025-09-07T06:12:12.1079630Z [3508/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar.c.o 2025-09-07T06:12:12.1301230Z [3509/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u4.c.o 2025-09-07T06:12:12.1698420Z [3510/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-09-07T06:12:12.1795120Z [3511/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.o 2025-09-07T06:12:12.1899850Z [3512/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x8-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:12:12.2069330Z [3513/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:12:12.2112330Z [3514/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-rndnu16-neon-mlal-lane.c.o 2025-09-07T06:12:12.2229160Z [3515/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:12:12.2320090Z [3516/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x8-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:12:12.2320910Z [3517/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:12:12.2351870Z [3518/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:12:12.2388210Z [3519/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75-prfm.S.o 2025-09-07T06:12:12.2439220Z [3520/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75.S.o 2025-09-07T06:12:12.3077100Z [3521/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:12:12.3177800Z [3522/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu16-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-09-07T06:12:12.3269780Z [3523/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:12:12.3383440Z [3524/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:12:12.3563830Z [3525/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:12:12.3669210Z [3526/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:12:12.3776690Z [3527/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-09-07T06:12:12.3971960Z [3528/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:12:12.3974600Z [3529/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-09-07T06:12:12.4079970Z [3530/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75-prfm.S.o 2025-09-07T06:12:12.4082120Z [3531/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x8-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:12:12.4103080Z [3532/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75.S.o 2025-09-07T06:12:12.4315510Z [3533/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-rndnu16-neon-mlal-lane.c.o 2025-09-07T06:12:12.4368240Z [3534/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu16-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-09-07T06:12:12.4941960Z [3535/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x8-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:12:12.5062740Z [3536/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-neon-mlal-lane.c.o 2025-09-07T06:12:12.5146820Z [3537/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u16.c.o 2025-09-07T06:12:12.5153390Z [3538/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-scalar.c.o 2025-09-07T06:12:12.5237950Z [3539/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u32.c.o 2025-09-07T06:12:12.5386120Z [3540/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-09-07T06:12:12.5386910Z [3541/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u16.c.o 2025-09-07T06:12:12.5480920Z [3542/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u32.c.o 2025-09-07T06:12:12.5583540Z [3543/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2025-09-07T06:12:12.5726390Z [3544/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-neon-u32-acc2.c.o 2025-09-07T06:12:12.6149650Z [3545/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2025-09-07T06:12:12.6208700Z [3546/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u1.c.o 2025-09-07T06:12:12.6404880Z [3547/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2025-09-07T06:12:12.6417010Z [3548/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u16.c.o 2025-09-07T06:12:12.6459470Z [3549/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u32.c.o 2025-09-07T06:12:12.6606930Z [3550/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-09-07T06:12:12.6720840Z [3551/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2025-09-07T06:12:12.6754160Z [3552/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u32.c.o 2025-09-07T06:12:12.7022860Z [3553/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2025-09-07T06:12:12.7211140Z [3554/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u32.c.o 2025-09-07T06:12:12.7370510Z [3555/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u4.c.o 2025-09-07T06:12:12.7456190Z [3556/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2025-09-07T06:12:12.7601120Z [3557/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2025-09-07T06:12:12.7752660Z [3558/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-09-07T06:12:12.7755970Z [3559/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-09-07T06:12:12.7957770Z [3560/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-neon.c.o 2025-09-07T06:12:12.7971770Z [3561/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c16.c.o 2025-09-07T06:12:12.8004990Z [3562/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-scalar.c.o 2025-09-07T06:12:12.8306230Z [3563/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c8.c.o 2025-09-07T06:12:12.8405820Z [3564/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o 2025-09-07T06:12:12.8538720Z [3565/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-neon-u64.c.o 2025-09-07T06:12:12.8639230Z [3566/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-neon-c16.c.o 2025-09-07T06:12:12.8797220Z [3567/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-09-07T06:12:12.8891690Z [3568/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2025-09-07T06:12:12.9169510Z [3569/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-neon-c16.c.o 2025-09-07T06:12:12.9230190Z [3570/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c16.c.o 2025-09-07T06:12:12.9366220Z [3571/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-09-07T06:12:12.9402350Z [3572/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c8.c.o 2025-09-07T06:12:12.9406410Z [3573/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-09-07T06:12:12.9408480Z [3574/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-09-07T06:12:12.9587750Z [3575/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:12:12.9605250Z [3576/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:12:12.9650520Z [3577/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:12:12.9757810Z [3578/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o 2025-09-07T06:12:13.0032660Z [3579/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-09-07T06:12:13.0389650Z [3580/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:12:13.0671830Z [3581/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:12:13.0831990Z [3582/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2025-09-07T06:12:13.0874390Z [3583/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:12:13.0993840Z [3584/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2025-09-07T06:12:13.1095020Z [3585/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neonfma.c.o 2025-09-07T06:12:13.1096040Z [3586/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-09-07T06:12:13.1103030Z [3587/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-09-07T06:12:13.1249700Z [3588/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-09-07T06:12:13.1253530Z [3589/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-09-07T06:12:13.1290730Z [3590/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-neon-lane-ld64.c.o 2025-09-07T06:12:13.1506730Z [3591/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-09-07T06:12:13.1551620Z [3592/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-09-07T06:12:13.1933110Z [3593/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:12:13.1956350Z [3594/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:12:13.1961110Z [3595/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:12:13.2171540Z [3596/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2025-09-07T06:12:13.2249930Z [3597/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-09-07T06:12:13.2406330Z [3598/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2025-09-07T06:12:13.2593550Z [3599/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-09-07T06:12:13.2812020Z [3600/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:12:13.3013860Z [3601/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:12:13.3119780Z [3602/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld128.c.o 2025-09-07T06:12:13.3202600Z [3603/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:12:13.3455020Z [3604/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neonfma.c.o 2025-09-07T06:12:13.3578100Z [3605/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o 2025-09-07T06:12:13.3609930Z [3606/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-neon-c4.c.o 2025-09-07T06:12:13.3772560Z [3607/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-neon-c4.c.o 2025-09-07T06:12:13.3829520Z [3608/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:12:13.3937480Z [3609/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neonfma.c.o 2025-09-07T06:12:13.3985440Z [3610/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o 2025-09-07T06:12:13.4129310Z [3611/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o 2025-09-07T06:12:13.4353220Z [3612/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-neon-c4.c.o 2025-09-07T06:12:13.4754690Z [3613/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-09-07T06:12:13.4828470Z [3614/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4.S.o 2025-09-07T06:12:13.4874290Z [3615/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:12:13.4987880Z [3616/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:12:13.5054990Z [3617/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-09-07T06:12:13.5169180Z [3618/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:12:13.5317870Z [3619/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:12:13.5393990Z [3620/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:12:13.5706670Z [3621/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:12:13.5834040Z [3622/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-09-07T06:12:13.5886930Z [3623/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:12:13.6077890Z [3624/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:12:13.6221190Z [3625/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-09-07T06:12:13.6332660Z [3626/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:12:13.6455700Z [3627/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:12:13.6502820Z [3628/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2025-09-07T06:12:13.6550930Z [3629/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u32.c.o 2025-09-07T06:12:13.6840950Z [3630/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-09-07T06:12:13.6875840Z [3631/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-09-07T06:12:13.7089700Z [3632/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u32.c.o 2025-09-07T06:12:13.7228930Z [3633/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u32.c.o 2025-09-07T06:12:13.7344330Z [3634/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-09-07T06:12:13.7351780Z [3635/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2025-09-07T06:12:13.7496310Z [3636/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2025-09-07T06:12:13.7542300Z [3637/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u16-acc2.c.o 2025-09-07T06:12:13.7703150Z [3638/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-09-07T06:12:13.7709760Z [3639/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u32.c.o 2025-09-07T06:12:13.8189770Z [3640/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o 2025-09-07T06:12:13.8391790Z [3641/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-scalar.c.o 2025-09-07T06:12:13.8445300Z [3642/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c16.c.o 2025-09-07T06:12:13.8487160Z [3643/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o 2025-09-07T06:12:13.8597710Z [3644/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-3x4.c.o 2025-09-07T06:12:13.8704270Z [3645/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.o 2025-09-07T06:12:13.8907860Z [3646/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.o 2025-09-07T06:12:13.8967310Z [3647/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon.c.o 2025-09-07T06:12:13.9130650Z [3648/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-2x4.c.o 2025-09-07T06:12:13.9187830Z [3649/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma.c.o 2025-09-07T06:12:13.9521410Z [3650/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.o 2025-09-07T06:12:13.9668980Z [3651/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.o 2025-09-07T06:12:13.9809620Z [3652/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-4x4.c.o 2025-09-07T06:12:13.9892400Z [3653/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-2x4-acc2.c.o 2025-09-07T06:12:13.9918190Z [3654/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-1x4.c.o 2025-09-07T06:12:13.9990050Z [3655/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4.c.o 2025-09-07T06:12:14.0113530Z [3656/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.o 2025-09-07T06:12:14.0242600Z [3657/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.o 2025-09-07T06:12:14.0559790Z [3658/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.o 2025-09-07T06:12:14.0562120Z [3659/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.o 2025-09-07T06:12:14.0753530Z [3660/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4.c.o 2025-09-07T06:12:14.0955590Z [3661/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u4.c.o 2025-09-07T06:12:14.0961590Z [3662/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-09-07T06:12:14.1080170Z [3663/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2025-09-07T06:12:14.1176010Z [3664/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u8.c.o 2025-09-07T06:12:14.1302920Z [3665/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4-acc2.c.o 2025-09-07T06:12:14.1422900Z [3666/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u16.c.o 2025-09-07T06:12:14.1489780Z [3667/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:12:14.1647100Z [3668/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-09-07T06:12:14.1651450Z [3669/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:12:14.1860780Z [3670/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:12:14.2027960Z [3671/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o 2025-09-07T06:12:14.2130810Z [3672/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4.S.o 2025-09-07T06:12:14.2132270Z [3673/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2.S.o 2025-09-07T06:12:14.2142880Z [3674/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o 2025-09-07T06:12:14.2394420Z [3675/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o 2025-09-07T06:12:14.2429860Z [3676/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:12:14.2922810Z [3677/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-09-07T06:12:14.3183090Z [3678/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-09-07T06:12:14.3287820Z [3679/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o 2025-09-07T06:12:14.3301040Z [3680/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neonfma.c.o 2025-09-07T06:12:14.3305800Z [3681/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-09-07T06:12:14.3573720Z [3682/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o 2025-09-07T06:12:14.3638200Z [3683/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o 2025-09-07T06:12:14.3799210Z [3684/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-neon-lane-ld64.c.o 2025-09-07T06:12:14.3812070Z [3685/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o 2025-09-07T06:12:14.3820160Z [3686/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o 2025-09-07T06:12:14.3828850Z [3687/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-09-07T06:12:14.4016520Z [3688/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-09-07T06:12:14.4366850Z [3689/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o 2025-09-07T06:12:14.4378280Z [3690/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o 2025-09-07T06:12:14.4431190Z [3691/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:12:14.4583390Z [3692/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-09-07T06:12:14.4668040Z [3693/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o 2025-09-07T06:12:14.4746470Z [3694/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:12:14.4765920Z [3695/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-09-07T06:12:14.5315110Z [3696/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-09-07T06:12:14.5410840Z [3697/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S.o 2025-09-07T06:12:14.5500610Z [3698/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-09-07T06:12:14.5605160Z [3699/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-09-07T06:12:14.5627990Z [3700/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-09-07T06:12:14.5631760Z [3701/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neonfma.c.o 2025-09-07T06:12:14.5658590Z [3702/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-09-07T06:12:14.5784060Z [3703/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld128.c.o 2025-09-07T06:12:14.5990260Z [3704/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p8.c.o 2025-09-07T06:12:14.6506870Z [3705/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-09-07T06:12:14.6514800Z [3706/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-09-07T06:12:14.6530330Z [3707/5254] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S.o 2025-09-07T06:12:14.6793380Z [3708/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p8.c.o 2025-09-07T06:12:14.6795640Z [3709/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c8.c.o 2025-09-07T06:12:14.6848870Z [3710/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neonfma.c.o 2025-09-07T06:12:14.6883180Z [3711/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c8.c.o 2025-09-07T06:12:14.7064690Z [3712/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o 2025-09-07T06:12:14.7266010Z [3713/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o 2025-09-07T06:12:14.7320990Z [3714/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o 2025-09-07T06:12:14.7539500Z [3715/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2025-09-07T06:12:14.7590040Z [3716/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2025-09-07T06:12:14.7763290Z [3717/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-neon-u8.c.o 2025-09-07T06:12:14.7990770Z [3718/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2025-09-07T06:12:14.8091690Z [3719/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2025-09-07T06:12:14.8195780Z [3720/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u8.c.o 2025-09-07T06:12:14.8277340Z [3721/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-neon-u16.c.o 2025-09-07T06:12:14.8286070Z [3722/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-neon-u8.c.o 2025-09-07T06:12:14.8496560Z [3723/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u4.c.o 2025-09-07T06:12:14.8756400Z [3724/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-neon-u8.c.o 2025-09-07T06:12:14.8763310Z [3725/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-09-07T06:12:14.8994650Z [3726/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-neon.c.o 2025-09-07T06:12:14.9174300Z [3727/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-09-07T06:12:14.9313850Z [3728/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-09-07T06:12:14.9318330Z [3729/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-09-07T06:12:14.9556120Z [3730/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-neon.c.o 2025-09-07T06:12:14.9638170Z [3731/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u8.c.o 2025-09-07T06:12:14.9709610Z [3732/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-scalar-exp.c.o 2025-09-07T06:12:14.9727790Z [3733/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-neon.c.o 2025-09-07T06:12:14.9844410Z [3734/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u16.c.o 2025-09-07T06:12:14.9898400Z [3735/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u2.c.o 2025-09-07T06:12:15.0193170Z [3736/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u8.c.o 2025-09-07T06:12:15.0246130Z [3737/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u4.c.o 2025-09-07T06:12:15.0753510Z [3738/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-09-07T06:12:15.0852570Z [3739/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-neon-rational-12-10-div.c.o 2025-09-07T06:12:15.0956120Z [3740/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u4.c.o 2025-09-07T06:12:15.0974990Z [3741/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-neon-u16.c.o 2025-09-07T06:12:15.0985140Z [3742/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-scalar-rational-3-3-div.c.o 2025-09-07T06:12:15.1141430Z [3743/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neonfma-2x.c.o 2025-09-07T06:12:15.1267240Z [3744/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-09-07T06:12:15.1366670Z [3745/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-neon-rational-3-3-div.c.o 2025-09-07T06:12:15.1426050Z [3746/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-09-07T06:12:15.1478270Z [3747/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u8.c.o 2025-09-07T06:12:15.1704780Z [3748/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u8.c.o 2025-09-07T06:12:15.2167410Z [3749/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neon-u8.c.o 2025-09-07T06:12:15.2286900Z [3750/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neon-2x.c.o 2025-09-07T06:12:15.2312290Z [3751/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u8.c.o 2025-09-07T06:12:15.2334690Z [3752/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u8.c.o 2025-09-07T06:12:15.2505570Z [3753/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neon-u8.c.o 2025-09-07T06:12:15.2507830Z [3754/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2025-09-07T06:12:15.2546790Z [3755/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u4.c.o 2025-09-07T06:12:15.2673610Z [3756/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2025-09-07T06:12:15.2992980Z [3757/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u8.c.o 2025-09-07T06:12:15.3239170Z [3758/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u4.c.o 2025-09-07T06:12:15.3345040Z [3759/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2025-09-07T06:12:15.3402240Z [3760/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neon-u8.c.o 2025-09-07T06:12:15.3549020Z [3761/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u4.c.o 2025-09-07T06:12:15.3736140Z [3762/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neon-u8.c.o 2025-09-07T06:12:15.3749090Z [3763/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u8.c.o 2025-09-07T06:12:15.3764190Z [3764/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.o 2025-09-07T06:12:15.3970160Z [3765/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u4.c.o 2025-09-07T06:12:15.4185940Z [3766/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2025-09-07T06:12:15.4220390Z [3767/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mla8-ld64.c.o 2025-09-07T06:12:15.4420130Z [3768/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc4.c.o 2025-09-07T06:12:15.4444460Z [3769/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc4.c.o 2025-09-07T06:12:15.4492210Z [3770/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2025-09-07T06:12:15.4684560Z [3771/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc4.c.o 2025-09-07T06:12:15.4823560Z [3772/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-09-07T06:12:15.4881720Z [3773/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc4.c.o 2025-09-07T06:12:15.5424180Z [3774/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon.c.o 2025-09-07T06:12:15.5523590Z [3775/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2025-09-07T06:12:15.5578360Z [3776/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-pipelined.c.o 2025-09-07T06:12:15.5582830Z [3777/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x2-minmax-aarch64-neonfma.c.o 2025-09-07T06:12:15.5670890Z [3778/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x4-minmax-aarch64-neonfma.c.o 2025-09-07T06:12:15.5826670Z [3779/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-neon-u8.c.o 2025-09-07T06:12:15.6051200Z [3780/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2025-09-07T06:12:15.6061650Z [3781/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2025-09-07T06:12:15.6142110Z [3782/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2025-09-07T06:12:15.6236010Z [3783/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-neon-u8.c.o 2025-09-07T06:12:15.6706070Z [3784/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2025-09-07T06:12:15.6715150Z [3785/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-aarch64-neon-u8.c.o 2025-09-07T06:12:15.6759210Z [3786/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2025-09-07T06:12:15.6793880Z [3787/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2025-09-07T06:12:15.6991940Z [3788/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-neon-u8.c.o 2025-09-07T06:12:15.7031410Z [3789/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-aarch64-neon-u8.c.o 2025-09-07T06:12:15.7209200Z [3790/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2025-09-07T06:12:15.7213780Z [3791/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2025-09-07T06:12:15.7840450Z [3792/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-neon-u8.c.o 2025-09-07T06:12:15.7849020Z [3793/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u8.c.o 2025-09-07T06:12:15.7892600Z [3794/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-09-07T06:12:15.8056850Z [3795/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-neon-u8.c.o 2025-09-07T06:12:15.8279660Z [3796/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2025-09-07T06:12:15.8326800Z [3797/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2025-09-07T06:12:15.8328740Z [3798/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-scalar-u8.c.o 2025-09-07T06:12:15.8519270Z [3799/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-neon-u8.c.o 2025-09-07T06:12:15.8527470Z [3800/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-neon-u8.c.o 2025-09-07T06:12:15.8533630Z [3801/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-neon-u8.c.o 2025-09-07T06:12:15.8763490Z [3802/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u8.c.o 2025-09-07T06:12:15.8813390Z [3803/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u8.c.o 2025-09-07T06:12:15.9122970Z [3804/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-neon-u8.c.o 2025-09-07T06:12:15.9228610Z [3805/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-aarch64-neon-u8.c.o 2025-09-07T06:12:15.9515100Z [3806/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2025-09-07T06:12:15.9717250Z [3807/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u8.c.o 2025-09-07T06:12:15.9721120Z [3808/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u8.c.o 2025-09-07T06:12:15.9757150Z [3809/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-neon-u8.c.o 2025-09-07T06:12:15.9770060Z [3810/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-neon-u8.c.o 2025-09-07T06:12:15.9846080Z [3811/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2025-09-07T06:12:15.9924550Z [3812/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u8.c.o 2025-09-07T06:12:15.9983380Z [3813/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2025-09-07T06:12:16.0739590Z [3814/5254] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-09-07T06:12:16.2874260Z [3815/5254] Linking C static library lib/libmicrokernels-prod.a 2025-09-07T06:12:16.3303090Z [3816/5254] Generating build_identifier.c 2025-09-07T06:12:16.8859820Z [3817/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_anomaly_mode.cpp.o 2025-09-07T06:12:16.9105360Z [3818/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_cpp_function.cpp.o 2025-09-07T06:12:17.0347960Z [3819/5254] Linking C static library lib/libmicrokernels-all.a 2025-09-07T06:12:17.0940700Z [3820/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_hook.cpp.o 2025-09-07T06:12:17.1267950Z [3821/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable_indexing.cpp.o 2025-09-07T06:12:17.1548840Z [3822/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_engine.cpp.o 2025-09-07T06:12:17.1749550Z [3823/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_saved_variable_hooks.cpp.o 2025-09-07T06:12:17.2041270Z [3824/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_legacy_variable.cpp.o 2025-09-07T06:12:17.3468430Z [3825/5254] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpython_defs.c.o 2025-09-07T06:12:17.3986580Z [3826/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_function.cpp.o 2025-09-07T06:12:17.4087140Z [3827/5254] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/eval_frame.c.o 2025-09-07T06:12:17.5334350Z [3828/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cache_entry.cpp.o 2025-09-07T06:12:17.5381410Z [3829/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpp_shim.cpp.o 2025-09-07T06:12:17.6833460Z [3830/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/eval_frame_cpp.cpp.o 2025-09-07T06:12:17.7089720Z [3831/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_torch_functions_manual.cpp.o 2025-09-07T06:12:17.7271810Z [3832/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_nested_functions_manual.cpp.o 2025-09-07T06:12:17.8277180Z [3833/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable.cpp.o 2025-09-07T06:12:17.8296580Z [3834/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/extra_state.cpp.o 2025-09-07T06:12:17.8319170Z [3835/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/framelocals_mapping.cpp.o 2025-09-07T06:12:17.8828100Z [3836/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/python_compiled_autograd.cpp.o 2025-09-07T06:12:17.9716300Z [3837/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/fx/node.cpp.o 2025-09-07T06:12:18.0287590Z [3838/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/utils.cpp.o 2025-09-07T06:12:18.0551680Z [3839/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/init.cpp.o 2025-09-07T06:12:18.1559810Z [3840/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/upgrader.cpp.o 2025-09-07T06:12:18.1732990Z [3841/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/example_upgraders.cpp.o 2025-09-07T06:12:18.3116780Z [3842/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/pybind.cpp.o 2025-09-07T06:12:18.3572060Z [3843/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/static_cuda_launcher.cpp.o 2025-09-07T06:12:18.4130330Z [3844/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/guards.cpp.o 2025-09-07T06:12:18.4230810Z [3845/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_package/pybind.cpp.o 2025-09-07T06:12:18.4788490Z [3846/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_runner/pybind.cpp.o 2025-09-07T06:12:18.6042480Z [3847/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mtia/Module.cpp.o 2025-09-07T06:12:18.6277810Z [3848/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mps/Module.cpp.o 2025-09-07T06:12:18.6845770Z [3849/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/functorch/init.cpp.o 2025-09-07T06:12:18.7619140Z [3850/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/resize_storage_bytes.cpp.o 2025-09-07T06:12:18.9429540Z [3851/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_holder.cpp.o 2025-09-07T06:12:18.9952280Z [3852/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_meta_info.cpp.o 2025-09-07T06:12:19.0857340Z [3853/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_fold.cpp.o 2025-09-07T06:12:19.1424860Z [3854/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/deduplicate_initializers.cpp.o 2025-09-07T06:12:19.1769080Z [3855/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/cast_all_constant_to_floating.cpp.o 2025-09-07T06:12:19.2152140Z [3856/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/backends/backend_init.cpp.o 2025-09-07T06:12:19.2441920Z [3857/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx.cpp.o 2025-09-07T06:12:19.3550150Z [3858/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_map.cpp.o 2025-09-07T06:12:19.3904650Z [3859/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eliminate_unused_items.cpp.o 2025-09-07T06:12:19.4154130Z [3860/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/init.cpp.o 2025-09-07T06:12:19.4291980Z [3861/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eval_peephole.cpp.o 2025-09-07T06:12:19.5359850Z [3862/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/peephole.cpp.o 2025-09-07T06:12:19.5963580Z [3863/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/list_model_parameters.cpp.o 2025-09-07T06:12:19.6184860Z [3864/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_substitution.cpp.o 2025-09-07T06:12:19.7263050Z [3865/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/helper.cpp.o 2025-09-07T06:12:19.7328220Z [3866/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/onnx_log.cpp.o 2025-09-07T06:12:19.7834690Z [3867/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/preprocess_for_onnx.cpp.o 2025-09-07T06:12:19.8590600Z [3868/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/prepare_division_for_onnx.cpp.o 2025-09-07T06:12:19.9002780Z [3869/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/scalar_type_analysis.cpp.o 2025-09-07T06:12:19.9292040Z [3870/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/fixup_onnx_controlflow.cpp.o 2025-09-07T06:12:20.0693700Z [3871/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/unpack_quantized_weights.cpp.o 2025-09-07T06:12:20.1028320Z [3872/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_extraction.cpp.o 2025-09-07T06:12:20.1131650Z [3873/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.cpp.o 2025-09-07T06:12:20.2038680Z [3874/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/naming.cpp.o 2025-09-07T06:12:20.2271650Z [3875/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.cpp.o 2025-09-07T06:12:20.3373850Z [3876/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/common.cpp.o 2025-09-07T06:12:20.3798350Z [3877/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/shape_type_inference.cpp.o 2025-09-07T06:12:20.4995430Z [3878/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.cpp.o 2025-09-07T06:12:20.5763620Z [3879/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/pybind_utils.cpp.o 2025-09-07T06:12:20.6138850Z [3880/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.cpp.o 2025-09-07T06:12:20.7925980Z [3881/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_arg_flatten.cpp.o 2025-09-07T06:12:20.9037060Z [3882/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_custom_class.cpp.o 2025-09-07T06:12:20.9222540Z [3883/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_dict.cpp.o 2025-09-07T06:12:21.0575540Z [3884/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/tree_views.cpp.o 2025-09-07T06:12:21.0716070Z [3885/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_interpreter.cpp.o 2025-09-07T06:12:21.1881570Z [3886/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_ir.cpp.o 2025-09-07T06:12:21.2180320Z [3887/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_list.cpp.o 2025-09-07T06:12:21.3444190Z [3888/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tracer.cpp.o 2025-09-07T06:12:21.4065320Z [3889/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tree_views.cpp.o 2025-09-07T06:12:21.4290310Z [3890/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/script_init.cpp.o 2025-09-07T06:12:21.5166630Z [3891/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/concrete_module_type.cpp.o 2025-09-07T06:12:21.5499300Z [3892/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/monitor/python_init.cpp.o 2025-09-07T06:12:21.6210580Z [3893/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/multiprocessing/init.cpp.o 2025-09-07T06:12:21.7218120Z [3894/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_sugared_value.cpp.o 2025-09-07T06:12:21.8810610Z [3895/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/runtime/static/init.cpp.o 2025-09-07T06:12:21.9091920Z [3896/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/combined_traceback.cpp.o 2025-09-07T06:12:21.9879590Z [3897/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/tensorexpr/tensorexpr_init.cpp.o 2025-09-07T06:12:22.1955370Z [3898/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/onnx/init.cpp.o 2025-09-07T06:12:22.2162580Z [3899/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/init.cpp.o 2025-09-07T06:12:22.2263710Z [3900/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/serialization.cpp.o 2025-09-07T06:12:22.2651430Z [3901/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/tensor/python_tensor.cpp.o 2025-09-07T06:12:22.3144280Z [3902/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/init.cpp.o 2025-09-07T06:12:22.3820730Z [3903/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/device_lazy_init.cpp.o 2025-09-07T06:12:22.4617710Z [3904/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils.cpp.o 2025-09-07T06:12:22.4790390Z [3905/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/throughput_benchmark.cpp.o 2025-09-07T06:12:22.4912620Z [3906/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/invalid_arguments.cpp.o 2025-09-07T06:12:22.4943940Z [3907/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/object_ptr.cpp.o 2025-09-07T06:12:22.6381780Z [3908/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pyobject_preservation.cpp.o 2025-09-07T06:12:22.7744280Z [3909/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_symnode.cpp.o 2025-09-07T06:12:22.8234360Z [3910/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pybind.cpp.o 2025-09-07T06:12:22.9291160Z [3911/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/nested.cpp.o 2025-09-07T06:12:22.9574590Z [3912/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_arg_parser.cpp.o 2025-09-07T06:12:22.9819350Z [3913/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/structseq.cpp.o 2025-09-07T06:12:22.9853570Z [3914/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_layouts.cpp.o 2025-09-07T06:12:23.0206650Z [3915/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_dispatch.cpp.o 2025-09-07T06:12:23.1579680Z [3916/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_dtypes.cpp.o 2025-09-07T06:12:23.1750650Z [3917/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_memoryformats.cpp.o 2025-09-07T06:12:23.2988940Z [3918/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_qschemes.cpp.o 2025-09-07T06:12:23.3890260Z [3919/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/disable_torch_function.cpp.o 2025-09-07T06:12:23.4168130Z [3920/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_types.cpp.o 2025-09-07T06:12:23.4562080Z [3921/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_apply.cpp.o 2025-09-07T06:12:23.4686280Z [3922/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/verbose.cpp.o 2025-09-07T06:12:23.5811170Z [3923/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_list.cpp.o 2025-09-07T06:12:23.6113920Z [3924/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/cpu/Module.cpp.o 2025-09-07T06:12:23.6910060Z [3925/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_new.cpp.o 2025-09-07T06:12:23.7554370Z [3926/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/instruction_counter/Module.cpp.o 2025-09-07T06:12:23.8013720Z [3927/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_numpy.cpp.o 2025-09-07T06:12:23.9277910Z [3928/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/python_util.cpp.o 2025-09-07T06:12:24.2388040Z [3929/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/nativert/python/Bindings.cpp.o 2025-09-07T06:12:24.2716690Z [3930/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/init.cpp.o 2025-09-07T06:12:24.3526370Z [3931/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/distributed/c10d/python_comm_hook.cpp.o 2025-09-07T06:12:24.3917960Z [3932/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/distributed/autograd/init.cpp.o 2025-09-07T06:12:24.4334120Z [3933/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/distributed/rpc/py_rref.cpp.o 2025-09-07T06:12:24.4769270Z [3934/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/distributed/rpc/init.cpp.o 2025-09-07T06:12:24.5044320Z [3935/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/distributed/c10d/init.cpp.o 2025-09-07T06:12:24.5768930Z [3936/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/distributed/rpc/python_functions.cpp.o 2025-09-07T06:12:24.9438900Z [3937/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/distributed/rpc/python_rpc_handler.cpp.o 2025-09-07T06:12:24.9871070Z [3938/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/distributed/rpc/request_callback_impl.cpp.o 2025-09-07T06:12:25.0137660Z [3939/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_1.cpp.o 2025-09-07T06:12:25.0422740Z [3940/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_variable_methods.cpp.o 2025-09-07T06:12:25.0667870Z [3941/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_2.cpp.o 2025-09-07T06:12:25.1146930Z [3942/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_3.cpp.o 2025-09-07T06:12:25.1256430Z [3943/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_0.cpp.o 2025-09-07T06:12:25.2203010Z [3944/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_4.cpp.o 2025-09-07T06:12:25.3964560Z [3945/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_0.cpp.o 2025-09-07T06:12:25.4222350Z [3946/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nn_functions.cpp.o 2025-09-07T06:12:25.4528420Z [3947/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_1.cpp.o 2025-09-07T06:12:25.5038350Z [3948/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_linalg_functions.cpp.o 2025-09-07T06:12:25.5308230Z [3949/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nested_functions.cpp.o 2025-09-07T06:12:25.5371650Z [3950/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_fft_functions.cpp.o 2025-09-07T06:12:25.5560870Z [3951/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_2.cpp.o 2025-09-07T06:12:25.5781820Z [3952/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DataLoader.cpp.o 2025-09-07T06:12:25.7747750Z [3953/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_sparse_functions.cpp.o 2025-09-07T06:12:25.7964230Z [3954/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_return_types.cpp.o 2025-09-07T06:12:25.8902650Z [3955/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_enum_tag.cpp.o 2025-09-07T06:12:25.8954420Z [3956/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DeviceAccelerator.cpp.o 2025-09-07T06:12:25.9055740Z [3957/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Dtype.cpp.o 2025-09-07T06:12:26.0520510Z [3958/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_special_functions.cpp.o 2025-09-07T06:12:26.0690150Z [3959/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Device.cpp.o 2025-09-07T06:12:26.2259210Z [3960/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Layout.cpp.o 2025-09-07T06:12:26.2683330Z [3961/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/MemoryFormat.cpp.o 2025-09-07T06:12:26.2708000Z [3962/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/QScheme.cpp.o 2025-09-07T06:12:26.3704370Z [3963/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DynamicTypes.cpp.o 2025-09-07T06:12:26.5243350Z [3964/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Exceptions.cpp.o 2025-09-07T06:12:26.5400870Z [3965/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Generator.cpp.o 2025-09-07T06:12:26.5501220Z [3966/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/PyInterpreterHooks.cpp.o 2025-09-07T06:12:26.5513340Z [3967/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/python_dimname.cpp.o 2025-09-07T06:12:26.6625050Z [3968/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Size.cpp.o 2025-09-07T06:12:26.7305710Z [3969/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/PyInterpreter.cpp.o 2025-09-07T06:12:26.7468370Z [3970/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Module.cpp.o 2025-09-07T06:12:27.1735490Z [3971/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageSharing.cpp.o 2025-09-07T06:12:27.2134370Z [3972/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Storage.cpp.o 2025-09-07T06:12:27.2300980Z [3973/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageMethods.cpp.o 2025-09-07T06:12:27.2562780Z [3974/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/TypeInfo.cpp.o 2025-09-07T06:12:27.2701670Z [3975/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Stream.cpp.o 2025-09-07T06:12:27.2951360Z [3976/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Event.cpp.o 2025-09-07T06:12:27.3061690Z [3977/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/api/src/python/init.cpp.o 2025-09-07T06:12:27.3896680Z [3978/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/functions/init.cpp.o 2025-09-07T06:12:27.5601810Z [3979/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/profiler_python.cpp.o 2025-09-07T06:12:27.6133960Z [3980/5254] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/shm.dir/core.cpp.o 2025-09-07T06:12:27.6350540Z [3981/5254] Building CXX object functorch/CMakeFiles/functorch.dir/csrc/dim/dim.cpp.o 2025-09-07T06:12:27.6547510Z [3982/5254] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/torch_shm_manager.dir/manager.cpp.o 2025-09-07T06:12:27.6887810Z [3983/5254] Building C object functorch/CMakeFiles/functorch.dir/csrc/dim/dim_opcode.c.o 2025-09-07T06:12:27.7368370Z [3984/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/init.cpp.o 2025-09-07T06:12:27.7424340Z [3985/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/distributed/c10d/control_plane/PythonHandlers.cpp.o 2025-09-07T06:12:27.7736740Z [3986/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-09-07T06:12:27.7881840Z [3987/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-09-07T06:12:27.8460600Z [3988/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-09-07T06:12:27.8808420Z [3989/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-09-07T06:12:27.8822610Z [3990/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-09-07T06:12:27.9337670Z [3991/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-09-07T06:12:27.9476340Z [3992/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/distributed/rpc/testing/init.cpp.o 2025-09-07T06:12:27.9485020Z [3993/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-09-07T06:12:27.9655710Z [3994/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-09-07T06:12:27.9938930Z [3995/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/distributed/rpc/unpickled_python_call.cpp.o 2025-09-07T06:12:28.0142160Z [3996/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-09-07T06:12:28.0307790Z [3997/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-09-07T06:12:28.0432900Z [3998/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-09-07T06:12:28.0634240Z [3999/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-09-07T06:12:28.0691820Z [4000/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-09-07T06:12:28.0701690Z [4001/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-09-07T06:12:28.1054440Z [4002/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/distributed/rpc/unpickled_python_remote_call.cpp.o 2025-09-07T06:12:28.1264310Z [4003/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-09-07T06:12:28.1457400Z [4004/5254] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/runtime/register_distributed_ops.cpp.o 2025-09-07T06:12:28.1567990Z [4005/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-09-07T06:12:28.1570320Z [4006/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-09-07T06:12:28.1653030Z [4007/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-09-07T06:12:28.1799920Z [4008/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-09-07T06:12:28.1900220Z [4009/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-09-07T06:12:28.2206070Z [4010/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-09-07T06:12:28.2276110Z [4011/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-09-07T06:12:28.2437520Z [4012/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-09-07T06:12:28.2560720Z [4013/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-09-07T06:12:28.2694380Z [4014/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-09-07T06:12:28.2715210Z [4015/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-09-07T06:12:28.2926770Z [4016/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-09-07T06:12:28.2948130Z [4017/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-09-07T06:12:28.3100440Z [4018/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-09-07T06:12:28.3172220Z [4019/5254] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-09-07T06:12:28.4823280Z [4020/5254] Building CXX object functorch/CMakeFiles/functorch.dir/csrc/init_dim_only.cpp.o 2025-09-07T06:12:28.5089760Z [4021/5254] Linking CXX static library lib/libXNNPACK.a 2025-09-07T06:12:28.6049820Z [4022/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GatedLinearUnit.cpp.o 2025-09-07T06:12:28.6753140Z [4023/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Histogram.cpp.o 2025-09-07T06:12:28.6858820Z [4024/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/IndexingUtils.cpp.o 2025-09-07T06:12:28.7027880Z [4025/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LegacyBatching.cpp.o 2025-09-07T06:12:28.7080040Z [4026/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Integration.cpp.o 2025-09-07T06:12:28.7180150Z [4027/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Itertools.cpp.o 2025-09-07T06:12:28.7293960Z [4028/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GridSampler.cpp.o 2025-09-07T06:12:28.7296270Z [4029/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Im2Col.cpp.o 2025-09-07T06:12:28.9889600Z [4030/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Lerp.cpp.o 2025-09-07T06:12:29.0422350Z [4031/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiLabelMargin.cpp.o 2025-09-07T06:12:29.0597590Z [4032/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Linear.cpp.o 2025-09-07T06:12:29.0716430Z [4033/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Loss.cpp.o 2025-09-07T06:12:29.0823750Z [4034/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossCTC.cpp.o 2025-09-07T06:12:29.0875850Z [4035/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL2d.cpp.o 2025-09-07T06:12:29.0892220Z [4036/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiMargin.cpp.o 2025-09-07T06:12:29.1197150Z [4037/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LinearAlgebra.cpp.o 2025-09-07T06:12:29.3795040Z [4038/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxPooling.cpp.o 2025-09-07T06:12:29.3979080Z [4039/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL.cpp.o 2025-09-07T06:12:29.4009940Z [4040/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxUnpooling.cpp.o 2025-09-07T06:12:29.4245300Z [4041/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MetaTensor.cpp.o 2025-09-07T06:12:29.4273590Z [4042/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Memory.cpp.o 2025-09-07T06:12:29.4714160Z [4043/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose3d.cpp.o 2025-09-07T06:12:29.5069140Z [4044/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NNPACK.cpp.o 2025-09-07T06:12:29.5202540Z [4045/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose2d.cpp.o 2025-09-07T06:12:29.7550180Z [4046/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NamedTensor.cpp.o 2025-09-07T06:12:29.7772920Z [4047/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Onehot.cpp.o 2025-09-07T06:12:29.7961920Z [4048/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NegateFallback.cpp.o 2025-09-07T06:12:29.8040490Z [4049/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveDilatedConvolution.cpp.o 2025-09-07T06:12:29.8202410Z [4050/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Normalization.cpp.o 2025-09-07T06:12:29.8302040Z [4051/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PackedSequence.cpp.o 2025-09-07T06:12:29.8402780Z [4052/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PadNd.cpp.o 2025-09-07T06:12:29.9732100Z [4053/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PixelShuffle.cpp.o 2025-09-07T06:12:30.0910770Z [4054/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PointwiseOps.cpp.o 2025-09-07T06:12:30.1386480Z [4055/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pooling.cpp.o 2025-09-07T06:12:30.1602030Z [4056/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pow.cpp.o 2025-09-07T06:12:30.2033410Z [4057/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RangeFactories.cpp.o 2025-09-07T06:12:30.2091880Z [4058/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/QuantizedLinear.cpp.o 2025-09-07T06:12:30.2380820Z [4059/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RNN.cpp.o 2025-09-07T06:12:30.2461680Z [4060/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceAllOps.cpp.o 2025-09-07T06:12:30.2719480Z [4061/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReflectionPad.cpp.o 2025-09-07T06:12:30.4325710Z [4062/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Repeat.cpp.o 2025-09-07T06:12:30.4702630Z [4063/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReplicationPadding.cpp.o 2025-09-07T06:12:30.4931790Z [4064/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceOps.cpp.o 2025-09-07T06:12:30.5638370Z [4065/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Resize.cpp.o 2025-09-07T06:12:30.5723330Z [4066/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RowwisePrune.cpp.o 2025-09-07T06:12:30.5977310Z [4067/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Scalar.cpp.o 2025-09-07T06:12:30.6806550Z [4068/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOps.cpp.o 2025-09-07T06:12:30.7020410Z [4069/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SegmentReduce.cpp.o 2025-09-07T06:12:30.8524180Z [4070/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SoftMax.cpp.o 2025-09-07T06:12:30.9007050Z [4071/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOpsUtils.cpp.o 2025-09-07T06:12:30.9100960Z [4072/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Sorting.cpp.o 2025-09-07T06:12:30.9454510Z [4073/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SpectralOps.cpp.o 2025-09-07T06:12:31.0003040Z [4074/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SummaryOps.cpp.o 2025-09-07T06:12:31.0603490Z [4075/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorCompare.cpp.o 2025-09-07T06:12:31.2296200Z [4076/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SparseTensorUtils.cpp.o 2025-09-07T06:12:31.2414710Z [4077/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorIteratorReduce.cpp.o 2025-09-07T06:12:31.2537240Z [4078/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorFactories.cpp.o 2025-09-07T06:12:31.3628730Z [4079/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorTransformations.cpp.o 2025-09-07T06:12:31.3812990Z [4080/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorProperties.cpp.o 2025-09-07T06:12:31.4080610Z [4081/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorAdvancedIndexing.cpp.o 2025-09-07T06:12:31.4231340Z [4082/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorConversions.cpp.o 2025-09-07T06:12:31.4368280Z [4083/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorShape.cpp.o 2025-09-07T06:12:31.5149110Z [4084/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TestOps.cpp.o 2025-09-07T06:12:31.5322530Z [4085/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TriangularOps.cpp.o 2025-09-07T06:12:31.5440340Z [4086/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold2d.cpp.o 2025-09-07T06:12:31.7009870Z [4087/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TypeProperties.cpp.o 2025-09-07T06:12:31.7267220Z [4088/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnaryOps.cpp.o 2025-09-07T06:12:31.8225560Z [4089/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold3d.cpp.o 2025-09-07T06:12:31.8600650Z [4090/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unique.cpp.o 2025-09-07T06:12:31.8638740Z [4091/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSample.cpp.o 2025-09-07T06:12:31.8804830Z [4092/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBicubic2d.cpp.o 2025-09-07T06:12:31.8987150Z [4093/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnfoldBackward.cpp.o 2025-09-07T06:12:31.9184820Z [4094/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBilinear2d.cpp.o 2025-09-07T06:12:32.1055000Z [4095/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleLinear1d.cpp.o 2025-09-07T06:12:32.1133180Z [4096/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest1d.cpp.o 2025-09-07T06:12:32.2180450Z [4097/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/group_norm.cpp.o 2025-09-07T06:12:32.2310820Z [4098/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/VariableMethodStubs.cpp.o 2025-09-07T06:12:32.2352320Z [4099/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleTrilinear3d.cpp.o 2025-09-07T06:12:32.2533070Z [4100/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/verbose_wrapper.cpp.o 2025-09-07T06:12:32.2560930Z [4101/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest2d.cpp.o 2025-09-07T06:12:32.2760770Z [4102/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/WeightNorm.cpp.o 2025-09-07T06:12:32.2962370Z [4103/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/prim_native_functions.cpp.o 2025-09-07T06:12:32.3250010Z [4104/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest3d.cpp.o 2025-09-07T06:12:32.3467160Z [4105/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/layer_norm.cpp.o 2025-09-07T06:12:32.5765850Z [4106/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/library.cpp.o 2025-09-07T06:12:32.6304020Z [4107/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear.cpp.o 2025-09-07T06:12:32.6557370Z [4108/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ParamUtils.cpp.o 2025-09-07T06:12:32.6827460Z [4109/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_prepack.cpp.o 2025-09-07T06:12:32.7072460Z [4110/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.cpp.o 2025-09-07T06:12:32.7093080Z [4111/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_dynamic.cpp.o 2025-09-07T06:12:32.7206250Z [4112/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SoftMax.cpp.o 2025-09-07T06:12:32.9764460Z [4113/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_deserialize.cpp.o 2025-09-07T06:12:32.9867630Z [4114/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlasImpl.cpp.o 2025-09-07T06:12:33.0131170Z [4115/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/FlattenIndicesKernel.cpp.o 2025-09-07T06:12:33.0465590Z [4116/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_unpack.cpp.o 2025-09-07T06:12:33.0473980Z [4117/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensor.cpp.o 2025-09-07T06:12:33.0858860Z [4118/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlas.cpp.o 2025-09-07T06:12:33.1721540Z [4119/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensorMath.cpp.o 2025-09-07T06:12:33.1979230Z [4120/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_serialize.cpp.o 2025-09-07T06:12:33.3062320Z [4121/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseMatMul.cpp.o 2025-09-07T06:12:33.3632440Z [4122/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBinaryOpIntersectionKernel.cpp.o 2025-09-07T06:12:33.4538740Z [4123/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensor.cpp.o 2025-09-07T06:12:33.4613170Z [4124/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o 2025-09-07T06:12:33.4752590Z [4125/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseUnaryOps.cpp.o 2025-09-07T06:12:33.5557450Z [4126/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseFactories.cpp.o 2025-09-07T06:12:33.6891960Z [4127/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ValidateCompressedIndicesKernel.cpp.o 2025-09-07T06:12:33.7801190Z [4128/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMatmul.cpp.o 2025-09-07T06:12:33.8300360Z [4129/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBackward.cpp.o 2025-09-07T06:12:33.9856590Z [4130/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorAliases.cpp.o 2025-09-07T06:12:34.0282090Z [4131/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorFactories.cpp.o 2025-09-07T06:12:34.0500410Z [4132/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBinaryOps.cpp.o 2025-09-07T06:12:34.0529910Z [4133/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizer.cpp.o 2025-09-07T06:12:34.0533750Z [4134/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUtils.cpp.o 2025-09-07T06:12:34.1761900Z [4135/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMath.cpp.o 2025-09-07T06:12:34.2484780Z [4136/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o 2025-09-07T06:12:34.3576990Z [4137/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUnaryOps.cpp.o 2025-09-07T06:12:34.4748510Z [4138/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalUpsamplingNearest.mm.o 2025-09-07T06:12:34.6437200Z [4139/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorTransformerFunctions.cpp.o 2025-09-07T06:12:34.6655000Z [4140/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ACLUtils.cpp.o 2025-09-07T06:12:34.6947500Z [4141/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/Copy.cpp.o 2025-09-07T06:12:34.7263680Z [4142/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerChannelAffine.cpp.o 2025-09-07T06:12:34.7568620Z [4143/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorFactories.cpp.o 2025-09-07T06:12:34.7652590Z [4144/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/QTensor.cpp.o 2025-09-07T06:12:34.9152470Z [4145/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerTensorAffine.cpp.o 2025-09-07T06:12:34.9885390Z [4146/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorCompare.cpp.o 2025-09-07T06:12:35.0223890Z [4147/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ChannelShuffle.cpp.o 2025-09-07T06:12:35.0997420Z [4148/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool3d.cpp.o 2025-09-07T06:12:35.1011670Z [4149/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool2d.cpp.o 2025-09-07T06:12:35.1168570Z [4150/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorAdvancedIndexing.cpp.o 2025-09-07T06:12:35.1282800Z [4151/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/BinaryOps.cpp.o 2025-09-07T06:12:35.1602220Z [4152/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AdaptiveAveragePooling.cpp.o 2025-09-07T06:12:35.1975460Z [4153/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/IntReprQuant.cpp.o 2025-09-07T06:12:35.2202510Z [4154/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/LinearUnpackImpl.cpp.o 2025-09-07T06:12:35.2410840Z [4155/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/RuyUtils.cpp.o 2025-09-07T06:12:35.4031700Z [4156/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ReduceOps.cpp.o 2025-09-07T06:12:35.4156500Z [4157/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Normalization.cpp.o 2025-09-07T06:12:35.4638490Z [4158/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/MakePerTensorQuantizedTensor.cpp.o 2025-09-07T06:12:35.5596650Z [4159/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Pooling.cpp.o 2025-09-07T06:12:35.5902010Z [4160/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorOperators.cpp.o 2025-09-07T06:12:35.6086680Z [4161/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Sorting.cpp.o 2025-09-07T06:12:35.6186860Z [4162/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorShape.cpp.o 2025-09-07T06:12:35.6456460Z [4163/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest2d.cpp.o 2025-09-07T06:12:35.6864780Z [4164/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleBilinear2d.cpp.o 2025-09-07T06:12:35.7691560Z [4165/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest3d.cpp.o 2025-09-07T06:12:35.8729970Z [4166/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/init_qnnpack.cpp.o 2025-09-07T06:12:35.9029350Z [4167/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fbgemm_utils.cpp.o 2025-09-07T06:12:35.9967820Z [4168/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv.cpp.o 2025-09-07T06:12:36.0071680Z [4169/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qclamp.cpp.o 2025-09-07T06:12:36.0162280Z [4170/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fused_obs_fake_quant.cpp.o 2025-09-07T06:12:36.0326600Z [4171/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_dynamic.cpp.o 2025-09-07T06:12:36.0550430Z [4172/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qelu.cpp.o 2025-09-07T06:12:36.2415360Z [4173/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_prepack.cpp.o 2025-09-07T06:12:36.2784660Z [4174/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/XnnpackUtils.cpp.o 2025-09-07T06:12:36.3658620Z [4175/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag.cpp.o 2025-09-07T06:12:36.4191120Z [4176/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear.cpp.o 2025-09-07T06:12:36.4364710Z [4177/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_prepack.cpp.o 2025-09-07T06:12:36.4519720Z [4178/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardsigmoid.cpp.o 2025-09-07T06:12:36.5170320Z [4179/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_unpack_impl.cpp.o 2025-09-07T06:12:36.5477080Z [4180/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qgelu.cpp.o 2025-09-07T06:12:36.5937910Z [4181/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_unpack.cpp.o 2025-09-07T06:12:36.6832450Z [4182/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qdropout.cpp.o 2025-09-07T06:12:36.7707250Z [4183/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardswish.cpp.o 2025-09-07T06:12:36.8047930Z [4184/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qnormalization.cpp.o 2025-09-07T06:12:36.8254620Z [4185/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_prepack.cpp.o 2025-09-07T06:12:36.9006760Z [4186/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmul.cpp.o 2025-09-07T06:12:36.9057420Z [4187/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_dynamic.cpp.o 2025-09-07T06:12:37.0231060Z [4188/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsigmoid.cpp.o 2025-09-07T06:12:37.0556070Z [4189/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qrelu.cpp.o 2025-09-07T06:12:37.1298690Z [4190/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qtanh.cpp.o 2025-09-07T06:12:37.1558080Z [4191/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmatmul.cpp.o 2025-09-07T06:12:37.1674460Z [4192/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/MklAllocationHelper.cpp.o 2025-09-07T06:12:37.2296700Z [4193/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/library.cpp.o 2025-09-07T06:12:37.2497190Z [4194/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o 2025-09-07T06:12:37.2612520Z [4195/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qthreshold.cpp.o 2025-09-07T06:12:37.2630040Z [4196/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qconv_unpack.cpp.o 2025-09-07T06:12:37.5243530Z [4197/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsoftmax.cpp.o 2025-09-07T06:12:37.5346690Z [4198/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseBlasImpl.cpp.o 2025-09-07T06:12:37.5652510Z [4199/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/BinaryOps.cpp.o 2025-09-07T06:12:37.5773960Z [4200/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseCsrLinearAlgebra.cpp.o 2025-09-07T06:12:37.5801190Z [4201/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SpectralOps.cpp.o 2025-09-07T06:12:37.6145510Z [4202/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qlinear_unpack.cpp.o 2025-09-07T06:12:37.6167710Z [4203/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Conv.cpp.o 2025-09-07T06:12:37.6370950Z [4204/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/IDeepRegistration.cpp.o 2025-09-07T06:12:37.7721260Z [4205/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Copy.cpp.o 2025-09-07T06:12:37.8210470Z [4206/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Gelu.cpp.o 2025-09-07T06:12:37.9616380Z [4207/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNCommon.cpp.o 2025-09-07T06:12:37.9761190Z [4208/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/ConvPrepack.cpp.o 2025-09-07T06:12:37.9831310Z [4209/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Normalization.cpp.o 2025-09-07T06:12:37.9945340Z [4210/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Linear.cpp.o 2025-09-07T06:12:38.0058440Z [4211/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Matmul.cpp.o 2025-09-07T06:12:38.0101330Z [4212/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNConversions.cpp.o 2025-09-07T06:12:38.0571680Z [4213/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MkldnnTensorMath.cpp.o 2025-09-07T06:12:38.1378010Z [4214/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RegisterMkldnnOpContextClass.cpp.o 2025-09-07T06:12:38.2701830Z [4215/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Pooling.cpp.o 2025-09-07T06:12:38.3710660Z [4216/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Relu.cpp.o 2025-09-07T06:12:38.3836770Z [4217/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/SoftMax.cpp.o 2025-09-07T06:12:38.4237250Z [4218/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/OpContext.cpp.o 2025-09-07T06:12:38.4342180Z [4219/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorFactories.cpp.o 2025-09-07T06:12:38.4363290Z [4220/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorShape.cpp.o 2025-09-07T06:12:38.4673850Z [4221/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Prelu.cpp.o 2025-09-07T06:12:38.6164330Z [4222/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/UnaryOps.cpp.o 2025-09-07T06:12:38.6507960Z [4223/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Utils.cpp.o 2025-09-07T06:12:38.7116900Z [4224/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RNN.cpp.o 2025-09-07T06:12:38.7618570Z [4225/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DeviceAccelerator.cpp.o 2025-09-07T06:12:38.7728060Z [4226/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/attention.cpp.o 2025-09-07T06:12:38.7831240Z [4227/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DTensorState.cpp.o 2025-09-07T06:12:38.7997570Z [4228/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Version.cpp.o 2025-09-07T06:12:38.8098440Z [4229/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalPythonObjects.cpp.o 2025-09-07T06:12:38.8504600Z [4230/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/type_parser.cpp.o 2025-09-07T06:12:39.0637850Z [4231/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/EmptyTensor.cpp.o 2025-09-07T06:12:39.1337980Z [4232/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Context.cpp.o 2025-09-07T06:12:39.1493400Z [4233/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CPUGeneratorImpl.cpp.o 2025-09-07T06:12:39.1716630Z [4234/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DLConvertor.cpp.o 2025-09-07T06:12:39.2279510Z [4235/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ConjugateFallback.cpp.o 2025-09-07T06:12:39.4255510Z [4236/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CachedTensorUtils.cpp.o 2025-09-07T06:12:39.4393460Z [4237/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalState.cpp.o 2025-09-07T06:12:39.4661240Z [4238/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalTranspose.mm.o 2025-09-07T06:12:39.4733190Z [4239/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DynamicLibrary.cpp.o 2025-09-07T06:12:39.4751640Z [4240/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FuncTorchTLS.cpp.o 2025-09-07T06:12:39.5207180Z [4241/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalizeFallbackKernel.cpp.o 2025-09-07T06:12:39.5614250Z [4242/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ExpandUtils.cpp.o 2025-09-07T06:12:39.6822080Z [4243/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Utils.cpp.o 2025-09-07T06:12:39.7456580Z [4244/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Dispatch.cpp.o 2025-09-07T06:12:39.7972560Z [4245/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedFallback.cpp.o 2025-09-07T06:12:39.8080130Z [4246/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorMeta.cpp.o 2025-09-07T06:12:39.8100370Z [4247/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorNames.cpp.o 2025-09-07T06:12:39.8453800Z [4248/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalStorageImpl.cpp.o 2025-09-07T06:12:39.8986260Z [4249/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalTensorWrapper.cpp.o 2025-09-07T06:12:39.9706330Z [4250/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/AccumulateType.cpp.o 2025-09-07T06:12:40.0551250Z [4251/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIterator.cpp.o 2025-09-07T06:12:40.0788770Z [4252/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapMode.cpp.o 2025-09-07T06:12:40.1397760Z [4253/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MapAllocator.cpp.o 2025-09-07T06:12:40.1663390Z [4254/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedTensorImpl.cpp.o 2025-09-07T06:12:40.2645200Z [4255/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalInverses.cpp.o 2025-09-07T06:12:40.3112770Z [4256/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MemoryOverlap.cpp.o 2025-09-07T06:12:40.3625260Z [4257/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorGeometry.cpp.o 2025-09-07T06:12:40.3823540Z [4258/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SequenceNumber.cpp.o 2025-09-07T06:12:40.3973050Z [4259/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIndexing.cpp.o 2025-09-07T06:12:40.5094860Z [4260/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorUtils.cpp.o 2025-09-07T06:12:40.5350100Z [4261/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapTransforms.cpp.o 2025-09-07T06:12:40.6332590Z [4262/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/StorageUtils.cpp.o 2025-09-07T06:12:40.6676240Z [4263/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchingRegistrations.cpp.o 2025-09-07T06:12:40.6682310Z [4264/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelNative.cpp.o 2025-09-07T06:12:40.6798770Z [4265/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SavedTensorHooks.cpp.o 2025-09-07T06:12:40.7016230Z [4266/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/PythonTorchFunctionTLS.cpp.o 2025-09-07T06:12:40.7204530Z [4267/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ScalarOps.cpp.o 2025-09-07T06:12:40.8438690Z [4268/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelThreadPoolNative.cpp.o 2025-09-07T06:12:40.8694930Z [4269/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseTensorImpl.cpp.o 2025-09-07T06:12:40.9509720Z [4270/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseCsrTensorImpl.cpp.o 2025-09-07T06:12:40.9727650Z [4271/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/FlushDenormal.cpp.o 2025-09-07T06:12:40.9828470Z [4272/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelOpenMP.cpp.o 2025-09-07T06:12:41.0181390Z [4273/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/Utils.cpp.o 2025-09-07T06:12:41.0947390Z [4274/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NamedTensorUtils.cpp.o 2025-09-07T06:12:41.1251580Z [4275/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelCommon.cpp.o 2025-09-07T06:12:41.1421840Z [4276/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/VmapModeRegistrations.cpp.o 2025-09-07T06:12:41.2025620Z [4277/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CPUGuardImpl.cpp.o 2025-09-07T06:12:41.2899680Z [4278/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HIPHooksInterface.cpp.o 2025-09-07T06:12:41.3204980Z [4279/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HPUHooksInterface.cpp.o 2025-09-07T06:12:41.3475350Z [4280/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CUDAHooksInterface.cpp.o 2025-09-07T06:12:41.4169220Z [4281/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/IPUHooksInterface.cpp.o 2025-09-07T06:12:41.4548450Z [4282/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MAIAHooksInterface.cpp.o 2025-09-07T06:12:41.4599570Z [4283/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ZeroTensorFallback.cpp.o 2025-09-07T06:12:41.5053320Z [4284/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NestedTensorImpl.cpp.o 2025-09-07T06:12:41.5471470Z [4285/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/autocast_mode.cpp.o 2025-09-07T06:12:41.5487580Z [4286/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MetaGuardImpl.cpp.o 2025-09-07T06:12:41.5819880Z [4287/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MPSHooksInterface.cpp.o 2025-09-07T06:12:41.6148940Z [4288/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MTIAHooksInterface.cpp.o 2025-09-07T06:12:41.6677110Z [4289/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/PrivateUse1HooksInterface.cpp.o 2025-09-07T06:12:41.7228480Z [4290/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/XPUHooksInterface.cpp.o 2025-09-07T06:12:41.9480800Z [4291/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/ADInterpreters.cpp.o 2025-09-07T06:12:42.2299820Z [4292/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesActivation.cpp.o 2025-09-07T06:12:42.2423190Z [4293/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesBinaryOps.cpp.o 2025-09-07T06:12:42.2611550Z [4294/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDecompositions.cpp.o 2025-09-07T06:12:42.2770550Z [4295/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDynamic.cpp.o 2025-09-07T06:12:42.3115520Z [4296/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesConvolution.cpp.o 2025-09-07T06:12:42.3356050Z [4297/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesHelper.cpp.o 2025-09-07T06:12:42.3659310Z [4298/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesFactory.cpp.o 2025-09-07T06:12:42.6924410Z [4299/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesIndexing.cpp.o 2025-09-07T06:12:42.9218670Z [4300/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesModules.cpp.o 2025-09-07T06:12:42.9338910Z [4301/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesRandomness.cpp.o 2025-09-07T06:12:42.9615730Z [4302/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLoss.cpp.o 2025-09-07T06:12:42.9830790Z [4303/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLinearAlgebra.cpp.o 2025-09-07T06:12:43.0113210Z [4304/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesPooling.cpp.o 2025-09-07T06:12:43.0273030Z [4305/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesNorm.cpp.o 2025-09-07T06:12:43.0481040Z [4306/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesReduceOps.cpp.o 2025-09-07T06:12:43.2941380Z [4307/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedTensorImpl.cpp.o 2025-09-07T06:12:43.3346750Z [4308/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesScatterOps.cpp.o 2025-09-07T06:12:43.4662770Z [4309/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/Interpreter.cpp.o 2025-09-07T06:12:43.4949260Z [4310/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/FunctionalizeInterpreter.cpp.o 2025-09-07T06:12:43.6171510Z [4311/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesViews.cpp.o 2025-09-07T06:12:43.6340360Z [4312/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesUnaryOps.cpp.o 2025-09-07T06:12:43.6439430Z [4313/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PlumbingHelper.cpp.o 2025-09-07T06:12:43.6539660Z [4314/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedFallback.cpp.o 2025-09-07T06:12:43.8517310Z [4315/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/DynamicLayer.cpp.o 2025-09-07T06:12:43.8619590Z [4316/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenGeneral.cpp.o 2025-09-07T06:12:43.9287250Z [4317/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/TensorWrapper.cpp.o 2025-09-07T06:12:43.9826390Z [4318/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyBatchingRegistrations.cpp.o 2025-09-07T06:12:43.9978120Z [4319/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapInterpreter.cpp.o 2025-09-07T06:12:44.0389280Z [4320/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyVmapTransforms.cpp.o 2025-09-07T06:12:44.0792610Z [4321/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PyTorchOperatorHacks.cpp.o 2025-09-07T06:12:44.0868610Z [4322/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/record_function.cpp.o 2025-09-07T06:12:44.1764930Z [4323/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/CachingHostAllocator.cpp.o 2025-09-07T06:12:44.2317670Z [4324/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypePropertiesRegistry.cpp.o 2025-09-07T06:12:44.2444170Z [4325/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dimname.cpp.o 2025-09-07T06:12:44.2569110Z [4326/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/BackendSelectFallbackKernel.cpp.o 2025-09-07T06:12:44.2743380Z [4327/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypeProperties.cpp.o 2025-09-07T06:12:44.3853480Z [4328/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dict.cpp.o 2025-09-07T06:12:44.4254390Z [4329/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapModeRegistrations.cpp.o 2025-09-07T06:12:44.4356810Z [4330/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/GeneratorForPrivateuseone.cpp.o 2025-09-07T06:12:44.4594370Z [4331/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Formatting.cpp.o 2025-09-07T06:12:44.5162930Z [4332/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Generator.cpp.o 2025-09-07T06:12:44.5182950Z [4333/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/List.cpp.o 2025-09-07T06:12:44.5958890Z [4334/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NestedIntSymNodeImpl.cpp.o 2025-09-07T06:12:44.6315210Z [4335/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedTensor.cpp.o 2025-09-07T06:12:44.6933480Z [4336/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Range.cpp.o 2025-09-07T06:12:44.7653000Z [4337/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/MetaFallbackKernel.cpp.o 2025-09-07T06:12:44.7753550Z [4338/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedRegistrations.cpp.o 2025-09-07T06:12:44.8393950Z [4339/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Tensor.cpp.o 2025-09-07T06:12:44.8638200Z [4340/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonOpRegistrationTrampoline.cpp.o 2025-09-07T06:12:44.9056870Z [4341/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonFallbackKernel.cpp.o 2025-09-07T06:12:44.9528010Z [4342/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TorchDispatchUtils.cpp.o 2025-09-07T06:12:44.9550690Z [4343/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Vitals.cpp.o 2025-09-07T06:12:44.9799080Z [4344/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableFallbackKernel.cpp.o 2025-09-07T06:12:44.9977920Z [4345/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableHooksInterface.cpp.o 2025-09-07T06:12:45.0835310Z [4346/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/blob.cpp.o 2025-09-07T06:12:45.0954980Z [4347/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/adaption.cpp.o 2025-09-07T06:12:45.2148400Z [4348/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/boxing/KernelFunction.cpp.o 2025-09-07T06:12:45.2549070Z [4349/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/ObservedOperators.cpp.o 2025-09-07T06:12:45.2883760Z [4350/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/custom_class.cpp.o 2025-09-07T06:12:45.3221020Z [4351/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/class_type.cpp.o 2025-09-07T06:12:45.3286230Z [4352/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/DispatchKeyExtractor.cpp.o 2025-09-07T06:12:45.3645060Z [4353/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/OperatorEntry.cpp.o 2025-09-07T06:12:45.4200840Z [4354/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/interned_strings.cpp.o 2025-09-07T06:12:45.4606970Z [4355/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/Dispatcher.cpp.o 2025-09-07T06:12:45.4629470Z [4356/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dynamic_type.cpp.o 2025-09-07T06:12:45.5754480Z [4357/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/function_schema.cpp.o 2025-09-07T06:12:45.6030580Z [4358/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/operator_name.cpp.o 2025-09-07T06:12:45.6384260Z [4359/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/register_symbols.cpp.o 2025-09-07T06:12:45.7524140Z [4360/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ivalue.cpp.o 2025-09-07T06:12:45.7567560Z [4361/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/library.cpp.o 2025-09-07T06:12:45.7581920Z [4362/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/infer_schema.cpp.o 2025-09-07T06:12:45.7982130Z [4363/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/op_registration.cpp.o 2025-09-07T06:12:45.8224250Z [4364/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/tensor_type.cpp.o 2025-09-07T06:12:45.8998830Z [4365/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type_factory.cpp.o 2025-09-07T06:12:45.9099210Z [4366/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/error_report.cpp.o 2025-09-07T06:12:45.9280620Z [4367/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type.cpp.o 2025-09-07T06:12:45.9696720Z [4368/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/union_type.cpp.o 2025-09-07T06:12:45.9853770Z [4369/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/strtod.cpp.o 2025-09-07T06:12:46.0607050Z [4370/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/lexer.cpp.o 2025-09-07T06:12:46.1305850Z [4371/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/function_schema_parser.cpp.o 2025-09-07T06:12:46.1799780Z [4372/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_type_parser.cpp.o 2025-09-07T06:12:46.2257390Z [4373/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/source_range.cpp.o 2025-09-07T06:12:46.2680100Z [4374/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Activation.cpp.o 2025-09-07T06:12:46.3025760Z [4375/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling3d.cpp.o 2025-09-07T06:12:46.3070060Z [4376/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling.cpp.o 2025-09-07T06:12:46.3093980Z [4377/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling2d.cpp.o 2025-09-07T06:12:46.4323240Z [4378/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling3d.cpp.o 2025-09-07T06:12:46.4691820Z [4379/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AffineGridGenerator.cpp.o 2025-09-07T06:12:46.4832110Z [4380/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AutogradComposite.cpp.o 2025-09-07T06:12:46.5434560Z [4381/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AmpKernels.cpp.o 2025-09-07T06:12:46.6353840Z [4382/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool2d.cpp.o 2025-09-07T06:12:46.7378910Z [4383/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool3d.cpp.o 2025-09-07T06:12:46.7393660Z [4384/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebraKernel.cpp.o 2025-09-07T06:12:46.7557720Z [4385/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Blas.cpp.o 2025-09-07T06:12:46.7615910Z [4386/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BlasKernel.cpp.o 2025-09-07T06:12:46.7693660Z [4387/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BinaryOps.cpp.o 2025-09-07T06:12:46.7872480Z [4388/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebra.cpp.o 2025-09-07T06:12:46.8562830Z [4389/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Bucketization.cpp.o 2025-09-07T06:12:46.9910030Z [4390/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUBlas.cpp.o 2025-09-07T06:12:47.0471030Z [4391/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ChanelShuffle.cpp.o 2025-09-07T06:12:47.0866780Z [4392/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUFallback.cpp.o 2025-09-07T06:12:47.1095070Z [4393/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ComparisonUtils.cpp.o 2025-09-07T06:12:47.1749540Z [4394/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Col2Im.cpp.o 2025-09-07T06:12:47.1896410Z [4395/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Constraints.cpp.o 2025-09-07T06:12:47.2238210Z [4396/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM2d.cpp.o 2025-09-07T06:12:47.2684680Z [4397/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Convolution.cpp.o 2025-09-07T06:12:47.3710640Z [4398/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM3d.cpp.o 2025-09-07T06:12:47.3992630Z [4399/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionTBC.cpp.o 2025-09-07T06:12:47.4151070Z [4400/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Copy.cpp.o 2025-09-07T06:12:47.4927760Z [4401/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DispatchStub.cpp.o 2025-09-07T06:12:47.5087950Z [4402/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool2d.cpp.o 2025-09-07T06:12:47.5172520Z [4403/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Cross.cpp.o 2025-09-07T06:12:47.5212960Z [4404/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Correlation.cpp.o 2025-09-07T06:12:47.6596020Z [4405/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool3d.cpp.o 2025-09-07T06:12:47.7499760Z [4406/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distance.cpp.o 2025-09-07T06:12:47.7903840Z [4407/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Embedding.cpp.o 2025-09-07T06:12:47.8424140Z [4408/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distributions.cpp.o 2025-09-07T06:12:47.8456160Z [4409/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool3d.cpp.o 2025-09-07T06:12:47.8500650Z [4410/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Dropout.cpp.o 2025-09-07T06:12:47.8618920Z [4411/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/EmbeddingBag.cpp.o 2025-09-07T06:12:47.8801760Z [4412/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Fill.cpp.o 2025-09-07T06:12:47.8999420Z [4413/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ForeachOpsKernels.cpp.o 2025-09-07T06:12:48.0484840Z [4414/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool2d.cpp.o 2025-09-07T06:12:48.1267810Z [4415/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FunctionOfAMatrixUtils.cpp.o 2025-09-07T06:12:48.1547420Z [4416/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdam.cpp.o 2025-09-07T06:12:48.1587400Z [4417/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdagrad.cpp.o 2025-09-07T06:12:48.2933690Z [4418/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedSGD.cpp.o 2025-09-07T06:12:48.4330380Z [4419/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Equal.cpp.o 2025-09-07T06:12:48.6011410Z [4420/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/TensorFactory.cpp.o 2025-09-07T06:12:48.6480670Z [4421/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSStream.mm.o 2025-09-07T06:12:48.6713720Z [4422/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSProfiler.mm.o 2025-09-07T06:12:48.7479120Z [4423/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/OperationUtils.mm.o 2025-09-07T06:12:48.8024170Z [4424/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Activation.mm.o 2025-09-07T06:12:48.8902160Z [4425/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ActivationKernel.mm.o 2025-09-07T06:12:48.9817820Z [4426/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Attention.mm.o 2025-09-07T06:12:49.1372820Z [4427/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/AdaptivePooling.mm.o 2025-09-07T06:12:49.2278540Z [4428/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Amp.mm.o 2025-09-07T06:12:49.3577170Z [4429/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryKernel.mm.o 2025-09-07T06:12:49.3800220Z [4430/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryOps.mm.o 2025-09-07T06:12:49.3934400Z [4431/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Blas.mm.o 2025-09-07T06:12:49.4429820Z [4432/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BitwiseOps.mm.o 2025-09-07T06:12:49.5353060Z [4433/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Bucketization.mm.o 2025-09-07T06:12:49.5729330Z [4434/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ConstantOps.mm.o 2025-09-07T06:12:49.8320960Z [4435/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernel.mm.o 2025-09-07T06:12:49.8521520Z [4436/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Convolution.mm.o 2025-09-07T06:12:49.8763950Z [4437/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Col2Im.mm.o 2025-09-07T06:12:49.9760730Z [4438/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Copy.mm.o 2025-09-07T06:12:50.0894110Z [4439/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/CrossKernel.mm.o 2025-09-07T06:12:50.1314310Z [4440/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Eye.mm.o 2025-09-07T06:12:50.1749800Z [4441/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FastFourierTransform.mm.o 2025-09-07T06:12:50.2387170Z [4442/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernel.mm.o 2025-09-07T06:12:50.2654260Z [4443/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Distributions.mm.o 2025-09-07T06:12:50.4534120Z [4444/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.mm.o 2025-09-07T06:12:50.5804660Z [4445/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernelImpl.mm.o 2025-09-07T06:12:50.6551040Z [4446/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/GridSampler.mm.o 2025-09-07T06:12:50.6862100Z [4447/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.mm.o 2025-09-07T06:12:50.8185360Z [4448/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Gamma.mm.o 2025-09-07T06:12:50.8413240Z [4449/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedSgdKernel.mm.o 2025-09-07T06:12:50.9010840Z [4450/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernelImpl.mm.o 2025-09-07T06:12:50.9691390Z [4451/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/HistogramKernel.mm.o 2025-09-07T06:12:51.2421520Z [4452/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Indexing.mm.o 2025-09-07T06:12:51.2670600Z [4453/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Lerp.mm.o 2025-09-07T06:12:51.3067760Z [4454/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Im2Col.mm.o 2025-09-07T06:12:51.3433310Z [4455/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Linear.mm.o 2025-09-07T06:12:51.3458680Z /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/Linear.mm:50:17: warning: instance method '-encodeToCommandEncoder:commandBuffer:sourceArrays:destinationArray:' not found (return type defaults to 'id') [-Wobjc-method-access] 2025-09-07T06:12:51.3463210Z [kernel encodeToCommandEncoder:computeEncoder 2025-09-07T06:12:51.3463610Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:12:51.3464550Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Headers/MPSNDArrayMatrixMultiplication.h:37:12: note: receiver is instance of class declared here 2025-09-07T06:12:51.3465560Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-09-07T06:12:51.3469880Z ^ 2025-09-07T06:12:51.3470780Z /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/Linear.mm:61:17: warning: instance method '-encodeToCommandEncoder:commandBuffer:sourceArrays:destinationArray:' not found (return type defaults to 'id') [-Wobjc-method-access] 2025-09-07T06:12:51.3471610Z [kernel encodeToCommandEncoder:computeEncoder 2025-09-07T06:12:51.3471830Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:12:51.3472830Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Headers/MPSNDArrayMatrixMultiplication.h:37:12: note: receiver is instance of class declared here 2025-09-07T06:12:51.3473710Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-09-07T06:12:51.3473970Z ^ 2025-09-07T06:12:51.3474090Z 2 warnings generated. 2025-09-07T06:12:51.4434650Z [4456/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Normalization.mm.o 2025-09-07T06:12:51.4933800Z [4457/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LinearAlgebra.mm.o 2025-09-07T06:12:51.4940690Z /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/LinearAlgebra.mm:911:21: warning: instance method '-encodeToCommandEncoder:commandBuffer:sourceArrays:destinationArray:' not found (return type defaults to 'id') [-Wobjc-method-access] 2025-09-07T06:12:51.4941600Z [matmul encodeToCommandEncoder:computeEncoder 2025-09-07T06:12:51.4941840Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-09-07T06:12:51.4942650Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Headers/MPSNDArrayMatrixMultiplication.h:37:12: note: receiver is instance of class declared here 2025-09-07T06:12:51.4943530Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-09-07T06:12:51.4943800Z ^ 2025-09-07T06:12:51.4943930Z 1 warning generated. 2025-09-07T06:12:51.5083980Z [4458/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LossOps.mm.o 2025-09-07T06:12:51.5292110Z [4459/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PixelShuffle.mm.o 2025-09-07T06:12:51.9154410Z [4460/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pad.mm.o 2025-09-07T06:12:51.9269900Z [4461/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Quantized.mm.o 2025-09-07T06:12:51.9308770Z [4462/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PointwiseOps.mm.o 2025-09-07T06:12:52.0521550Z [4463/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pooling.mm.o 2025-09-07T06:12:52.0919510Z [4464/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RMSNorm.mm.o 2025-09-07T06:12:52.1932790Z [4465/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RenormKernel.mm.o 2025-09-07T06:12:52.2162460Z [4466/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RangeFactories.mm.o 2025-09-07T06:12:52.3103690Z [4467/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ReduceOps.mm.o 2025-09-07T06:12:52.6010370Z [4468/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RnnOps.mm.o 2025-09-07T06:12:52.6526780Z [4469/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ScatterGather.mm.o 2025-09-07T06:12:52.6656990Z [4470/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Scalar.mm.o 2025-09-07T06:12:52.6724080Z [4471/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Repeat.mm.o 2025-09-07T06:12:52.7389370Z [4472/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SoftMax.mm.o 2025-09-07T06:12:52.7415500Z [4473/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ScanKernel.mm.o 2025-09-07T06:12:52.8407450Z [4474/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Shape.mm.o 2025-09-07T06:12:52.8982630Z [4475/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Sort.mm.o 2025-09-07T06:12:53.2953760Z [4476/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TensorCompare.mm.o 2025-09-07T06:12:53.3593950Z [4477/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SummaryOps.mm.o 2025-09-07T06:12:53.3641100Z [4478/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SpecialOps.mm.o 2025-09-07T06:12:53.3913760Z [4479/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryOps.mm.o 2025-09-07T06:12:53.3964600Z [4480/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryKernel.mm.o 2025-09-07T06:12:53.4206800Z [4481/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TriangularOps.mm.o 2025-09-07T06:12:53.4678470Z [4482/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnfoldBackward.mm.o 2025-09-07T06:12:53.5452970Z [4483/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UpSample.mm.o 2025-09-07T06:12:53.8050880Z [4484/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_mps.cpp.o 2025-09-07T06:12:53.9449660Z [4485/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Unique.mm.o 2025-09-07T06:12:53.9801620Z [4486/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/View.mm.o 2025-09-07T06:12:54.0391690Z [4487/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner_mps.cpp.o 2025-09-07T06:12:54.0592440Z [4488/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/WeightNorm.mm.o 2025-09-07T06:12:54.1792200Z [4489/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/mps/SparseMPSTensor.mm.o 2025-09-07T06:12:54.2048190Z [4490/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_mps.mm.o 2025-09-07T06:12:54.2246680Z [4491/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/mps/SparseMPSTensorMath.mm.o 2025-09-07T06:12:54.2513480Z [4492/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/mps/FlattenIndices.mm.o 2025-09-07T06:12:54.3302890Z [4493/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.cpp.o 2025-09-07T06:12:54.4742930Z [4494/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/functions/sendrpc_backward.cpp.o 2025-09-07T06:12:54.6378890Z [4495/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/context/context.cpp.o 2025-09-07T06:12:54.6808520Z [4496/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.cpp.o 2025-09-07T06:12:54.7006820Z [4497/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/context/container.cpp.o 2025-09-07T06:12:54.7145550Z [4498/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/engine/dist_engine.cpp.o 2025-09-07T06:12:54.7350410Z [4499/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/functions/recvrpc_backward.cpp.o 2025-09-07T06:12:54.9186730Z [4500/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.cpp.o 2025-09-07T06:12:55.0208670Z [4501/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.cpp.o 2025-09-07T06:12:55.0609200Z [4502/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.cpp.o 2025-09-07T06:12:55.0854360Z [4503/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/HashStore.cpp.o 2025-09-07T06:12:55.3151090Z [4504/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.cpp.o 2025-09-07T06:12:55.3545300Z [4505/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.cpp.o 2025-09-07T06:12:55.4247770Z [4506/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.cpp.o 2025-09-07T06:12:55.4472760Z [4507/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/agent_utils.cpp.o 2025-09-07T06:12:55.4912620Z [4508/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.cpp.o 2025-09-07T06:12:55.6344030Z [4509/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.cpp.o 2025-09-07T06:12:55.6847260Z [4510/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/message.cpp.o 2025-09-07T06:12:55.6950530Z [4511/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.cpp.o 2025-09-07T06:12:55.8041980Z [4512/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/python_remote_call.cpp.o 2025-09-07T06:12:55.9106520Z [4513/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/python_call.cpp.o 2025-09-07T06:12:56.0149500Z [4514/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.cpp.o 2025-09-07T06:12:56.1419260Z [4515/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/python_resp.cpp.o 2025-09-07T06:12:56.1615320Z [4516/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/request_callback.cpp.o 2025-09-07T06:12:56.3353410Z [4517/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rpc_agent.cpp.o 2025-09-07T06:12:56.3361580Z [4518/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/tensorpipe_agent.cpp.o 2025-09-07T06:12:56.3478970Z [4519/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/tensorpipe_utils.cpp.o 2025-09-07T06:12:56.3696850Z [4520/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rref_context.cpp.o 2025-09-07T06:12:56.4507930Z [4521/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/request_callback_no_python.cpp.o 2025-09-07T06:12:56.4740780Z [4522/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rref_impl.cpp.o 2025-09-07T06:12:56.4852760Z [4523/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.cpp.o 2025-09-07T06:12:56.6289630Z [4524/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/rref_proto.cpp.o 2025-09-07T06:12:56.6426590Z [4525/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/script_call.cpp.o 2025-09-07T06:12:56.7228480Z [4526/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/types.cpp.o 2025-09-07T06:12:56.7392360Z [4527/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/cuda.cpp.o 2025-09-07T06:12:56.8373460Z [4528/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/script_remote_call.cpp.o 2025-09-07T06:12:56.8963620Z [4529/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/script_resp.cpp.o 2025-09-07T06:12:56.9971170Z [4530/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/enum.cpp.o 2025-09-07T06:12:57.1711160Z [4531/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/torchscript_functions.cpp.o 2025-09-07T06:12:57.1913810Z [4532/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/rpc/utils.cpp.o 2025-09-07T06:12:57.2089280Z [4533/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/datasets/mnist.cpp.o 2025-09-07T06:12:57.2867860Z [4534/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/distributed.cpp.o 2025-09-07T06:12:57.3406340Z [4535/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/random.cpp.o 2025-09-07T06:12:57.3548680Z [4536/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/imethod.cpp.o 2025-09-07T06:12:57.3827640Z [4537/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/sequential.cpp.o 2025-09-07T06:12:57.4045430Z [4538/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/mps.cpp.o 2025-09-07T06:12:57.5607850Z [4539/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/stream.cpp.o 2025-09-07T06:12:57.8934160Z [4540/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize.cpp.o 2025-09-07T06:12:57.9178390Z [4541/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/init.cpp.o 2025-09-07T06:12:57.9399740Z [4542/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/_functions.cpp.o 2025-09-07T06:12:57.9530350Z [4543/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/module.cpp.o 2025-09-07T06:12:57.9884990Z [4544/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/adaptive.cpp.o 2025-09-07T06:12:58.0326650Z [4545/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/batchnorm.cpp.o 2025-09-07T06:12:58.0521020Z [4546/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/activation.cpp.o 2025-09-07T06:12:58.0723940Z [4547/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/normalization.cpp.o 2025-09-07T06:12:58.4985940Z [4548/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/instancenorm.cpp.o 2025-09-07T06:12:58.5206060Z [4549/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/conv.cpp.o 2025-09-07T06:12:58.6470380Z [4550/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/dropout.cpp.o 2025-09-07T06:12:58.6677400Z [4551/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/embedding.cpp.o 2025-09-07T06:12:58.6799130Z [4552/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/distance.cpp.o 2025-09-07T06:12:58.6999700Z [4553/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/fold.cpp.o 2025-09-07T06:12:58.7149390Z [4554/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/linear.cpp.o 2025-09-07T06:12:58.7459890Z [4555/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/loss.cpp.o 2025-09-07T06:12:59.1932310Z [4556/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pixelshuffle.cpp.o 2025-09-07T06:12:59.2077040Z [4557/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/padding.cpp.o 2025-09-07T06:12:59.2355400Z [4558/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/rnn.cpp.o 2025-09-07T06:12:59.2801510Z [4559/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pooling.cpp.o 2025-09-07T06:12:59.3315680Z [4560/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/container/functional.cpp.o 2025-09-07T06:12:59.3614260Z [4561/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/transformer.cpp.o 2025-09-07T06:12:59.3796920Z [4562/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/upsampling.cpp.o 2025-09-07T06:12:59.3864920Z [4563/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/adaptive.cpp.o 2025-09-07T06:12:59.8322330Z [4564/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/batchnorm.cpp.o 2025-09-07T06:12:59.8646740Z [4565/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/activation.cpp.o 2025-09-07T06:12:59.8825540Z [4566/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/normalization.cpp.o 2025-09-07T06:12:59.8953210Z [4567/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/embedding.cpp.o 2025-09-07T06:12:59.9166590Z [4568/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/instancenorm.cpp.o 2025-09-07T06:12:59.9322220Z [4569/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/conv.cpp.o 2025-09-07T06:12:59.9540450Z [4570/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/dropout.cpp.o 2025-09-07T06:13:00.0700570Z [4571/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/linear.cpp.o 2025-09-07T06:13:00.4545300Z [4572/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/rnn.cpp.o 2025-09-07T06:13:00.4766860Z [4573/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/padding.cpp.o 2025-09-07T06:13:00.4909580Z [4574/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/transformer.cpp.o 2025-09-07T06:13:00.5091300Z [4575/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adam.cpp.o 2025-09-07T06:13:00.5338130Z [4576/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/vision.cpp.o 2025-09-07T06:13:00.5467220Z [4577/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/pooling.cpp.o 2025-09-07T06:13:00.5805880Z [4578/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adagrad.cpp.o 2025-09-07T06:13:00.7598730Z [4579/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adamw.cpp.o 2025-09-07T06:13:00.8911510Z [4580/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp.o 2025-09-07T06:13:01.0462690Z [4581/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/step_lr.cpp.o 2025-09-07T06:13:01.0766720Z [4582/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/optimizer.cpp.o 2025-09-07T06:13:01.0900110Z [4583/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/lbfgs.cpp.o 2025-09-07T06:13:01.2069900Z [4584/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/rmsprop.cpp.o 2025-09-07T06:13:01.2081980Z [4585/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/xpu.cpp.o 2025-09-07T06:13:01.2355290Z [4586/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/sgd.cpp.o 2025-09-07T06:13:01.2532140Z [4587/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/serialize.cpp.o 2025-09-07T06:13:01.2640080Z [4588/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/reduce_on_plateau_scheduler.cpp.o 2025-09-07T06:13:01.3498510Z [4589/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/input-archive.cpp.o 2025-09-07T06:13:01.3978030Z [4590/5254] Building CXX object caffe2/CMakeFiles/torch.dir/__/empty.cpp.o 2025-09-07T06:13:01.5881600Z [4591/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/output-archive.cpp.o 2025-09-07T06:13:01.6147200Z [4592/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGeneratorImpl.mm.o 2025-09-07T06:13:01.7212000Z [4593/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSDevice.mm.o 2025-09-07T06:13:01.7438720Z [4594/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/utils.cpp.o 2025-09-07T06:13:01.7684010Z [4595/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp.o 2025-09-07T06:13:01.7789120Z [4596/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/version_map.cpp.o 2025-09-07T06:13:01.7994050Z [4597/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/EmptyTensor.cpp.o 2025-09-07T06:13:01.8293780Z [4598/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSAllocator.mm.o 2025-09-07T06:13:01.9194370Z [4599/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSEvent.mm.o 2025-09-07T06:13:02.0686340Z [4600/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/add_if_then_else.cpp.o 2025-09-07T06:13:02.0796220Z [4601/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSFallback.mm.o 2025-09-07T06:13:02.1075720Z [4602/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/annotate_warns.cpp.o 2025-09-07T06:13:02.1752630Z [4603/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp.o 2025-09-07T06:13:02.2143530Z [4604/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize.cpp.o 2025-09-07T06:13:02.3818000Z [4605/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/check_strict_fusion.cpp.o 2025-09-07T06:13:02.4988750Z [4606/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_pooling.cpp.o 2025-09-07T06:13:02.5193590Z [4607/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_profiling.cpp.o 2025-09-07T06:13:02.5404780Z [4608/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/bailout_graph.cpp.o 2025-09-07T06:13:02.5428250Z [4609/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/concat_opt.cpp.o 2025-09-07T06:13:02.5604340Z [4610/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/batch_mm.cpp.o 2025-09-07T06:13:02.5623960Z [4611/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/common_subexpression_elimination.cpp.o 2025-09-07T06:13:02.7083240Z [4612/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_propagation.cpp.o 2025-09-07T06:13:02.7420570Z [4613/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_undefinedness.cpp.o 2025-09-07T06:13:02.8770710Z [4614/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp.o 2025-09-07T06:13:02.9047220Z [4615/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_functional_graphs.cpp.o 2025-09-07T06:13:02.9108220Z [4616/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/device_type_analysis.cpp.o 2025-09-07T06:13:02.9189200Z [4617/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dead_code_elimination.cpp.o 2025-09-07T06:13:02.9467750Z [4618/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp.o 2025-09-07T06:13:02.9520740Z [4619/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/decompose_ops.cpp.o 2025-09-07T06:13:03.0725720Z [4620/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dtype_analysis.cpp.o 2025-09-07T06:13:03.0732950Z [4621/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/eliminate_no_ops.cpp.o 2025-09-07T06:13:03.2953690Z [4622/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/erase_number_types.cpp.o 2025-09-07T06:13:03.3159310Z [4623/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp.o 2025-09-07T06:13:03.3382250Z [4624/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_linear_bn.cpp.o 2025-09-07T06:13:03.3616280Z [4625/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_conv_bn.cpp.o 2025-09-07T06:13:03.3817040Z [4626/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp.o 2025-09-07T06:13:03.4054160Z [4627/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_concat_linear.cpp.o 2025-09-07T06:13:03.4195970Z [4628/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_graph_optimizations.cpp.o 2025-09-07T06:13:03.6618590Z [4629/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/freeze_module.cpp.o 2025-09-07T06:13:03.6968340Z [4630/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_folding.cpp.o 2025-09-07T06:13:03.7013930Z [4631/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_transpose.cpp.o 2025-09-07T06:13:03.7198320Z [4632/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_folding.cpp.o 2025-09-07T06:13:03.7446160Z [4633/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_linear.cpp.o 2025-09-07T06:13:03.7873970Z [4634/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_relu.cpp.o 2025-09-07T06:13:04.0286480Z [4635/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_rewrite_helper.cpp.o 2025-09-07T06:13:04.0649800Z [4636/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp.o 2025-09-07T06:13:04.0931970Z [4637/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp.o 2025-09-07T06:13:04.1041920Z [4638/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/hoist_conv_packed_params.cpp.o 2025-09-07T06:13:04.1387540Z [4639/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_fuser.cpp.o 2025-09-07T06:13:04.1503570Z [4640/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_fork_wait.cpp.o 2025-09-07T06:13:04.1505400Z [4641/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_forked_closures.cpp.o 2025-09-07T06:13:04.2576060Z [4642/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/guard_elimination.cpp.o 2025-09-07T06:13:04.3354880Z [4643/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inliner.cpp.o 2025-09-07T06:13:04.3832640Z [4644/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inplace_check.cpp.o 2025-09-07T06:13:04.5278880Z [4645/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/integer_value_refinement.cpp.o 2025-09-07T06:13:04.5653390Z [4646/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lift_closures.cpp.o 2025-09-07T06:13:04.6220310Z [4647/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/loop_unrolling.cpp.o 2025-09-07T06:13:04.6321520Z [4648/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_grad_of.cpp.o 2025-09-07T06:13:04.7510660Z [4649/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_tuples.cpp.o 2025-09-07T06:13:04.7975380Z [4650/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/insert_guards.cpp.o 2025-09-07T06:13:04.9308500Z [4651/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/normalize_ops.cpp.o 2025-09-07T06:13:04.9509450Z [4652/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole.cpp.o 2025-09-07T06:13:04.9755830Z [4653/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/liveness.cpp.o 2025-09-07T06:13:04.9795570Z [4654/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/pass_manager.cpp.o 2025-09-07T06:13:05.0709200Z [4655/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_dict_idioms.cpp.o 2025-09-07T06:13:05.1010280Z [4656/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_alias_sensitive.cpp.o 2025-09-07T06:13:05.1284560Z [4657/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/mkldnn_rewrite.cpp.o 2025-09-07T06:13:05.1410090Z [4658/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/metal_rewrite.cpp.o 2025-09-07T06:13:05.2822310Z [4659/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_list_idioms.cpp.o 2025-09-07T06:13:05.3011550Z [4660/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_non_tensor.cpp.o 2025-09-07T06:13:05.3941460Z [4661/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/fusion_passes.cpp.o 2025-09-07T06:13:05.4221890Z [4662/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/quantization_type.cpp.o 2025-09-07T06:13:05.4386860Z [4663/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/prepack_folding.cpp.o 2025-09-07T06:13:05.4609690Z [4664/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp.o 2025-09-07T06:13:05.5326810Z [4665/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/helper.cpp.o 2025-09-07T06:13:05.5558970Z [4666/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_observers.cpp.o 2025-09-07T06:13:05.6932500Z [4667/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_dropout.cpp.o 2025-09-07T06:13:05.7637870Z [4668/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp.o 2025-09-07T06:13:05.7763900Z [4669/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_exceptions.cpp.o 2025-09-07T06:13:05.8195310Z [4670/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/finalize.cpp.o 2025-09-07T06:13:05.8301330Z [4671/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/refine_tuple_types.cpp.o 2025-09-07T06:13:05.8494230Z [4672/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_expands.cpp.o 2025-09-07T06:13:05.8525260Z [4673/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_mutation.cpp.o 2025-09-07T06:13:06.0604560Z [4674/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_redundant_profiles.cpp.o 2025-09-07T06:13:06.0746150Z [4675/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/restore_mutation.cpp.o 2025-09-07T06:13:06.1011790Z [4676/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/replacement_of_old_operators.cpp.o 2025-09-07T06:13:06.2280400Z [4677/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/subgraph_rewrite.cpp.o 2025-09-07T06:13:06.2395870Z [4678/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/requires_grad_analysis.cpp.o 2025-09-07T06:13:06.3492550Z [4679/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/register_packed_params.cpp.o 2025-09-07T06:13:06.3549650Z [4680/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/shape_analysis.cpp.o 2025-09-07T06:13:06.3794190Z [4681/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_analysis.cpp.o 2025-09-07T06:13:06.3897980Z [4682/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_cache.cpp.o 2025-09-07T06:13:06.4981320Z [4683/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/specialize_autogradzero.cpp.o 2025-09-07T06:13:06.5854340Z [4684/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/memory_dag.cpp.o 2025-09-07T06:13:06.6870460Z [4685/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/op_registry.cpp.o 2025-09-07T06:13:06.7196570Z [4686/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp.o 2025-09-07T06:13:06.7801320Z [4687/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp.o 2025-09-07T06:13:06.8197880Z [4688/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/value_refinement_utils.cpp.o 2025-09-07T06:13:06.8596640Z [4689/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/tensorexpr_fuser.cpp.o 2025-09-07T06:13:06.8626580Z [4690/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/optimization_utils.cpp.o 2025-09-07T06:13:06.8839170Z [4691/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/subgraph_utils.cpp.o 2025-09-07T06:13:06.8844630Z [4692/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/utf8_decoding_ignore.cpp.o 2025-09-07T06:13:06.9389420Z [4693/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/update_graph_executor_opt.cpp.o 2025-09-07T06:13:07.0486540Z [4694/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/variadic_ops.cpp.o 2025-09-07T06:13:07.1204080Z [4695/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/instruction.cpp.o 2025-09-07T06:13:07.1667610Z [4696/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/argument_spec.cpp.o 2025-09-07T06:13:07.2248700Z [4697/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry_util.cpp.o 2025-09-07T06:13:07.2581870Z [4698/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/autodiff.cpp.o 2025-09-07T06:13:07.3145990Z [4699/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry.cpp.o 2025-09-07T06:13:07.4140060Z [4700/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_exception.cpp.o 2025-09-07T06:13:07.4748530Z [4701/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/xnnpack_rewrite.cpp.o 2025-09-07T06:13:07.5248420Z [4702/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/vulkan_rewrite.cpp.o 2025-09-07T06:13:07.5551090Z [4703/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp.o 2025-09-07T06:13:07.5986890Z [4704/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/logging.cpp.o 2025-09-07T06:13:07.6674930Z [4705/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/print_handler.cpp.o 2025-09-07T06:13:07.7966270Z [4706/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/graph_executor.cpp.o 2025-09-07T06:13:07.8399300Z [4707/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter.cpp.o 2025-09-07T06:13:07.8914570Z [4708/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/frame.cpp.o 2025-09-07T06:13:07.9407650Z [4709/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_trace.cpp.o 2025-09-07T06:13:07.9954570Z [4710/5254] Building C object caffe2/CMakeFiles/torch_cpu.dir/__/third_party/miniz-3.0.2/miniz.c.o 2025-09-07T06:13:08.0934790Z [4711/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/operator.cpp.o 2025-09-07T06:13:08.1416460Z [4712/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/istream_adapter.cc.o 2025-09-07T06:13:08.1518330Z [4713/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/script_profile.cpp.o 2025-09-07T06:13:08.2041350Z [4714/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/crc.cc.o 2025-09-07T06:13:08.2137080Z [4715/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/file_adapter.cc.o 2025-09-07T06:13:08.2155310Z [4716/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/inline_container.cc.o 2025-09-07T06:13:08.2413580Z [4717/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/read_adapter_interface.cc.o 2025-09-07T06:13:08.2640800Z [4718/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp.o 2025-09-07T06:13:08.2865130Z [4719/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_ops_utils.cpp.o 2025-09-07T06:13:08.3266780Z [4720/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_record.cpp.o 2025-09-07T06:13:08.3540420Z [4721/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/thread_pool_guard.cpp.o 2025-09-07T06:13:08.3843540Z [4722/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/string_utils.cc.o 2025-09-07T06:13:08.5053380Z [4723/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/pthreadpool-cpp.cc.o 2025-09-07T06:13:08.5205240Z [4724/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/proto_wrap.cc.o 2025-09-07T06:13:08.5375760Z [4725/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/ThreadPool.cc.o 2025-09-07T06:13:08.5382490Z [4726/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/perfkernels/embedding_lookup_idx.cc.o 2025-09-07T06:13:08.7152090Z [4727/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ViewFuncs.cpp.o 2025-09-07T06:13:08.9428830Z [4728/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/core/common.cc.o 2025-09-07T06:13:09.0797430Z [4729/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/Functions.cpp.o 2025-09-07T06:13:09.0980150Z [4730/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_0.cpp.o 2025-09-07T06:13:09.1392200Z [4731/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_0.cpp.o 2025-09-07T06:13:09.1634830Z [4732/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_1.cpp.o 2025-09-07T06:13:09.1746630Z [4733/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_2.cpp.o 2025-09-07T06:13:09.2628390Z [4734/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_3.cpp.o 2025-09-07T06:13:09.3393270Z [4735/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_4.cpp.o 2025-09-07T06:13:09.3579240Z [4736/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_1.cpp.o 2025-09-07T06:13:09.5111600Z [4737/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_3.cpp.o 2025-09-07T06:13:09.5214300Z [4738/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_2.cpp.o 2025-09-07T06:13:09.5519510Z [4739/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_4.cpp.o 2025-09-07T06:13:09.5773810Z [4740/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp.o 2025-09-07T06:13:09.6207760Z [4741/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp.o 2025-09-07T06:13:09.6767750Z [4742/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp.o 2025-09-07T06:13:09.6873660Z [4743/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.cpp.o 2025-09-07T06:13:09.7975190Z [4744/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp.o 2025-09-07T06:13:09.8284810Z [4745/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterLazy.cpp.o 2025-09-07T06:13:09.9392820Z [4746/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_meta.cpp.o 2025-09-07T06:13:09.9744510Z [4747/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd.cpp.o 2025-09-07T06:13:09.9855570Z [4748/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/anomaly_mode.cpp.o 2025-09-07T06:13:10.0024010Z [4749/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.cpp.o 2025-09-07T06:13:10.0757250Z [4750/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_not_implemented_fallback.cpp.o 2025-09-07T06:13:10.0977200Z [4751/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/cpp_hook.cpp.o 2025-09-07T06:13:10.2301310Z [4752/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/forward_grad.cpp.o 2025-09-07T06:13:10.2933790Z [4753/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/LazyNativeFunctions.cpp.o 2025-09-07T06:13:10.3489860Z [4754/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/engine.cpp.o 2025-09-07T06:13:10.3817660Z [4755/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/custom_function.cpp.o 2025-09-07T06:13:10.5403310Z [4756/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/utils.cpp.o 2025-09-07T06:13:10.6269130Z [4757/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/function.cpp.o 2025-09-07T06:13:10.6327490Z [4758/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_metadata.cpp.o 2025-09-07T06:13:10.6744390Z [4759/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/basic_ops.cpp.o 2025-09-07T06:13:10.6877310Z [4760/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/tensor.cpp.o 2025-09-07T06:13:10.7161930Z [4761/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/accumulate_grad.cpp.o 2025-09-07T06:13:10.7170110Z [4762/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/jit_decomp_interface.cpp.o 2025-09-07T06:13:10.7912540Z [4763/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_buffer.cpp.o 2025-09-07T06:13:10.8368080Z [4764/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_kineto.cpp.o 2025-09-07T06:13:10.9364690Z [4765/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/utils/warnings.cpp.o 2025-09-07T06:13:10.9885180Z [4766/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_legacy.cpp.o 2025-09-07T06:13:11.0019320Z [4767/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/record_function_ops.cpp.o 2025-09-07T06:13:11.1026200Z [4768/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable_info.cpp.o 2025-09-07T06:13:11.1307730Z [4769/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/dynamo/compiled_autograd.cpp.o 2025-09-07T06:13:11.1608760Z [4770/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/saved_variable.cpp.o 2025-09-07T06:13:11.2559610Z [4771/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_package/model_package_loader.cpp.o 2025-09-07T06:13:11.3411300Z [4772/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/mkldnn_tensor.cpp.o 2025-09-07T06:13:11.3856260Z [4773/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner.cpp.o 2025-09-07T06:13:11.3871990Z [4774/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/oss_proxy_executor.cpp.o 2025-09-07T06:13:11.4521920Z [4775/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.cpp.o 2025-09-07T06:13:11.4883010Z [4776/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable.cpp.o 2025-09-07T06:13:11.6497300Z [4777/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/tensor_converter.cpp.o 2025-09-07T06:13:11.6794560Z [4778/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_common.cpp.o 2025-09-07T06:13:11.7753790Z [4779/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_cpu.cpp.o 2025-09-07T06:13:11.7963580Z [4780/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_handler.cpp.o 2025-09-07T06:13:11.8082230Z [4781/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/object.cpp.o 2025-09-07T06:13:11.8429920Z [4782/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module.cpp.o 2025-09-07T06:13:11.9518580Z [4783/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/function_impl.cpp.o 2025-09-07T06:13:12.0275070Z [4784/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/inductor_ops.cpp.o 2025-09-07T06:13:12.0675810Z [4785/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_info.cpp.o 2025-09-07T06:13:12.0778690Z [4786/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_detail.cpp.o 2025-09-07T06:13:12.0888780Z [4787/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_interface.cpp.o 2025-09-07T06:13:12.1444430Z [4788/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_resolver.cpp.o 2025-09-07T06:13:12.4644580Z [4789/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/builtin_functions.cpp.o 2025-09-07T06:13:12.4749200Z [4790/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp.o 2025-09-07T06:13:12.5181420Z [4791/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/codegen.cpp.o 2025-09-07T06:13:12.5322720Z [4792/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/fallback.cpp.o 2025-09-07T06:13:12.5544030Z [4793/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/compiler.cpp.o 2025-09-07T06:13:12.5674190Z [4794/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/executor.cpp.o 2025-09-07T06:13:12.5782450Z [4795/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/edit_distance.cpp.o 2025-09-07T06:13:12.6243030Z [4796/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/interface.cpp.o 2025-09-07T06:13:12.6939530Z [4797/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/kernel_cache.cpp.o 2025-09-07T06:13:12.8427170Z [4798/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/name_mangler.cpp.o 2025-09-07T06:13:12.8501670Z [4799/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/convert_to_ssa.cpp.o 2025-09-07T06:13:12.8738700Z [4800/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/parser.cpp.o 2025-09-07T06:13:12.9532520Z [4801/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/inline_loop_condition.cpp.o 2025-09-07T06:13:12.9633420Z [4802/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/exit_transforms.cpp.o 2025-09-07T06:13:13.0040470Z [4803/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/script_type_parser.cpp.o 2025-09-07T06:13:13.0593970Z [4804/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_matching.cpp.o 2025-09-07T06:13:13.0984250Z [4805/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/ir_emitter.cpp.o 2025-09-07T06:13:13.2485530Z [4806/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/sugared_value.cpp.o 2025-09-07T06:13:13.2586730Z [4807/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/tracer.cpp.o 2025-09-07T06:13:13.2832570Z [4808/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/attributes.cpp.o 2025-09-07T06:13:13.2897530Z [4809/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/alias_analysis.cpp.o 2025-09-07T06:13:13.3099050Z [4810/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/versioned_symbols.cpp.o 2025-09-07T06:13:13.3567870Z [4811/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/graph_utils.cpp.o 2025-09-07T06:13:13.4492690Z [4812/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/ir.cpp.o 2025-09-07T06:13:13.5603970Z [4813/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/irparser.cpp.o 2025-09-07T06:13:13.5662460Z [4814/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/node_hashing.cpp.o 2025-09-07T06:13:13.7108690Z [4815/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/scope.cpp.o 2025-09-07T06:13:13.7226720Z [4816/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_opt_limit.cpp.o 2025-09-07T06:13:13.7302500Z [4817/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/subgraph_matcher.cpp.o 2025-09-07T06:13:13.7325340Z [4818/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/type_hashing.cpp.o 2025-09-07T06:13:13.7730430Z [4819/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/constants.cpp.o 2025-09-07T06:13:13.8216880Z [4820/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_log.cpp.o 2025-09-07T06:13:13.8845620Z [4821/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/function.cpp.o 2025-09-07T06:13:13.9006520Z [4822/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import.cpp.o 2025-09-07T06:13:14.0926800Z [4823/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp.o 2025-09-07T06:13:14.1298550Z [4824/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp.o 2025-09-07T06:13:14.1942550Z [4825/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/backend.cpp.o 2025-09-07T06:13:14.2578290Z [4826/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/module.cpp.o 2025-09-07T06:13:14.2680420Z [4827/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/registry.cpp.o 2025-09-07T06:13:14.2749860Z [4828/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/interpreter.cpp.o 2025-09-07T06:13:14.3050420Z [4829/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/observer.cpp.o 2025-09-07T06:13:14.3411490Z [4830/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/context.cpp.o 2025-09-07T06:13:14.4013060Z [4831/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/flatbuffer_loader.cpp.o 2025-09-07T06:13:14.5403630Z [4832/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/aot_compiler.cpp.o 2025-09-07T06:13:14.5735640Z [4833/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_bytecode.cpp.o 2025-09-07T06:13:14.6056470Z [4834/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_operators.cpp.o 2025-09-07T06:13:14.6382050Z [4835/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/prim_ops_registery.cpp.o 2025-09-07T06:13:14.6589720Z [4836/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/quantization.cpp.o 2025-09-07T06:13:14.7110280Z [4837/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders.cpp.o 2025-09-07T06:13:14.8127380Z [4838/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/register_ops_common_utils.cpp.o 2025-09-07T06:13:14.8607360Z [4839/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/upgrader_mobile.cpp.o 2025-09-07T06:13:14.9657830Z [4840/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/promoted_prim_ops.cpp.o 2025-09-07T06:13:15.0013120Z [4841/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_c10_ops.cpp.o 2025-09-07T06:13:15.0136120Z [4842/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/check_alias_annotation.cpp.o 2025-09-07T06:13:15.2010050Z [4843/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/ModelRunner.cpp.o 2025-09-07T06:13:15.2376990Z [4844/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/autograd.cpp.o 2025-09-07T06:13:15.2973240Z [4845/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphSignature.cpp.o 2025-09-07T06:13:15.3186850Z [4846/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphPasses.cpp.o 2025-09-07T06:13:15.3550380Z [4847/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/Graph.cpp.o 2025-09-07T06:13:15.4166910Z [4848/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp.o 2025-09-07T06:13:15.4338460Z [4849/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops.cpp.o 2025-09-07T06:13:15.5249770Z [4850/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/TensorMeta.cpp.o 2025-09-07T06:13:15.5750510Z [4851/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_special_ops.cpp.o 2025-09-07T06:13:15.5953550Z [4852/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Placement.cpp.o 2025-09-07T06:13:15.6730290Z [4853/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/Serialization.cpp.o 2025-09-07T06:13:15.6853640Z [4854/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphUtils.cpp.o 2025-09-07T06:13:15.7782050Z [4855/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/DelegateExecutor.cpp.o 2025-09-07T06:13:15.7902390Z [4856/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ExecutionPlanner.cpp.o 2025-09-07T06:13:15.8645520Z [4857/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ExecutionFrame.cpp.o 2025-09-07T06:13:15.8715720Z [4858/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/PlacementUtils.cpp.o 2025-09-07T06:13:15.9119910Z [4859/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/GraphExecutorBase.cpp.o 2025-09-07T06:13:15.9215400Z [4860/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Executor.cpp.o 2025-09-07T06:13:16.0017580Z [4861/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ConstantFolder.cpp.o 2025-09-07T06:13:16.0436250Z [4862/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/OpKernel.cpp.o 2025-09-07T06:13:16.0971940Z [4863/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/common/FileUtil.cpp.o 2025-09-07T06:13:16.1152170Z [4864/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/SerialGraphExecutor.cpp.o 2025-09-07T06:13:16.2298530Z [4865/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/FunctionSchema.cpp.o 2025-09-07T06:13:16.2382820Z [4866/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Weights.cpp.o 2025-09-07T06:13:16.2950220Z [4867/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/Bump.cpp.o 2025-09-07T06:13:16.3456400Z [4868/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/GreedyBySize.cpp.o 2025-09-07T06:13:16.3613950Z [4869/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/detail/ITree.cpp.o 2025-09-07T06:13:16.4505800Z [4870/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/AutoFunctionalizeKernel.cpp.o 2025-09-07T06:13:16.4706160Z [4871/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/C10Kernel.cpp.o 2025-09-07T06:13:16.4808920Z [4872/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/HigherOrderKernel.cpp.o 2025-09-07T06:13:16.5472320Z [4873/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/DisjointStorageGroups.cpp.o 2025-09-07T06:13:16.6561100Z [4874/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ParallelGraphExecutor.cpp.o 2025-09-07T06:13:16.6755230Z [4875/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/CallTorchBindKernel.cpp.o 2025-09-07T06:13:16.7519410Z [4876/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/LayoutPlanner.cpp.o 2025-09-07T06:13:16.7951000Z [4877/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/AliasAnalyzer.cpp.o 2025-09-07T06:13:16.9291290Z [4878/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/LayoutManager.cpp.o 2025-09-07T06:13:17.0006240Z [4879/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/passes/pass_manager/GraphPasses.cpp.o 2025-09-07T06:13:17.1143640Z [4880/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/KernelFactory.cpp.o 2025-09-07T06:13:17.1472180Z [4881/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/PrimKernelRegistry.cpp.o 2025-09-07T06:13:17.1492070Z [4882/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/TritonKernel.cpp.o 2025-09-07T06:13:17.3065300Z [4883/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/NativeKernels.cpp.o 2025-09-07T06:13:17.3191710Z [4884/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/passes/SubgraphRewriter.cpp.o 2025-09-07T06:13:17.4271540Z [4885/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/passes/pass_manager/PassManager.cpp.o 2025-09-07T06:13:17.4593140Z [4886/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/triton/CpuTritonKernelManager.cpp.o 2025-09-07T06:13:17.5653690Z [4887/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp.o 2025-09-07T06:13:17.5674730Z [4888/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/dynamic_ir.cpp.o 2025-09-07T06:13:17.5865080Z [4889/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/config.cpp.o 2025-09-07T06:13:17.6172990Z [4890/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/debug_info.cpp.o 2025-09-07T06:13:17.7559690Z [4891/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp.o 2025-09-07T06:13:17.8224250Z [4892/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/KernelRegistry.cpp.o 2025-09-07T06:13:17.8427300Z [4893/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/KernelHandlerRegistry.cpp.o 2025-09-07T06:13:17.9095210Z [4894/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/device_data.cpp.o 2025-09-07T06:13:17.9357660Z [4895/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/generic.cpp.o 2025-09-07T06:13:17.9724110Z [4896/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp.o 2025-09-07T06:13:18.0367890Z [4897/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp.o 2025-09-07T06:13:18.0676610Z [4898/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp.o 2025-09-07T06:13:18.2376970Z [4899/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp.o 2025-09-07T06:13:18.2506300Z [4900/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node.cpp.o 2025-09-07T06:13:18.2769200Z [4901/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp.o 2025-09-07T06:13:18.3845310Z [4902/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/export_data.cpp.o 2025-09-07T06:13:18.5033650Z [4903/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_native_functions.cpp.o 2025-09-07T06:13:18.5447000Z [4904/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp.o 2025-09-07T06:13:18.5934140Z [4905/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import_data.cpp.o 2025-09-07T06:13:18.6481870Z [4906/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/out_types.cpp.o 2025-09-07T06:13:18.6794070Z [4907/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/optim/sgd.cpp.o 2025-09-07T06:13:18.8191540Z [4908/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/sequential.cpp.o 2025-09-07T06:13:18.8369310Z [4909/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/random.cpp.o 2025-09-07T06:13:18.8620300Z [4910/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/TraceTypeManual.cpp.o 2025-09-07T06:13:18.9948220Z [4911/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport.cpp.o 2025-09-07T06:13:19.0149750Z [4912/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/jit.cpp.o 2025-09-07T06:13:19.1897550Z [4913/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/flatbuffer_serializer.cpp.o 2025-09-07T06:13:19.2100360Z [4914/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/FunctionsManual.cpp.o 2025-09-07T06:13:19.2212560Z [4915/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport_manager.cpp.o 2025-09-07T06:13:19.3016390Z [4916/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/onnx.cpp.o 2025-09-07T06:13:19.3915920Z [4917/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_bytecode.cpp.o 2025-09-07T06:13:19.4555010Z [4918/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/VariableTypeManual.cpp.o 2025-09-07T06:13:19.4668500Z [4919/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module_save.cpp.o 2025-09-07T06:13:19.4913610Z [4920/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Backoff.cpp.o 2025-09-07T06:13:19.5702930Z [4921/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export.cpp.o 2025-09-07T06:13:19.5861970Z [4922/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/byte_order.cpp.o 2025-09-07T06:13:19.7083160Z [4923/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_module.cpp.o 2025-09-07T06:13:19.7386270Z [4924/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp.o 2025-09-07T06:13:19.7688930Z [4925/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/FileStore.cpp.o 2025-09-07T06:13:19.9624460Z [4926/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Backend.cpp.o 2025-09-07T06:13:19.9835960Z [4927/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ParamCommsUtils.cpp.o 2025-09-07T06:13:20.0633250Z [4928/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/PrefixStore.cpp.o 2025-09-07T06:13:20.1087260Z [4929/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroupMPI.cpp.o 2025-09-07T06:13:20.1540000Z [4930/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroupWrapper.cpp.o 2025-09-07T06:13:20.1707110Z [4931/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroupGloo.cpp.o 2025-09-07T06:13:20.1838600Z [4932/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/GlooDeviceFactory.cpp.o 2025-09-07T06:13:20.2249070Z [4933/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Functional.cpp.o 2025-09-07T06:13:20.2653080Z [4934/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/GroupRegistry.cpp.o 2025-09-07T06:13:20.2950020Z [4935/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Ops.cpp.o 2025-09-07T06:13:20.3333460Z [4936/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/FlightRecorder.cpp.o 2025-09-07T06:13:20.5594370Z [4937/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Store.cpp.o 2025-09-07T06:13:20.5821390Z [4938/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Types.cpp.o 2025-09-07T06:13:20.6061510Z [4939/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/TCPStoreLibUvBackend.cpp.o 2025-09-07T06:13:20.7446520Z [4940/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/ProcessGroup.cpp.o 2025-09-07T06:13:20.7547690Z [4941/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/control_plane/Handlers.cpp.o 2025-09-07T06:13:20.8846260Z [4942/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/TCPStore.cpp.o 2025-09-07T06:13:20.9066480Z [4943/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/TCPStoreBackend.cpp.o 2025-09-07T06:13:20.9171430Z [4944/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Utils.cpp.o 2025-09-07T06:13:20.9182840Z [4945/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/debug.cpp.o 2025-09-07T06:13:20.9191740Z [4946/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/cuda/StreamBlock.cpp.o 2025-09-07T06:13:21.0188390Z [4947/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/Work.cpp.o 2025-09-07T06:13:21.0320400Z [4948/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.cpp.o 2025-09-07T06:13:21.1449480Z [4949/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/comm.cpp.o 2025-09-07T06:13:21.1721030Z [4950/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/control_plane/WorkerServer.cpp.o 2025-09-07T06:13:21.2125530Z [4951/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/logging.cpp.o 2025-09-07T06:13:21.3189120Z [4952/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/sequence_num.cpp.o 2025-09-07T06:13:21.4439280Z [4953/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/socket.cpp.o 2025-09-07T06:13:21.5792100Z [4954/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/default_comm_hooks.cpp.o 2025-09-07T06:13:21.6811180Z [4955/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/quantization/quantization.cpp.o 2025-09-07T06:13:21.7195810Z [4956/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/reducer.cpp.o 2025-09-07T06:13:21.7285260Z [4957/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/logger.cpp.o 2025-09-07T06:13:21.8237020Z [4958/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.cpp.o 2025-09-07T06:13:21.8499110Z [4959/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/slice_indices_adjust.cpp.o 2025-09-07T06:13:21.8670130Z [4960/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGuardImpl.mm.o 2025-09-07T06:13:21.9031270Z [4961/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.cpp.o 2025-09-07T06:13:21.9593550Z [4962/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/distributed/autograd/utils.cpp.o 2025-09-07T06:13:21.9977050Z [4963/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/fusion.cpp.o 2025-09-07T06:13:22.2212570Z [4964/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp.o 2025-09-07T06:13:22.2561770Z [4965/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/impl.cpp.o 2025-09-07T06:13:22.2807830Z [4966/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSHooks.mm.o 2025-09-07T06:13:22.2889010Z [4967/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/memory_planner.cpp.o 2025-09-07T06:13:22.4408560Z [4968/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp.o 2025-09-07T06:13:22.6209990Z [4969/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/passes.cpp.o 2025-09-07T06:13:22.6311600Z [4970/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_script.cpp.o 2025-09-07T06:13:22.6746790Z [4971/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/native_ops.cpp.o 2025-09-07T06:13:22.7053270Z [4972/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/generated_ops.cpp.o 2025-09-07T06:13:22.7094870Z [4973/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry.cpp.o 2025-09-07T06:13:22.7127570Z [4974/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp.o 2025-09-07T06:13:22.7617490Z [4975/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/ops.cpp.o 2025-09-07T06:13:22.9388840Z [4976/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/te_wrapper.cpp.o 2025-09-07T06:13:23.0227740Z [4977/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_export_helpers.cpp.o 2025-09-07T06:13:23.0629380Z [4978/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/vararg_functions.cpp.o 2025-09-07T06:13:23.0828550Z [4979/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp.o 2025-09-07T06:13:23.1926010Z [4980/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_read.cpp.o 2025-09-07T06:13:23.2159320Z [4981/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_source.cpp.o 2025-09-07T06:13:23.2434980Z [4982/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickle.cpp.o 2025-09-07T06:13:23.3493720Z [4983/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import.cpp.o 2025-09-07T06:13:23.4563220Z [4984/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/python_print.cpp.o 2025-09-07T06:13:23.5251230Z [4985/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/type_name_uniquer.cpp.o 2025-09-07T06:13:23.6436220Z [4986/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler.cpp.o 2025-09-07T06:13:23.6840640Z [4987/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/source_range_serialization.cpp.o 2025-09-07T06:13:23.7269780Z [4988/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler_helper.cpp.o 2025-09-07T06:13:23.7893590Z [4989/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/block_codegen.cpp.o 2025-09-07T06:13:23.9000710Z [4990/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/unpickler.cpp.o 2025-09-07T06:13:23.9309000Z [4991/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_inference.cpp.o 2025-09-07T06:13:24.0532930Z [4992/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_overlap.cpp.o 2025-09-07T06:13:24.2004910Z [4993/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/codegen.cpp.o 2025-09-07T06:13:24.2504980Z [4994/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/cpp_codegen.cpp.o 2025-09-07T06:13:24.3187140Z [4995/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/eval.cpp.o 2025-09-07T06:13:24.3305920Z [4996/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/expr.cpp.o 2025-09-07T06:13:24.3316640Z [4997/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp.o 2025-09-07T06:13:24.3652360Z [4998/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_registry.cpp.o 2025-09-07T06:13:24.4325270Z [4999/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions.cpp.o 2025-09-07T06:13:24.4719860Z [5000/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_core.cpp.o 2025-09-07T06:13:24.5193650Z [5001/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp.o 2025-09-07T06:13:24.6919070Z [5002/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/hash_provider.cpp.o 2025-09-07T06:13:24.7059010Z [5003/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir.cpp.o 2025-09-07T06:13:24.8208070Z [5004/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/graph_opt.cpp.o 2025-09-07T06:13:24.8379970Z [5005/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_codegen.cpp.o 2025-09-07T06:13:24.8647330Z [5006/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_jit.cpp.o 2025-09-07T06:13:24.9977660Z [5007/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_cloner.cpp.o 2025-09-07T06:13:25.0313980Z [5008/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_printer.cpp.o 2025-09-07T06:13:25.0774170Z [5009/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_mutator.cpp.o 2025-09-07T06:13:25.1929100Z [5010/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_simplifier.cpp.o 2025-09-07T06:13:25.2280710Z [5011/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_verifier.cpp.o 2025-09-07T06:13:25.3485830Z [5012/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_visitor.cpp.o 2025-09-07T06:13:25.3886670Z [5013/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/kernel.cpp.o 2025-09-07T06:13:25.6156980Z [5014/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest.cpp.o 2025-09-07T06:13:25.6513700Z [5015/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp.o 2025-09-07T06:13:25.6646990Z [5016/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp.o 2025-09-07T06:13:25.7399480Z [5017/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/matmul.cpp.o 2025-09-07T06:13:25.7673860Z [5018/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/lowerings.cpp.o 2025-09-07T06:13:25.7973880Z [5019/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/conv2d.cpp.o 2025-09-07T06:13:25.9114080Z [5020/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/norm.cpp.o 2025-09-07T06:13:25.9339760Z [5021/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/misc.cpp.o 2025-09-07T06:13:26.0849820Z [5022/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/reduction.cpp.o 2025-09-07T06:13:26.1003650Z [5023/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/types.cpp.o 2025-09-07T06:13:26.2543780Z [5024/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/pointwise.cpp.o 2025-09-07T06:13:26.2646310Z [5025/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/tensor.cpp.o 2025-09-07T06:13:26.3416970Z [5026/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/unique_name_manager.cpp.o 2025-09-07T06:13:26.4038110Z [5027/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/quantization.cpp.o 2025-09-07T06:13:26.4516740Z [5028/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/softmax.cpp.o 2025-09-07T06:13:26.4907020Z [5029/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/reduction.cpp.o 2025-09-07T06:13:26.5041790Z [5030/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/file_check.cpp.o 2025-09-07T06:13:26.5184740Z [5031/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/hooks_for_testing.cpp.o 2025-09-07T06:13:26.6041710Z [5032/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_device.cpp.o 2025-09-07T06:13:26.6197990Z [5033/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/registerizer.cpp.o 2025-09-07T06:13:26.6266840Z [5034/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/config.cpp.o 2025-09-07T06:13:26.7582020Z [5035/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/lowering_context.cpp.o 2025-09-07T06:13:26.8567260Z [5036/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/hash.cpp.o 2025-09-07T06:13:26.8794700Z [5037/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_interface.cpp.o 2025-09-07T06:13:26.8879490Z [5038/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/debug_util.cpp.o 2025-09-07T06:13:26.9410880Z [5039/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir.cpp.o 2025-09-07T06:13:26.9679660Z [5040/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/helpers.cpp.o 2025-09-07T06:13:27.0102480Z [5041/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_metadata.cpp.o 2025-09-07T06:13:27.0548770Z [5042/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_dump_util.cpp.o 2025-09-07T06:13:27.1259370Z [5043/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/multi_wait.cpp.o 2025-09-07T06:13:27.1573130Z [5044/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/lazy_graph_executor.cpp.o 2025-09-07T06:13:27.1601010Z [5045/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_util.cpp.o 2025-09-07T06:13:27.2231040Z [5046/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/metrics.cpp.o 2025-09-07T06:13:27.2438500Z [5047/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/permutation_util.cpp.o 2025-09-07T06:13:27.3496770Z [5048/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp.o 2025-09-07T06:13:27.4304430Z [5049/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/thread_pool.cpp.o 2025-09-07T06:13:27.4323400Z [5050/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/utils.cpp.o 2025-09-07T06:13:27.4424420Z [5051/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape.cpp.o 2025-09-07T06:13:27.5185950Z [5052/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor.cpp.o 2025-09-07T06:13:27.5690570Z [5053/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_util.cpp.o 2025-09-07T06:13:27.5753360Z [5054/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_impl.cpp.o 2025-09-07T06:13:27.6047020Z [5055/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/events.cpp.o 2025-09-07T06:13:27.6105200Z [5056/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/counters.cpp.o 2025-09-07T06:13:27.7667330Z [5057/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/trie.cpp.o 2025-09-07T06:13:27.8509790Z [5058/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/mtia/profiler/MTIAMemoryProfiler.cpp.o 2025-09-07T06:13:27.8886840Z [5059/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape_inference.cpp.o 2025-09-07T06:13:27.8905000Z [5060/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/collection.cpp.o 2025-09-07T06:13:27.8996750Z [5061/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/combined_traceback.cpp.o 2025-09-07T06:13:27.9205590Z [5062/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/data_flow.cpp.o 2025-09-07T06:13:28.0273650Z [5063/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_client_interface.cpp.o 2025-09-07T06:13:28.0340020Z [5064/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_shim.cpp.o 2025-09-07T06:13:28.0493820Z [5065/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/perf.cpp.o 2025-09-07T06:13:28.0685570Z [5066/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/python_tracer.cpp.o 2025-09-07T06:13:28.1635670Z [5067/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/observer.cpp.o 2025-09-07T06:13:28.2021770Z [5068/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind_fb.cpp.o 2025-09-07T06:13:28.2858970Z [5069/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/privateuse1_observer.cpp.o 2025-09-07T06:13:28.2953860Z [5070/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/vulkan.cpp.o 2025-09-07T06:13:28.3200500Z [5071/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/nvtx_observer.cpp.o 2025-09-07T06:13:28.3235090Z [5072/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/stubs/base.cpp.o 2025-09-07T06:13:28.3408950Z [5073/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/itt_observer.cpp.o 2025-09-07T06:13:28.3590330Z [5074/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind.cpp.o 2025-09-07T06:13:28.3900020Z [5075/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/execution_trace_observer.cpp.o 2025-09-07T06:13:28.5030350Z [5076/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/cpp_stacktraces.cpp.o 2025-09-07T06:13:28.5240420Z [5077/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/util.cpp.o 2025-09-07T06:13:28.7094230Z [5078/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/schema_info.cpp.o 2025-09-07T06:13:28.7273170Z [5079/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/variadic.cpp.o 2025-09-07T06:13:28.7701370Z [5080/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_graph.cpp.o 2025-09-07T06:13:28.8449860Z [5081/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/transformer.cpp.o 2025-09-07T06:13:28.9362110Z [5082/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_inplace_ops.cpp.o 2025-09-07T06:13:29.0061400Z [5083/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/tensor_flatten.cpp.o 2025-09-07T06:13:29.0424780Z [5084/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/cuda/interface.cpp.o 2025-09-07T06:13:29.0442390Z [5085/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/sdp_utils_cpp.cpp.o 2025-09-07T06:13:29.0646260Z [5086/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/autocast.cpp.o 2025-09-07T06:13:29.0749290Z [5087/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/utils/Factory.cpp.o 2025-09-07T06:13:29.0855940Z [5088/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/AveragePooling.cpp.o 2025-09-07T06:13:29.0900960Z [5089/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Activation.cpp.o 2025-09-07T06:13:29.1765830Z [5090/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Shim.cpp.o 2025-09-07T06:13:29.2127030Z [5091/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/ChannelShuffle.cpp.o 2025-09-07T06:13:29.2454110Z [5092/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Init.cpp.o 2025-09-07T06:13:29.4294350Z [5093/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Convolution.cpp.o 2025-09-07T06:13:29.4391980Z [5094/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Linear.cpp.o 2025-09-07T06:13:29.4495270Z [5095/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/MaxPooling.cpp.o 2025-09-07T06:13:29.4625810Z [5096/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/OpContext.cpp.o 2025-09-07T06:13:29.5783400Z [5097/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/RegisterOpContextClass.cpp.o 2025-09-07T06:13:29.6116440Z [5098/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CompositeViewCopyKernels.cpp.o 2025-09-07T06:13:29.7140930Z [5099/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_1.cpp.o 2025-09-07T06:13:29.7267570Z [5100/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Functions.cpp.o 2025-09-07T06:13:29.9048880Z [5101/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_2.cpp.o 2025-09-07T06:13:29.9149140Z [5102/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_0.cpp.o 2025-09-07T06:13:29.9161530Z [5103/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterBackendSelect.cpp.o 2025-09-07T06:13:29.9364870Z [5104/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_3.cpp.o 2025-09-07T06:13:30.0342630Z [5105/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_4.cpp.o 2025-09-07T06:13:30.1122200Z [5106/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_1.cpp.o 2025-09-07T06:13:30.1323190Z [5107/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_0.cpp.o 2025-09-07T06:13:30.1439210Z [5108/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_2.cpp.o 2025-09-07T06:13:30.3001990Z [5109/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutograd_0.cpp.o 2025-09-07T06:13:30.3152340Z [5110/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_3.cpp.o 2025-09-07T06:13:30.3294890Z [5111/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutogradNestedTensor_0.cpp.o 2025-09-07T06:13:30.5429340Z [5112/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutogradNonFunctional_0.cpp.o 2025-09-07T06:13:30.5513450Z [5113/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutograd_0.cpp.o 2025-09-07T06:13:30.5668300Z [5114/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_2.cpp.o 2025-09-07T06:13:30.5872760Z [5115/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMeta_0.cpp.o 2025-09-07T06:13:30.6158890Z [5116/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_0.cpp.o 2025-09-07T06:13:30.6458280Z [5117/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_1.cpp.o 2025-09-07T06:13:30.7216600Z [5118/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_3.cpp.o 2025-09-07T06:13:30.8734730Z [5119/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMkldnnCPU_0.cpp.o 2025-09-07T06:13:30.9188980Z [5120/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorCPU_0.cpp.o 2025-09-07T06:13:30.9299680Z [5121/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorHPU_0.cpp.o 2025-09-07T06:13:30.9422900Z [5122/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMPS_0.cpp.o 2025-09-07T06:13:30.9529800Z [5123/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorMeta_0.cpp.o 2025-09-07T06:13:30.9734780Z [5124/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorXPU_0.cpp.o 2025-09-07T06:13:31.0303210Z [5125/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedCPU_0.cpp.o 2025-09-07T06:13:31.0505130Z [5126/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedMeta_0.cpp.o 2025-09-07T06:13:31.1959270Z [5127/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSchema.cpp.o 2025-09-07T06:13:31.2391060Z [5128/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCPU_0.cpp.o 2025-09-07T06:13:31.3607150Z [5129/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrXPU_0.cpp.o 2025-09-07T06:13:31.3634590Z [5130/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrMPS_0.cpp.o 2025-09-07T06:13:31.3740060Z [5131/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMeta_0.cpp.o 2025-09-07T06:13:31.3932910Z [5132/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrCPU_0.cpp.o 2025-09-07T06:13:31.3993810Z [5133/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrMeta_0.cpp.o 2025-09-07T06:13:31.4002540Z [5134/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMPS_0.cpp.o 2025-09-07T06:13:31.4898990Z [5135/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseXPU_0.cpp.o 2025-09-07T06:13:31.5714360Z [5136/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenOpList.cpp.o 2025-09-07T06:13:31.6015070Z [5137/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterZeroTensor_0.cpp.o 2025-09-07T06:13:31.6026220Z [5138/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPU_add.cpp.o 2025-09-07T06:13:31.7436520Z [5139/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_model_loader.cpp.o 2025-09-07T06:13:31.7741070Z [5140/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_wrapper.cpp.o 2025-09-07T06:13:31.7844090Z [5141/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TensorMethods.cpp.o 2025-09-07T06:13:31.7957760Z [5142/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/QTensorImpl.cpp.o 2025-09-07T06:13:31.9321700Z [5143/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPUKernel_add.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.0366150Z [5144/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_bind.cpp.o 2025-09-07T06:13:32.0603590Z [5145/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/Quantizer.cpp.o 2025-09-07T06:13:32.0807110Z [5146/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_register.cpp.o 2025-09-07T06:13:32.0910600Z [5147/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/spherical_bessel_j0.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.1565970Z [5148/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k1.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.1838090Z [5149/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k0.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.2578240Z [5150/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/kernels/QuantizedOpKernels.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.3132510Z [5151/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/layer_norm_kernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.3663050Z [5152/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int8mm_kernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.3865630Z [5153/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int4mm_kernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.4225140Z [5154/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/airy_ai.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.4359020Z [5155/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/WeightNormKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.4755030Z [5156/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/group_norm_kernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.5565060Z [5157/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/batch_norm_kernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.5740980Z [5158/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Unfold2d.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.7525640Z [5159/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.7772860Z [5160/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SparseFactories.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.7828240Z [5161/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.7959190Z [5162/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/StackKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.7994040Z [5163/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SumKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.8148890Z [5164/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.8306780Z [5165/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:32.8884780Z [5166/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.0518870Z [5167/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SortingKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.0770630Z [5168/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.1618160Z [5169/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RenormKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.1781310Z [5170/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.2751070Z [5171/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SampledAddmmKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.3061220Z [5172/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.3449220Z [5173/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.4769020Z [5174/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PowKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.5094450Z [5175/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.5269450Z [5176/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReshape.mm.o 2025-09-07T06:13:33.5894500Z [5177/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.6986240Z [5178/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.7246710Z [5179/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.7265140Z [5180/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PaddingKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.7950900Z [5181/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PixelShuffleKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.8619560Z [5182/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.9078780Z [5183/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReduce.mm.o 2025-09-07T06:13:33.9181950Z [5184/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxUnpoolKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:33.9799140Z [5185/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPooling.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.0578600Z [5186/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MultinomialKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.0868310Z [5187/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LerpKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.1464440Z [5188/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalSoftmax.mm.o 2025-09-07T06:13:34.1864550Z [5189/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/IndexKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.2008070Z [5190/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPoolKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.2335150Z [5191/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.3076900Z [5192/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedSGDKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.3513710Z [5193/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FillKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.3788950Z [5194/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/HistogramKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.4097530Z [5195/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdamKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.4099770Z [5196/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.4933370Z [5197/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.5201470Z [5198/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdagradKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.6797540Z [5199/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.7016310Z [5200/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CrossKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.7344200Z [5201/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistributionKernels.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.7744310Z [5202/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FlashAttentionKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.7962940Z [5203/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DepthwiseConvKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.8025530Z [5204/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CatKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.8273970Z [5205/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ComplexKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.9393900Z [5206/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ChannelShuffleKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:34.9553210Z [5207/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BlasKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:35.0979140Z [5208/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/kleidiai/kai_ukernel_interface.cpp.o 2025-09-07T06:13:35.1138910Z [5209/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AvgPoolKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:35.1392440Z [5210/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CopyKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:35.1439960Z [5211/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o 2025-09-07T06:13:35.1860590Z [5212/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AmpGradScalerKernels.cpp.DEFAULT.cpp.o 2025-09-07T06:13:35.2181550Z [5213/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:35.2214420Z [5214/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:35.2286320Z [5215/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.o 2025-09-07T06:13:35.3248160Z [5216/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/metal/Context.cpp.o 2025-09-07T06:13:35.4209670Z [5217/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/kleidiai/kai_kernels.cpp.o 2025-09-07T06:13:35.4845590Z [5218/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/vulkan/Context.cpp.o 2025-09-07T06:13:35.4944280Z [5219/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalConvParams.mm.o 2025-09-07T06:13:35.5849720Z [5220/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalGuardImpl.cpp.o 2025-09-07T06:13:35.7220530Z [5221/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalCommandBuffer.mm.o 2025-09-07T06:13:35.8548900Z [5222/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalContext.mm.o 2025-09-07T06:13:35.9574290Z [5223/5254] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalPrepackOpRegister.cpp.o 2025-09-07T06:13:35.9676960Z [5224/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNClampOp.mm.o 2025-09-07T06:13:36.0010160Z [5225/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImage+Tensor.mm.o 2025-09-07T06:13:36.1773470Z [5226/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorImplStorage.mm.o 2025-09-07T06:13:36.2011860Z [5227/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorUtils.mm.o 2025-09-07T06:13:36.2634990Z [5228/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNUtils.mm.o 2025-09-07T06:13:36.2856630Z [5229/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalAten.mm.o 2025-09-07T06:13:36.4516590Z [5230/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNNeuronOp.mm.o 2025-09-07T06:13:36.6434500Z [5231/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNConvOp.mm.o 2025-09-07T06:13:36.6633710Z [5232/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageWrapper.mm.o 2025-09-07T06:13:36.8284330Z [5233/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalBinaryElementwise.mm.o 2025-09-07T06:13:36.8753770Z [5234/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.mm.o 2025-09-07T06:13:36.9252260Z [5235/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalClamp.mm.o 2025-09-07T06:13:37.0766410Z [5236/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalChunk.mm.o 2025-09-07T06:13:37.1021840Z [5237/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageUtils.mm.o 2025-09-07T06:13:37.1740450Z [5238/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalAddmm.mm.o 2025-09-07T06:13:37.3247790Z [5239/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConcat.mm.o 2025-09-07T06:13:37.4020740Z [5240/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalCopy.mm.o 2025-09-07T06:13:37.4973440Z [5241/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardshrink.mm.o 2025-09-07T06:13:37.5339560Z [5242/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardswish.mm.o 2025-09-07T06:13:37.5511330Z [5243/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalLeakyReLU.mm.o 2025-09-07T06:13:37.5649420Z [5244/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConvolution.mm.o 2025-09-07T06:13:37.5673090Z [5245/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalNeurons.mm.o 2025-09-07T06:13:37.6791750Z [5246/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPadding.mm.o 2025-09-07T06:13:37.7336650Z [5247/5254] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPooling.mm.o 2025-09-07T06:13:38.5433100Z [5248/5254] Linking CXX shared library lib/libtorch_cpu.dylib 2025-09-07T06:13:38.5433550Z ld: warning: ignoring duplicate libraries: 'lib/libcpuinfo.a', 'lib/libnnpack.a', 'lib/libpthreadpool.a' 2025-09-07T06:13:38.6675040Z [5249/5254] Linking CXX shared library lib/libtorch.dylib 2025-09-07T06:13:38.6706200Z [5250/5254] Linking CXX shared library lib/libshm.dylib 2025-09-07T06:13:38.7413600Z [5251/5254] Linking CXX executable bin/torch_shm_manager 2025-09-07T06:13:38.8761480Z [5252/5254] Linking CXX shared library lib/libtorch_python.dylib 2025-09-07T06:13:38.9804990Z [5253/5254] Linking CXX shared module functorch/functorch.so 2025-09-07T06:13:38.9805290Z [5253/5254] Install the project... 2025-09-07T06:13:38.9867640Z -- Install configuration: "Release" 2025-09-07T06:13:44.4098720Z -- Checkout nccl release tag: v2.27.5-1 2025-09-07T06:13:44.4098950Z running bdist_wheel 2025-09-07T06:13:45.6134190Z running build 2025-09-07T06:13:45.6134340Z running build_py 2025-09-07T06:13:45.6165500Z creating build/lib.macosx-14.0-arm64-cpython-312 2025-09-07T06:13:45.6166070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6166840Z copying torch/_storage_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6175020Z copying torch/_meta_registrations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6217200Z copying torch/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6218250Z copying torch/library.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6238560Z copying torch/_jit_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6261880Z copying torch/_thread_safe_fork.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6262440Z copying torch/_custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6270890Z copying torch/return_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6278380Z copying torch/_size_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6285750Z copying torch/_torch_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6289110Z copying torch/_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6309880Z copying torch/_utils_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6310770Z copying torch/quasirandom.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6319060Z copying torch/torch_version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6325990Z copying torch/_VF.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6333380Z copying torch/_streambase.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6340790Z copying torch/_tensor_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6342520Z copying torch/_weights_only_unpickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6358260Z copying torch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6393520Z copying torch/overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6422310Z copying torch/_namedtensor_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6429140Z copying torch/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6436580Z copying torch/_linalg_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6443920Z copying torch/__config__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6451430Z copying torch/_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6473870Z copying torch/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6481670Z copying torch/hub.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6496970Z copying torch/_tensor_str.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6511360Z copying torch/_sources.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6518810Z copying torch/_vmap_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6526840Z copying torch/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6554350Z copying torch/_lowrank.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6562830Z copying torch/_appdirs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6577570Z copying torch/_environment.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6585080Z copying torch/storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6608050Z copying torch/_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6616030Z copying torch/_lobpcg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6630830Z copying torch/__future__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6638350Z copying torch/_guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6659590Z copying torch/_python_dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6667290Z copying torch/_classes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6674390Z copying torch/serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6702560Z copying torch/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:45.6720310Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6720730Z copying torchgen/native_function_generation.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6722130Z copying torchgen/gen_vmap_plumbing.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6723240Z copying torchgen/gen.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6725430Z copying torchgen/local.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6726190Z copying torchgen/gen_functionalization_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6727700Z copying torchgen/code_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6728690Z copying torchgen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6729950Z copying torchgen/yaml_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6730990Z copying torchgen/gen_aoti_c_shim.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6732160Z copying torchgen/model.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6733820Z copying torchgen/gen_schema_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6741820Z copying torchgen/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6742620Z copying torchgen/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6743940Z copying torchgen/gen_backend_stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6745100Z copying torchgen/gen_lazy_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-09-07T06:13:45.6747500Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch 2025-09-07T06:13:45.6747860Z copying functorch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch 2025-09-07T06:13:45.6758210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6758750Z copying torch/_higher_order_ops/flat_apply.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6771550Z copying torch/_higher_order_ops/foreach_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6779110Z copying torch/_higher_order_ops/effects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6786640Z copying torch/_higher_order_ops/_invoke_quant.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6794510Z copying torch/_higher_order_ops/invoke_subgraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6809280Z copying torch/_higher_order_ops/aoti_call_delegate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6816920Z copying torch/_higher_order_ops/while_loop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6837330Z copying torch/_higher_order_ops/base_hop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6845140Z copying torch/_higher_order_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6852370Z copying torch/_higher_order_ops/strict_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6862020Z copying torch/_higher_order_ops/torchbind.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6870170Z copying torch/_higher_order_ops/cond.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6891920Z copying torch/_higher_order_ops/map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6899830Z copying torch/_higher_order_ops/hints_wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6907360Z copying torch/_higher_order_ops/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6922550Z copying torch/_higher_order_ops/out_dtype.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6930300Z copying torch/_higher_order_ops/executorch_call_delegate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6937890Z copying torch/_higher_order_ops/scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6952720Z copying torch/_higher_order_ops/run_const_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6960120Z copying torch/_higher_order_ops/associative_scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6974730Z copying torch/_higher_order_ops/auto_functionalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.6989930Z copying torch/_higher_order_ops/triton_kernel_wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.7020460Z copying torch/_higher_order_ops/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.7021540Z copying torch/_higher_order_ops/wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.7030050Z copying torch/_higher_order_ops/schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-09-07T06:13:45.7038800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-09-07T06:13:45.7039190Z copying torch/_prims/debug_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-09-07T06:13:45.7046940Z copying torch/_prims/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-09-07T06:13:45.7069210Z copying torch/_prims/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-09-07T06:13:45.7077280Z copying torch/_prims/rng_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-09-07T06:13:45.7085400Z copying torch/_prims/executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-09-07T06:13:45.7094460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-09-07T06:13:45.7094850Z copying torch/_logging/_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-09-07T06:13:45.7115710Z copying torch/_logging/scribe.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-09-07T06:13:45.7123060Z copying torch/_logging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-09-07T06:13:45.7130170Z copying torch/_logging/_registrations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-09-07T06:13:45.7137560Z copying torch/_logging/structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-09-07T06:13:45.7147370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7147790Z copying torch/_functorch/partitioners.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7178480Z copying torch/_functorch/compile_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7186780Z copying torch/_functorch/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7194190Z copying torch/_functorch/autograd_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7208150Z copying torch/_functorch/python_key.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7215210Z copying torch/_functorch/pytree_hacks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7222380Z copying torch/_functorch/pyfunctorch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7230310Z copying torch/_functorch/deprecated.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7237810Z copying torch/_functorch/top_operators_github_usage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7251660Z copying torch/_functorch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7258770Z copying torch/_functorch/batch_norm_replacement.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7265830Z copying torch/_functorch/fx_minifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7279610Z copying torch/_functorch/predispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7287200Z copying torch/_functorch/apis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7301260Z copying torch/_functorch/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7308820Z copying torch/_functorch/aot_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7332730Z copying torch/_functorch/compilers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7341740Z copying torch/_functorch/eager_transforms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7364840Z copying torch/_functorch/vmap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7379180Z copying torch/_functorch/benchmark_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7386690Z copying torch/_functorch/make_functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7399840Z copying torch/_functorch/functional_call.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-09-07T06:13:45.7409400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7409840Z copying torch/_numpy/_reductions_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7417000Z copying torch/_numpy/_getlimits.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7424270Z copying torch/_numpy/_unary_ufuncs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7431280Z copying torch/_numpy/_casting_dicts.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7446360Z copying torch/_numpy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7453220Z copying torch/_numpy/_binary_ufuncs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7461010Z copying torch/_numpy/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7468550Z copying torch/_numpy/_dtypes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7475450Z copying torch/_numpy/linalg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7482800Z copying torch/_numpy/_ndarray.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7496110Z copying torch/_numpy/_ufuncs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7503690Z copying torch/_numpy/_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7511460Z copying torch/_numpy/_normalizations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7518920Z copying torch/_numpy/_dtypes_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7525870Z copying torch/_numpy/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7533160Z copying torch/_numpy/_funcs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7563360Z copying torch/_numpy/_funcs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-09-07T06:13:45.7572340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-09-07T06:13:45.7572720Z copying torch/_export/error.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-09-07T06:13:45.7580260Z copying torch/_export/tools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-09-07T06:13:45.7588250Z copying torch/_export/converter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-09-07T06:13:45.7610380Z copying torch/_export/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-09-07T06:13:45.7618330Z copying torch/_export/pass_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-09-07T06:13:45.7633070Z copying torch/_export/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-09-07T06:13:45.7654630Z copying torch/_export/wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-09-07T06:13:45.7662700Z copying torch/_export/non_strict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-09-07T06:13:45.7683660Z copying torch/_export/verifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-09-07T06:13:45.7685360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/monitor 2025-09-07T06:13:45.7685890Z copying torch/monitor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/monitor 2025-09-07T06:13:45.7693880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-09-07T06:13:45.7694270Z copying torch/_dispatch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-09-07T06:13:45.7694920Z copying torch/_dispatch/python.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-09-07T06:13:45.7703920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-09-07T06:13:45.7704360Z copying torch/_subclasses/functional_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-09-07T06:13:45.7719300Z copying torch/_subclasses/meta_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-09-07T06:13:45.7749000Z copying torch/_subclasses/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-09-07T06:13:45.7756690Z copying torch/_subclasses/_fake_tensor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-09-07T06:13:45.7763180Z copying torch/_subclasses/fake_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-09-07T06:13:45.7778000Z copying torch/_subclasses/fake_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-09-07T06:13:45.7808790Z copying torch/_subclasses/schema_check_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-09-07T06:13:45.7817030Z copying torch/_subclasses/fake_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-09-07T06:13:45.7825750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/futures 2025-09-07T06:13:45.7826120Z copying torch/futures/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/futures 2025-09-07T06:13:45.7833940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/linalg 2025-09-07T06:13:45.7834310Z copying torch/linalg/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/linalg 2025-09-07T06:13:45.7865120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-09-07T06:13:45.7865520Z copying torch/_custom_op/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-09-07T06:13:45.7866390Z copying torch/_custom_op/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-09-07T06:13:45.7875130Z copying torch/_custom_op/impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-09-07T06:13:45.7891930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-09-07T06:13:45.7892270Z copying torch/nn/common_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-09-07T06:13:45.7899790Z copying torch/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-09-07T06:13:45.7907060Z copying torch/nn/_reduction.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-09-07T06:13:45.7913570Z copying torch/nn/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-09-07T06:13:45.7920390Z copying torch/nn/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-09-07T06:13:45.7961190Z copying torch/nn/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-09-07T06:13:45.7976420Z copying torch/nn/grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-09-07T06:13:45.7984090Z copying torch/nn/parameter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-09-07T06:13:45.7992320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-09-07T06:13:45.7992660Z copying torch/mps/event.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-09-07T06:13:45.7999980Z copying torch/mps/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-09-07T06:13:45.8007110Z copying torch/mps/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-09-07T06:13:45.8017130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8017500Z copying torch/onnx/_constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8025310Z copying torch/onnx/symbolic_opset15.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8038820Z copying torch/onnx/symbolic_opset7.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8045300Z copying torch/onnx/symbolic_opset11.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8052180Z copying torch/onnx/verification.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8065110Z copying torch/onnx/_flags.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8071970Z copying torch/onnx/symbolic_opset10.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8078400Z copying torch/onnx/symbolic_opset20.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8085290Z copying torch/onnx/symbolic_opset14.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8092360Z copying torch/onnx/symbolic_helper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8099680Z copying torch/onnx/symbolic_opset9.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8106470Z copying torch/onnx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8121100Z copying torch/onnx/symbolic_opset8.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8128730Z copying torch/onnx/symbolic_opset19.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8135700Z copying torch/onnx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8142580Z copying torch/onnx/symbolic_opset18.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8149650Z copying torch/onnx/errors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8157150Z copying torch/onnx/symbolic_opset13.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8164200Z copying torch/onnx/operators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8171100Z copying torch/onnx/symbolic_opset17.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8178560Z copying torch/onnx/symbolic_opset16.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8184840Z copying torch/onnx/symbolic_opset12.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-09-07T06:13:45.8192510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor 2025-09-07T06:13:45.8193000Z copying torch/_vendor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor 2025-09-07T06:13:45.8194570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cpu 2025-09-07T06:13:45.8195150Z copying torch/cpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu 2025-09-07T06:13:45.8205270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8205720Z copying torch/distributed/_distributed_c10d.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8218980Z copying torch/distributed/_composable_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8226800Z copying torch/distributed/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8234230Z copying torch/distributed/rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8242020Z copying torch/distributed/run.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8257860Z copying torch/distributed/_state_dict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8280190Z copying torch/distributed/_serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8288290Z copying torch/distributed/distributed_c10d.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8335390Z copying torch/distributed/argparse_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8344460Z copying torch/distributed/_checkpointable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8351960Z copying torch/distributed/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8359500Z copying torch/distributed/c10d_logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8367130Z copying torch/distributed/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8375140Z copying torch/distributed/_dist2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8382520Z copying torch/distributed/collective_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8391340Z copying torch/distributed/_functional_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8407910Z copying torch/distributed/launch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8415840Z copying torch/distributed/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8423300Z copying torch/distributed/remote_device.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8430940Z copying torch/distributed/device_mesh.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8452490Z copying torch/distributed/_C_stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8460130Z copying torch/distributed/_functional_collectives_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-09-07T06:13:45.8468490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-09-07T06:13:45.8468900Z copying torch/autograd/anomaly_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-09-07T06:13:45.8476120Z copying torch/autograd/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-09-07T06:13:45.8489800Z copying torch/autograd/forward_ad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-09-07T06:13:45.8497210Z copying torch/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-09-07T06:13:45.8510890Z copying torch/autograd/variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-09-07T06:13:45.8518260Z copying torch/autograd/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-09-07T06:13:45.8551580Z copying torch/autograd/grad_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-09-07T06:13:45.8565150Z copying torch/autograd/profiler_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-09-07T06:13:45.8584220Z copying torch/autograd/profiler_legacy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-09-07T06:13:45.8592450Z copying torch/autograd/gradcheck.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-09-07T06:13:45.8617960Z copying torch/autograd/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-09-07T06:13:45.8635710Z copying torch/autograd/function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-09-07T06:13:45.8657280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8657620Z copying torch/fx/_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8664180Z copying torch/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8677720Z copying torch/fx/operator_schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8697670Z copying torch/fx/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8698560Z copying torch/fx/proxy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8714050Z copying torch/fx/_lazy_graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8721570Z copying torch/fx/traceback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8729400Z copying torch/fx/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8750420Z copying torch/fx/tensor_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8758770Z copying torch/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8766540Z copying torch/fx/immutable_collections.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8773090Z copying torch/fx/annotate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8780330Z copying torch/fx/subgraph_rewriter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8788320Z copying torch/fx/interpreter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8807690Z copying torch/fx/_symbolic_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8828900Z copying torch/fx/node.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8844320Z copying torch/fx/_compatibility.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8851470Z copying torch/fx/_graph_pickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8866320Z copying torch/fx/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-09-07T06:13:45.8874420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-09-07T06:13:45.8874840Z copying torch/_prims_common/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-09-07T06:13:45.8898320Z copying torch/_prims_common/wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-09-07T06:13:45.8914670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-09-07T06:13:45.8915110Z copying torch/multiprocessing/queue.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-09-07T06:13:45.8922950Z copying torch/multiprocessing/_atfork.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-09-07T06:13:45.8929290Z copying torch/multiprocessing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-09-07T06:13:45.8935440Z copying torch/multiprocessing/spawn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-09-07T06:13:45.8942630Z copying torch/multiprocessing/reductions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-09-07T06:13:45.8957560Z copying torch/multiprocessing/pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-09-07T06:13:45.8967390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.8967770Z copying torch/cuda/_pin_memory_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.8975500Z copying torch/cuda/gds.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.8983050Z copying torch/cuda/streams.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.8990820Z copying torch/cuda/comm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.8998380Z copying torch/cuda/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.9013790Z copying torch/cuda/jiterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.9021690Z copying torch/cuda/nccl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.9029070Z copying torch/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.9050630Z copying torch/cuda/_gpu_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.9058060Z copying torch/cuda/_sanitizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.9085740Z copying torch/cuda/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.9093310Z copying torch/cuda/_memory_viz.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.9108140Z copying torch/cuda/tunable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.9122760Z copying torch/cuda/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.9129750Z copying torch/cuda/nvtx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.9136670Z copying torch/cuda/graphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.9151710Z copying torch/cuda/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.9159660Z copying torch/cuda/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-09-07T06:13:45.9169130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends 2025-09-07T06:13:45.9169610Z copying torch/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends 2025-09-07T06:13:45.9178090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-09-07T06:13:45.9178500Z copying torch/_decomp/decompositions_for_jvp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-09-07T06:13:45.9186550Z copying torch/_decomp/decompositions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-09-07T06:13:45.9225960Z copying torch/_decomp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-09-07T06:13:45.9241190Z copying torch/_decomp/decompositions_for_rng.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-09-07T06:13:45.9250110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-09-07T06:13:45.9250600Z copying torch/xpu/streams.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-09-07T06:13:45.9258600Z copying torch/xpu/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-09-07T06:13:45.9266330Z copying torch/xpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-09-07T06:13:45.9287180Z copying torch/xpu/_gpu_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-09-07T06:13:45.9294610Z copying torch/xpu/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-09-07T06:13:45.9302440Z copying torch/xpu/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-09-07T06:13:45.9311560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-09-07T06:13:45.9312040Z copying torch/masked/_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-09-07T06:13:45.9335410Z copying torch/masked/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-09-07T06:13:45.9343490Z copying torch/masked/_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-09-07T06:13:45.9369340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9369720Z copying torch/optim/lr_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9398220Z copying torch/optim/rmsprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9412970Z copying torch/optim/_adafactor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9427610Z copying torch/optim/_muon.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9435160Z copying torch/optim/sparse_adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9442790Z copying torch/optim/rprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9455950Z copying torch/optim/sgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9470170Z copying torch/optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9477700Z copying torch/optim/adamax.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9492410Z copying torch/optim/adagrad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9506340Z copying torch/optim/adamw.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9513690Z copying torch/optim/swa_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9527470Z copying torch/optim/lbfgs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9558370Z copying torch/optim/radam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9571120Z copying torch/optim/adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9584710Z copying torch/optim/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9604690Z copying torch/optim/nadam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9618410Z copying torch/optim/asgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9626410Z copying torch/optim/_functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9633730Z copying torch/optim/adadelta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-09-07T06:13:45.9655080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9655490Z copying torch/_inductor/dtype_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9670320Z copying torch/_inductor/cudagraph_trees.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9702870Z copying torch/_inductor/select_algorithm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9742820Z copying torch/_inductor/ops_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9765390Z copying torch/_inductor/metrics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9772380Z copying torch/_inductor/codecache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9814340Z copying torch/_inductor/mock_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9822770Z copying torch/_inductor/optimize_indexing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9828610Z copying torch/_inductor/freezing_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9835780Z copying torch/_inductor/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9849230Z copying torch/_inductor/cpp_builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9871390Z copying torch/_inductor/cpu_vec_isa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9885940Z copying torch/_inductor/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9906940Z copying torch/_inductor/compile_fx_ext.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9922270Z copying torch/_inductor/comms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9943670Z copying torch/_inductor/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9956330Z copying torch/_inductor/mkldnn_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9975540Z copying torch/_inductor/async_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:45.9990310Z copying torch/_inductor/pattern_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0010730Z copying torch/_inductor/quantized_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0018110Z copying torch/_inductor/triton_bundler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0026210Z copying torch/_inductor/aoti_eager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0033390Z copying torch/_inductor/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0061570Z copying torch/_inductor/lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0103190Z copying torch/_inductor/jagged_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0110820Z copying torch/_inductor/test_operators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0117810Z copying torch/_inductor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0125220Z copying torch/_inductor/compile_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0154220Z copying torch/_inductor/cudagraph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0162930Z copying torch/_inductor/sizevars.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0178740Z copying torch/_inductor/ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0228800Z copying torch/_inductor/analyze_preserves_zero_mask.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0236570Z copying torch/_inductor/compile_fx_async.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0244170Z copying torch/_inductor/index_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0251520Z copying torch/_inductor/constant_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0258470Z copying torch/_inductor/inductor_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0266110Z copying torch/_inductor/virtualized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0273860Z copying torch/_inductor/test_case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0281000Z copying torch/_inductor/autotune_process.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0295200Z copying torch/_inductor/standalone_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0303200Z copying torch/_inductor/await_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0310510Z copying torch/_inductor/exc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0318140Z copying torch/_inductor/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0360820Z copying torch/_inductor/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0376780Z copying torch/_inductor/kernel_inputs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0384210Z copying torch/_inductor/__autotune_main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0391370Z copying torch/_inductor/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0404990Z copying torch/_inductor/comm_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0412740Z copying torch/_inductor/decomposition.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0428330Z copying torch/_inductor/fx_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0435840Z copying torch/_inductor/shape_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0442970Z copying torch/_inductor/compile_fx_subproc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0449860Z copying torch/_inductor/scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0485790Z copying torch/_inductor/comms_debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0493800Z copying torch/_inductor/remote_gemm_autotune_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0500930Z copying torch/_inductor/mkldnn_ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0514690Z copying torch/_inductor/wrapper_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0522260Z copying torch/_inductor/choices.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0537720Z copying torch/_inductor/remote_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0545370Z copying torch/_inductor/comm_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0552670Z copying torch/_inductor/compiler_bisector.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0564870Z copying torch/_inductor/extern_node_serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0571900Z copying torch/_inductor/bounds.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0579080Z copying torch/_inductor/kernel_template_choice.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0584880Z copying torch/_inductor/output_code.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0597800Z copying torch/_inductor/custom_graph_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0605220Z copying torch/_inductor/freezing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0612860Z copying torch/_inductor/dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0627690Z copying torch/_inductor/tiling_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0642250Z copying torch/_inductor/loop_body.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0654810Z copying torch/_inductor/subgraph_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:46.0667580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0667940Z copying torch/utils/_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0690050Z copying torch/utils/_appending_byte_serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0697080Z copying torch/utils/_foreach_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0703680Z copying torch/utils/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0711310Z copying torch/utils/_traceback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0719210Z copying torch/utils/_cpp_extension_versioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0726500Z copying torch/utils/_mode_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0732660Z copying torch/utils/checkpoint.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0754490Z copying torch/utils/show_pickle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0762510Z copying torch/utils/deterministic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0769180Z copying torch/utils/file_baton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0776580Z copying torch/utils/backend_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0790410Z copying torch/utils/module_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0797260Z copying torch/utils/model_zoo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0804120Z copying torch/utils/_zip.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0811170Z copying torch/utils/collect_env.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0824930Z copying torch/utils/throughput_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0832210Z copying torch/utils/dlpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0839550Z copying torch/utils/_cxx_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0854780Z copying torch/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0862090Z copying torch/utils/_functools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0869530Z copying torch/utils/_import_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0876460Z copying torch/utils/_cpp_embed_headers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0877270Z copying torch/utils/_dtype_abbrs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0883990Z copying torch/utils/bundled_inputs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0897560Z copying torch/utils/_helion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0905130Z copying torch/utils/mkldnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0912290Z copying torch/utils/cpp_backtrace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0918950Z copying torch/utils/_contextlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0931010Z copying torch/utils/_python_dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0946610Z copying torch/utils/_exposed_in.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0953400Z copying torch/utils/_filelock.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0959200Z copying torch/utils/_thunk.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0966600Z copying torch/utils/_config_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0981970Z copying torch/utils/_device.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.0988960Z copying torch/utils/flop_counter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.1003940Z copying torch/utils/_typing_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.1011410Z copying torch/utils/_stats.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.1018730Z copying torch/utils/cpp_extension.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.1047430Z copying torch/utils/_backport_slots.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.1054950Z copying torch/utils/_get_clean_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.1062110Z copying torch/utils/_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.1069840Z copying torch/utils/_content_store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.1077080Z copying torch/utils/_ordered_set.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.1084420Z copying torch/utils/weak.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.1092070Z copying torch/utils/mobile_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:46.1100090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-09-07T06:13:46.1100470Z copying torch/contrib/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-09-07T06:13:46.1101290Z copying torch/contrib/_tensorboard_vis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-09-07T06:13:46.1110790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1111230Z copying torch/quantization/observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1118520Z copying torch/quantization/fuse_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1125740Z copying torch/quantization/quantization_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1133780Z copying torch/quantization/quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1140540Z copying torch/quantization/_numeric_suite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1147780Z copying torch/quantization/fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1154760Z copying torch/quantization/qconfig.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1162090Z copying torch/quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1169270Z copying torch/quantization/_quantized_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1176560Z copying torch/quantization/stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1183650Z copying torch/quantization/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1190810Z copying torch/quantization/fuser_method_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1202470Z copying torch/quantization/quantize_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1214250Z copying torch/quantization/quant_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1222670Z copying torch/quantization/quantize_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1230780Z copying torch/quantization/_numeric_suite_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-09-07T06:13:46.1238810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/special 2025-09-07T06:13:46.1239170Z copying torch/special/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/special 2025-09-07T06:13:46.1259550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-09-07T06:13:46.1259940Z copying torch/testing/_creation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-09-07T06:13:46.1266560Z copying torch/testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-09-07T06:13:46.1272390Z copying torch/testing/_comparison.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-09-07T06:13:46.1293890Z copying torch/testing/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-09-07T06:13:46.1302200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-09-07T06:13:46.1302580Z copying torch/_library/triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-09-07T06:13:46.1309970Z copying torch/_library/fake_profile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-09-07T06:13:46.1317690Z copying torch/_library/infer_schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-09-07T06:13:46.1324630Z copying torch/_library/simple_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-09-07T06:13:46.1332020Z copying torch/_library/custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-09-07T06:13:46.1346760Z copying torch/_library/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-09-07T06:13:46.1354960Z copying torch/_library/fake_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-09-07T06:13:46.1362250Z copying torch/_library/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-09-07T06:13:46.1370150Z copying torch/_library/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-09-07T06:13:46.1383040Z copying torch/_library/fake_class_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-09-07T06:13:46.1390690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-09-07T06:13:46.1391100Z copying torch/accelerator/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-09-07T06:13:46.1399180Z copying torch/accelerator/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-09-07T06:13:46.1406990Z copying torch/accelerator/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-09-07T06:13:46.1415500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-09-07T06:13:46.1415930Z copying torch/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-09-07T06:13:46.1430610Z copying torch/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-09-07T06:13:46.1445280Z copying torch/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-09-07T06:13:46.1455840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1456170Z copying torch/jit/_ir_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1463880Z copying torch/jit/_monkeytype_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1470830Z copying torch/jit/_decompositions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1478450Z copying torch/jit/_recursive.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1492430Z copying torch/jit/_logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1499840Z copying torch/jit/_serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1506600Z copying torch/jit/quantized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1514240Z copying torch/jit/_script.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1536230Z copying torch/jit/_shape_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1551070Z copying torch/jit/_decomposition_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1558040Z copying torch/jit/_freeze.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1565210Z copying torch/jit/_pickle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1572690Z copying torch/jit/_check.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1579980Z copying torch/jit/unsupported_tensor_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1587660Z copying torch/jit/frontend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1603290Z copying torch/jit/supported_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1611560Z copying torch/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1619800Z copying torch/jit/_fuser.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1627440Z copying torch/jit/_builtins.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1634460Z copying torch/jit/_dataclass_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1641880Z copying torch/jit/_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1662760Z copying torch/jit/generate_bytecode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1670290Z copying torch/jit/_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1677910Z copying torch/jit/_async.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1684070Z copying torch/jit/annotations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1701570Z copying torch/jit/_await.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:46.1713250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1713630Z copying torch/_dynamo/package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1738900Z copying torch/_dynamo/cache_size.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1745450Z copying torch/_dynamo/callback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1752610Z copying torch/_dynamo/comptime.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1761130Z copying torch/_dynamo/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1775830Z copying torch/_dynamo/_trace_wrapped_higher_order_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1784160Z copying torch/_dynamo/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1791150Z copying torch/_dynamo/precompile_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1807670Z copying torch/_dynamo/graph_break_hints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1818650Z copying torch/_dynamo/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1835780Z copying torch/_dynamo/guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1872230Z copying torch/_dynamo/test_minifier_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1880360Z copying torch/_dynamo/create_parameter_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1888200Z copying torch/_dynamo/aot_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1895540Z copying torch/_dynamo/graph_region_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1923170Z copying torch/_dynamo/device_interface.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1936080Z copying torch/_dynamo/graph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1942240Z copying torch/_dynamo/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1949750Z copying torch/_dynamo/mutation_guard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1956760Z copying torch/_dynamo/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1963930Z copying torch/_dynamo/metrics_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1971520Z copying torch/_dynamo/bytecode_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1979270Z copying torch/_dynamo/tensor_version_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1986850Z copying torch/_dynamo/external_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.1993900Z copying torch/_dynamo/test_case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2001570Z copying torch/_dynamo/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2009220Z copying torch/_dynamo/resume_execution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2021990Z copying torch/_dynamo/output_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2056270Z copying torch/_dynamo/compiled_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2078030Z copying torch/_dynamo/exc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2089980Z copying torch/_dynamo/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2130010Z copying torch/_dynamo/test_dont_skip_tracing_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2137660Z copying torch/_dynamo/replay_record.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2145400Z copying torch/_dynamo/side_effects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2166140Z copying torch/_dynamo/trace_rules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2203560Z copying torch/_dynamo/bytecode_transformation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2223120Z copying torch/_dynamo/convert_frame.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2245900Z copying torch/_dynamo/funcname_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2253030Z copying torch/_dynamo/testing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2266200Z copying torch/_dynamo/pgo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2279060Z copying torch/_dynamo/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2286490Z copying torch/_dynamo/symbolic_convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2324630Z copying torch/_dynamo/codegen.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2339690Z copying torch/_dynamo/source.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2355360Z copying torch/_dynamo/eval_frame.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2385250Z copying torch/_dynamo/functional_export.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2392730Z copying torch/_dynamo/code_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2398920Z copying torch/_dynamo/graph_deduplication.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2411620Z copying torch/_dynamo/current_scope_id.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2419550Z copying torch/_dynamo/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2434520Z copying torch/_dynamo/decorators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:46.2451520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-09-07T06:13:46.2451880Z copying torch/_lazy/metrics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-09-07T06:13:46.2458920Z copying torch/_lazy/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-09-07T06:13:46.2466230Z copying torch/_lazy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-09-07T06:13:46.2473700Z copying torch/_lazy/tensor_factory_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-09-07T06:13:46.2480710Z copying torch/_lazy/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-09-07T06:13:46.2488530Z copying torch/_lazy/extract_compiled_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-09-07T06:13:46.2496330Z copying torch/_lazy/ir_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-09-07T06:13:46.2503410Z copying torch/_lazy/ts_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-09-07T06:13:46.2510770Z copying torch/_lazy/computation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-09-07T06:13:46.2517830Z copying torch/_lazy/closure.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-09-07T06:13:46.2525650Z copying torch/_lazy/device_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-09-07T06:13:46.2533550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao 2025-09-07T06:13:46.2533880Z copying torch/ao/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao 2025-09-07T06:13:46.2542470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-09-07T06:13:46.2542820Z copying torch/mtia/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-09-07T06:13:46.2550410Z copying torch/mtia/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-09-07T06:13:46.2557080Z copying torch/mtia/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-09-07T06:13:46.2565070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-09-07T06:13:46.2565440Z copying torch/_refs/_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-09-07T06:13:46.2572360Z copying torch/_refs/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-09-07T06:13:46.2616090Z copying torch/_refs/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-09-07T06:13:46.2631140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fft 2025-09-07T06:13:46.2631480Z copying torch/fft/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fft 2025-09-07T06:13:46.2652500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-09-07T06:13:46.2652920Z copying torch/profiler/_memory_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-09-07T06:13:46.2669100Z copying torch/profiler/itt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-09-07T06:13:46.2677210Z copying torch/profiler/_pattern_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-09-07T06:13:46.2692420Z copying torch/profiler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-09-07T06:13:46.2699890Z copying torch/profiler/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-09-07T06:13:46.2714150Z copying torch/profiler/python_tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-09-07T06:13:46.2721360Z copying torch/profiler/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-09-07T06:13:46.2730240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-09-07T06:13:46.2730650Z copying torch/sparse/_semi_structured_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-09-07T06:13:46.2738160Z copying torch/sparse/_semi_structured_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-09-07T06:13:46.2745250Z copying torch/sparse/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-09-07T06:13:46.2760100Z copying torch/sparse/semi_structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-09-07T06:13:46.2773750Z copying torch/sparse/_triton_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-09-07T06:13:46.2802020Z copying torch/sparse/_triton_ops_meta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-09-07T06:13:46.2873030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits 2025-09-07T06:13:46.2873480Z copying torch/_awaits/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits 2025-09-07T06:13:46.2883680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.2884050Z copying torch/export/_safeguard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.2892120Z copying torch/export/exported_program.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.2922430Z copying torch/export/unflatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.2944460Z copying torch/export/custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.2952330Z copying torch/export/custom_obj.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.2960090Z copying torch/export/_remove_effect_tokens_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.2966600Z copying torch/export/_remove_auto_functionalized_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.2972920Z copying torch/export/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.2991020Z copying torch/export/_unlift.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.3005920Z copying torch/export/_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.3031850Z copying torch/export/graph_signature.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.3047160Z copying torch/export/_wrapper_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.3054190Z copying torch/export/decomp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.3061760Z copying torch/export/_swap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.3076350Z copying torch/export/_draft_export.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.3090850Z copying torch/export/dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.3109030Z copying torch/export/_tree_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.3117020Z copying torch/export/_leakage_detection_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-09-07T06:13:46.3124180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nested 2025-09-07T06:13:46.3124540Z copying torch/nested/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested 2025-09-07T06:13:46.3140610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-09-07T06:13:46.3141070Z copying torch/_strobelight/cli_function_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-09-07T06:13:46.3147620Z copying torch/_strobelight/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-09-07T06:13:46.3148210Z copying torch/_strobelight/compile_time_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-09-07T06:13:46.3155620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/numa 2025-09-07T06:13:46.3155980Z copying torch/numa/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/numa 2025-09-07T06:13:46.3156750Z copying torch/numa/binding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/numa 2025-09-07T06:13:46.3171940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-09-07T06:13:46.3172320Z copying torch/compiler/_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-09-07T06:13:46.3179040Z copying torch/compiler/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-09-07T06:13:46.3185260Z copying torch/compiler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-09-07T06:13:46.3201390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/signal 2025-09-07T06:13:46.3201820Z copying torch/signal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal 2025-09-07T06:13:46.3212970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3213430Z copying torch/distributions/inverse_gamma.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3225030Z copying torch/distributions/laplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3231040Z copying torch/distributions/relaxed_bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3237490Z copying torch/distributions/categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3248250Z copying torch/distributions/transforms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3261070Z copying torch/distributions/dirichlet.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3266840Z copying torch/distributions/log_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3272650Z copying torch/distributions/transformed_distribution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3278820Z copying torch/distributions/geometric.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3284760Z copying torch/distributions/generalized_pareto.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3290990Z copying torch/distributions/weibull.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3298740Z copying torch/distributions/studentT.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3305850Z copying torch/distributions/multivariate_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3311890Z copying torch/distributions/normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3318190Z copying torch/distributions/poisson.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3324330Z copying torch/distributions/beta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3331280Z copying torch/distributions/kumaraswamy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3338160Z copying torch/distributions/half_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3345120Z copying torch/distributions/relaxed_categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3351890Z copying torch/distributions/lowrank_multivariate_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3359220Z copying torch/distributions/half_cauchy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3365710Z copying torch/distributions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3372700Z copying torch/distributions/lkj_cholesky.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3379090Z copying torch/distributions/independent.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3385950Z copying torch/distributions/multinomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3392620Z copying torch/distributions/exponential.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3399310Z copying torch/distributions/pareto.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3409640Z copying torch/distributions/negative_binomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3418400Z copying torch/distributions/cauchy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3426030Z copying torch/distributions/von_mises.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3432150Z copying torch/distributions/distribution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3439770Z copying torch/distributions/gumbel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3446590Z copying torch/distributions/constraint_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3453490Z copying torch/distributions/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3461130Z copying torch/distributions/kl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3474940Z copying torch/distributions/mixture_same_family.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3482790Z copying torch/distributions/continuous_bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3490270Z copying torch/distributions/fishersnedecor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3498030Z copying torch/distributions/constraints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3512080Z copying torch/distributions/uniform.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3519430Z copying torch/distributions/bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3526960Z copying torch/distributions/exp_family.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3534130Z copying torch/distributions/logistic_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3541220Z copying torch/distributions/one_hot_categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3547660Z copying torch/distributions/wishart.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3555750Z copying torch/distributions/gamma.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3563440Z copying torch/distributions/chi2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3570180Z copying torch/distributions/binomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-09-07T06:13:46.3579650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3580050Z copying torch/package/package_exporter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3601020Z copying torch/package/file_structure_representation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3608350Z copying torch/package/_mock.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3616200Z copying torch/package/importer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3625800Z copying torch/package/_stdlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3633540Z copying torch/package/_mangling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3641110Z copying torch/package/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3648520Z copying torch/package/package_importer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3663890Z copying torch/package/_package_unpickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3671540Z copying torch/package/glob_group.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3678950Z copying torch/package/find_file_dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3686510Z copying torch/package/_package_pickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3693690Z copying torch/package/_importlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3713970Z copying torch/package/_directory_reader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3726900Z copying torch/package/_digraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-09-07T06:13:46.3735390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/func 2025-09-07T06:13:46.3735740Z copying torch/func/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/func 2025-09-07T06:13:46.3744390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-09-07T06:13:46.3745020Z copying torch/_functorch/_activation_checkpointing/graph_info_provider.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-09-07T06:13:46.3751340Z copying torch/_functorch/_activation_checkpointing/knapsack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-09-07T06:13:46.3756620Z copying torch/_functorch/_activation_checkpointing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-09-07T06:13:46.3762230Z copying torch/_functorch/_activation_checkpointing/ac_logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-09-07T06:13:46.3768250Z copying torch/_functorch/_activation_checkpointing/knapsack_evaluator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-09-07T06:13:46.3776160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.3776690Z copying torch/_functorch/_aot_autograd/input_output_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.3789850Z copying torch/_functorch/_aot_autograd/runtime_wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.3819670Z copying torch/_functorch/_aot_autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.3826670Z copying torch/_functorch/_aot_autograd/functional_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.3840590Z copying torch/_functorch/_aot_autograd/autograd_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.3862920Z copying torch/_functorch/_aot_autograd/descriptors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.3877670Z copying torch/_functorch/_aot_autograd/graph_capture_wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.3899430Z copying torch/_functorch/_aot_autograd/schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.3919820Z copying torch/_functorch/_aot_autograd/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.3933690Z copying torch/_functorch/_aot_autograd/fx_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.3941420Z copying torch/_functorch/_aot_autograd/collect_metadata_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.3956630Z copying torch/_functorch/_aot_autograd/frontend_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.3964500Z copying torch/_functorch/_aot_autograd/graph_capture.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.3978110Z copying torch/_functorch/_aot_autograd/graph_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.3998910Z copying torch/_functorch/_aot_autograd/subclass_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.4012750Z copying torch/_functorch/_aot_autograd/logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.4019430Z copying torch/_functorch/_aot_autograd/subclass_parametrization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-09-07T06:13:46.4026950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-09-07T06:13:46.4027380Z copying torch/_numpy/testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-09-07T06:13:46.4034710Z copying torch/_numpy/testing/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-09-07T06:13:46.4058860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-09-07T06:13:46.4059380Z copying torch/_export/pass_infra/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-09-07T06:13:46.4060360Z copying torch/_export/pass_infra/proxy_value.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-09-07T06:13:46.4068520Z copying torch/_export/pass_infra/node_metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-09-07T06:13:46.4077730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-09-07T06:13:46.4078200Z copying torch/_export/passes/insert_custom_op_guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-09-07T06:13:46.4086530Z copying torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-09-07T06:13:46.4102130Z copying torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-09-07T06:13:46.4109850Z copying torch/_export/passes/collect_tracepoints_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-09-07T06:13:46.4117930Z copying torch/_export/passes/replace_with_hop_pass_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-09-07T06:13:46.4126190Z copying torch/_export/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-09-07T06:13:46.4133830Z copying torch/_export/passes/_node_metadata_hook.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-09-07T06:13:46.4141120Z copying torch/_export/passes/lift_constants_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-09-07T06:13:46.4155440Z copying torch/_export/passes/constant_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-09-07T06:13:46.4163500Z copying torch/_export/passes/add_runtime_assertions_for_constraints_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-09-07T06:13:46.4171810Z copying torch/_export/passes/replace_autocast_with_hop_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-09-07T06:13:46.4180090Z copying torch/_export/passes/functionalize_side_effectful_ops_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-09-07T06:13:46.4187530Z copying torch/_export/passes/replace_set_grad_with_hop_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-09-07T06:13:46.4194780Z copying torch/_export/passes/remove_runtime_assertions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-09-07T06:13:46.4202850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-09-07T06:13:46.4203250Z copying torch/_export/db/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-09-07T06:13:46.4211470Z copying torch/_export/db/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-09-07T06:13:46.4219600Z copying torch/_export/db/gen_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-09-07T06:13:46.4227560Z copying torch/_export/db/case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-09-07T06:13:46.4235580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-09-07T06:13:46.4236020Z copying torch/_export/serde/serialize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-09-07T06:13:46.4238300Z copying torch/_export/serde/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-09-07T06:13:46.4238890Z copying torch/_export/serde/schema_check.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-09-07T06:13:46.4260180Z copying torch/_export/serde/dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-09-07T06:13:46.4267960Z copying torch/_export/serde/union.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-09-07T06:13:46.4275070Z copying torch/_export/serde/schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-09-07T06:13:46.4290310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4290780Z copying torch/_export/db/examples/list_unpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4306080Z copying torch/_export/db/examples/specialized_attribute.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4313760Z copying torch/_export/db/examples/static_for_loop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4321160Z copying torch/_export/db/examples/cond_closed_over_variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4329040Z copying torch/_export/db/examples/fn_with_kwargs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4336380Z copying torch/_export/db/examples/constrain_as_value_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4350660Z copying torch/_export/db/examples/dynamic_shape_slicing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4358190Z copying torch/_export/db/examples/cond_branch_nonlocal_variables.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4365780Z copying torch/_export/db/examples/autograd_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4373490Z copying torch/_export/db/examples/type_reflection_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4380610Z copying torch/_export/db/examples/cond_operands.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4388280Z copying torch/_export/db/examples/decorator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4395590Z copying torch/_export/db/examples/dynamic_shape_view.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4403290Z copying torch/_export/db/examples/dynamic_shape_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4414500Z copying torch/_export/db/examples/nested_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4423000Z copying torch/_export/db/examples/dynamic_shape_constructor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4430020Z copying torch/_export/db/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4437600Z copying torch/_export/db/examples/dynamic_shape_if_guard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4445110Z copying torch/_export/db/examples/assume_constant_result.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4452640Z copying torch/_export/db/examples/cond_branch_class_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4459950Z copying torch/_export/db/examples/class_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4467610Z copying torch/_export/db/examples/pytree_flatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4475150Z copying torch/_export/db/examples/scalar_output.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4482540Z copying torch/_export/db/examples/cond_predicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4489820Z copying torch/_export/db/examples/dynamic_shape_assert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4497290Z copying torch/_export/db/examples/unsupported_operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4504830Z copying torch/_export/db/examples/tensor_setattr.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4514720Z copying torch/_export/db/examples/optional_input.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4522140Z copying torch/_export/db/examples/constrain_as_size_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4529330Z copying torch/_export/db/examples/static_if.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4540760Z copying torch/_export/db/examples/dictionary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4543930Z copying torch/_export/db/examples/list_contains.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4551410Z copying torch/_export/db/examples/dynamic_shape_round.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4558840Z copying torch/_export/db/examples/user_input_mutation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4566180Z copying torch/_export/db/examples/null_context_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4573480Z copying torch/_export/db/examples/cond_branch_nested_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4580950Z copying torch/_export/db/examples/model_attr_mutation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-09-07T06:13:46.4589190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-09-07T06:13:46.4589600Z copying torch/nn/attention/bias.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-09-07T06:13:46.4596240Z copying torch/nn/attention/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-09-07T06:13:46.4601830Z copying torch/nn/attention/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-09-07T06:13:46.4603010Z copying torch/nn/attention/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-09-07T06:13:46.4610440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-09-07T06:13:46.4610870Z copying torch/nn/parallel/parallel_apply.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-09-07T06:13:46.4616940Z copying torch/nn/parallel/comm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-09-07T06:13:46.4633910Z copying torch/nn/parallel/scatter_gather.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-09-07T06:13:46.4643870Z copying torch/nn/parallel/replicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-09-07T06:13:46.4650420Z copying torch/nn/parallel/_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-09-07T06:13:46.4656610Z copying torch/nn/parallel/data_parallel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-09-07T06:13:46.4663790Z copying torch/nn/parallel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-09-07T06:13:46.4670060Z copying torch/nn/parallel/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-09-07T06:13:46.4699120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat 2025-09-07T06:13:46.4699480Z copying torch/nn/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat 2025-09-07T06:13:46.4706350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-09-07T06:13:46.4706770Z copying torch/nn/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-09-07T06:13:46.4712750Z copying torch/nn/quantized/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-09-07T06:13:46.4719050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-09-07T06:13:46.4719450Z copying torch/nn/backends/thnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-09-07T06:13:46.4725220Z copying torch/nn/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-09-07T06:13:46.4728060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4728490Z copying torch/nn/utils/_named_member_accessor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4742640Z copying torch/nn/utils/spectral_norm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4749620Z copying torch/nn/utils/convert_parameters.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4756700Z copying torch/nn/utils/stateless.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4764040Z copying torch/nn/utils/parametrize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4777940Z copying torch/nn/utils/memory_format.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4785420Z copying torch/nn/utils/_per_sample_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4792450Z copying torch/nn/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4799420Z copying torch/nn/utils/weight_norm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4806790Z copying torch/nn/utils/fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4814070Z copying torch/nn/utils/prune.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4835000Z copying torch/nn/utils/parametrizations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4849420Z copying torch/nn/utils/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4856480Z copying torch/nn/utils/_deprecation_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4863650Z copying torch/nn/utils/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4877640Z copying torch/nn/utils/clip_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-09-07T06:13:46.4885890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable 2025-09-07T06:13:46.4886320Z copying torch/nn/quantizable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable 2025-09-07T06:13:46.4893390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic 2025-09-07T06:13:46.4893800Z copying torch/nn/intrinsic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic 2025-09-07T06:13:46.4904130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.4904540Z copying torch/nn/modules/upsampling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.4912240Z copying torch/nn/modules/channelshuffle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.4925910Z copying torch/nn/modules/instancenorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.4940330Z copying torch/nn/modules/flatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.4947780Z copying torch/nn/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.4962780Z copying torch/nn/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.4970460Z copying torch/nn/modules/_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.4978260Z copying torch/nn/modules/pooling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5004190Z copying torch/nn/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5011820Z copying torch/nn/modules/distance.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5019060Z copying torch/nn/modules/container.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5036120Z copying torch/nn/modules/pixelshuffle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5043470Z copying torch/nn/modules/adaptive.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5049950Z copying torch/nn/modules/loss.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5078030Z copying torch/nn/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5099660Z copying torch/nn/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5107830Z copying torch/nn/modules/transformer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5129640Z copying torch/nn/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5141500Z copying torch/nn/modules/module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5171140Z copying torch/nn/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5180420Z copying torch/nn/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5202740Z copying torch/nn/modules/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5211040Z copying torch/nn/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5217800Z copying torch/nn/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5240010Z copying torch/nn/modules/padding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5253700Z copying torch/nn/modules/fold.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-09-07T06:13:46.5261910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-09-07T06:13:46.5262620Z copying torch/nn/attention/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-09-07T06:13:46.5269680Z copying torch/nn/attention/experimental/_paged_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-09-07T06:13:46.5277570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic 2025-09-07T06:13:46.5278070Z copying torch/nn/qat/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic 2025-09-07T06:13:46.5286370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-09-07T06:13:46.5286800Z copying torch/nn/qat/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-09-07T06:13:46.5293400Z copying torch/nn/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-09-07T06:13:46.5299930Z copying torch/nn/qat/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-09-07T06:13:46.5306130Z copying torch/nn/qat/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-09-07T06:13:46.5313280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-09-07T06:13:46.5313780Z copying torch/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-09-07T06:13:46.5319110Z copying torch/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-09-07T06:13:46.5326370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference 2025-09-07T06:13:46.5326870Z copying torch/nn/quantized/_reference/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference 2025-09-07T06:13:46.5334810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic 2025-09-07T06:13:46.5335290Z copying torch/nn/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic 2025-09-07T06:13:46.5347450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-09-07T06:13:46.5347950Z copying torch/nn/quantized/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-09-07T06:13:46.5356440Z copying torch/nn/quantized/modules/functional_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-09-07T06:13:46.5362590Z copying torch/nn/quantized/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-09-07T06:13:46.5369500Z copying torch/nn/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-09-07T06:13:46.5378440Z copying torch/nn/quantized/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-09-07T06:13:46.5385280Z copying torch/nn/quantized/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-09-07T06:13:46.5392590Z copying torch/nn/quantized/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-09-07T06:13:46.5400040Z copying torch/nn/quantized/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-09-07T06:13:46.5406970Z copying torch/nn/quantized/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-09-07T06:13:46.5413410Z copying torch/nn/quantized/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-09-07T06:13:46.5420120Z copying torch/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-09-07T06:13:46.5426750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-09-07T06:13:46.5427310Z copying torch/nn/quantized/_reference/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-09-07T06:13:46.5436590Z copying torch/nn/quantized/_reference/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-09-07T06:13:46.5444200Z copying torch/nn/quantized/_reference/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-09-07T06:13:46.5450180Z copying torch/nn/quantized/_reference/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-09-07T06:13:46.5456430Z copying torch/nn/quantized/_reference/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-09-07T06:13:46.5463670Z copying torch/nn/quantized/_reference/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-09-07T06:13:46.5471640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-09-07T06:13:46.5472230Z copying torch/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-09-07T06:13:46.5479520Z copying torch/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-09-07T06:13:46.5485860Z copying torch/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-09-07T06:13:46.5492790Z copying torch/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-09-07T06:13:46.5500040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-09-07T06:13:46.5500620Z copying torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-09-07T06:13:46.5508350Z copying torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-09-07T06:13:46.5515940Z copying torch/nn/utils/_expanded_weights/conv_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-09-07T06:13:46.5523790Z copying torch/nn/utils/_expanded_weights/expanded_weights_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-09-07T06:13:46.5531070Z copying torch/nn/utils/_expanded_weights/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-09-07T06:13:46.5538510Z copying torch/nn/utils/_expanded_weights/embedding_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-09-07T06:13:46.5545870Z copying torch/nn/utils/_expanded_weights/conv_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-09-07T06:13:46.5553660Z copying torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-09-07T06:13:46.5560970Z copying torch/nn/utils/_expanded_weights/linear_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-09-07T06:13:46.5568050Z copying torch/nn/utils/_expanded_weights/expanded_weights_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-09-07T06:13:46.5576600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-09-07T06:13:46.5577100Z copying torch/nn/quantizable/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-09-07T06:13:46.5584350Z copying torch/nn/quantizable/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-09-07T06:13:46.5590740Z copying torch/nn/quantizable/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-09-07T06:13:46.5598130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat 2025-09-07T06:13:46.5598580Z copying torch/nn/intrinsic/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat 2025-09-07T06:13:46.5606670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized 2025-09-07T06:13:46.5607180Z copying torch/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized 2025-09-07T06:13:46.5615520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-09-07T06:13:46.5616000Z copying torch/nn/intrinsic/modules/fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-09-07T06:13:46.5623430Z copying torch/nn/intrinsic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-09-07T06:13:46.5635810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-09-07T06:13:46.5636520Z copying torch/nn/intrinsic/qat/modules/conv_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-09-07T06:13:46.5645330Z copying torch/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-09-07T06:13:46.5653000Z copying torch/nn/intrinsic/qat/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-09-07T06:13:46.5659870Z copying torch/nn/intrinsic/qat/modules/linear_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-09-07T06:13:46.5667800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic 2025-09-07T06:13:46.5668350Z copying torch/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic 2025-09-07T06:13:46.5676520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-09-07T06:13:46.5677080Z copying torch/nn/intrinsic/quantized/modules/bn_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-09-07T06:13:46.5684500Z copying torch/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-09-07T06:13:46.5691200Z copying torch/nn/intrinsic/quantized/modules/conv_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-09-07T06:13:46.5698380Z copying torch/nn/intrinsic/quantized/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-09-07T06:13:46.5705750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules 2025-09-07T06:13:46.5706380Z copying torch/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules 2025-09-07T06:13:46.5713390Z copying torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules 2025-09-07T06:13:46.5720870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-09-07T06:13:46.5721370Z copying torch/onnx/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-09-07T06:13:46.5722120Z copying torch/onnx/_internal/_lazy_import.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-09-07T06:13:46.5730180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-09-07T06:13:46.5730590Z copying torch/onnx/ops/_dtype_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-09-07T06:13:46.5737520Z copying torch/onnx/ops/_symbolic_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-09-07T06:13:46.5743980Z copying torch/onnx/ops/_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-09-07T06:13:46.5750940Z copying torch/onnx/ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-09-07T06:13:46.5773760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5774410Z copying torch/onnx/_internal/torchscript_exporter/registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5782280Z copying torch/onnx/_internal/torchscript_exporter/_type_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5790200Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5797590Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset7.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5805990Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5828230Z copying torch/onnx/_internal/torchscript_exporter/verification.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5842890Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5858660Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5865960Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5874660Z copying torch/onnx/_internal/torchscript_exporter/_globals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5882740Z copying torch/onnx/_internal/torchscript_exporter/symbolic_helper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5909770Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5948820Z copying torch/onnx/_internal/torchscript_exporter/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5949550Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5957620Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset19.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5965210Z copying torch/onnx/_internal/torchscript_exporter/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5989730Z copying torch/onnx/_internal/torchscript_exporter/_experimental.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.5997670Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.6005720Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.6021210Z copying torch/onnx/_internal/torchscript_exporter/onnx_proto_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.6029620Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.6037790Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.6045360Z copying torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.6053680Z copying torch/onnx/_internal/torchscript_exporter/jit_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:46.6061760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-09-07T06:13:46.6062220Z copying torch/onnx/_internal/fx/type_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-09-07T06:13:46.6068700Z copying torch/onnx/_internal/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-09-07T06:13:46.6069270Z copying torch/onnx/_internal/fx/_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-09-07T06:13:46.6081950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6082520Z copying torch/onnx/_internal/exporter/_constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6090480Z copying torch/onnx/_internal/exporter/_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6099150Z copying torch/onnx/_internal/exporter/_flags.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6107960Z copying torch/onnx/_internal/exporter/_errors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6120220Z copying torch/onnx/_internal/exporter/_capture_strategies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6126590Z copying torch/onnx/_internal/exporter/_tensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6133390Z copying torch/onnx/_internal/exporter/_dispatching.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6140570Z copying torch/onnx/_internal/exporter/_isolated.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6146640Z copying torch/onnx/_internal/exporter/_decomp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6154980Z copying torch/onnx/_internal/exporter/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6155600Z copying torch/onnx/_internal/exporter/_onnx_program.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6172050Z copying torch/onnx/_internal/exporter/_building.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6188030Z copying torch/onnx/_internal/exporter/_dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6196370Z copying torch/onnx/_internal/exporter/_schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6208990Z copying torch/onnx/_internal/exporter/_core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6234160Z copying torch/onnx/_internal/exporter/_verification.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6242380Z copying torch/onnx/_internal/exporter/_reporting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6250570Z copying torch/onnx/_internal/exporter/_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6257830Z copying torch/onnx/_internal/exporter/_testing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6264780Z copying torch/onnx/_internal/exporter/_compat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6273340Z copying torch/onnx/_internal/exporter/_ir_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6281100Z copying torch/onnx/_internal/exporter/_type_casting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6287910Z copying torch/onnx/_internal/exporter/_fx_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-09-07T06:13:46.6303420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-09-07T06:13:46.6303910Z copying torch/onnx/_internal/fx/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-09-07T06:13:46.6311260Z copying torch/onnx/_internal/fx/passes/type_promotion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-09-07T06:13:46.6332210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-09-07T06:13:46.6332860Z copying torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-09-07T06:13:46.6338930Z copying torch/onnx/_internal/exporter/_torchlib/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-09-07T06:13:46.6339630Z copying torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-09-07T06:13:46.6347210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-09-07T06:13:46.6347800Z copying torch/onnx/_internal/exporter/_torchlib/ops/nn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-09-07T06:13:46.6355320Z copying torch/onnx/_internal/exporter/_torchlib/ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-09-07T06:13:46.6361440Z copying torch/onnx/_internal/exporter/_torchlib/ops/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-09-07T06:13:46.6368160Z copying torch/onnx/_internal/exporter/_torchlib/ops/symops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-09-07T06:13:46.6374700Z copying torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-09-07T06:13:46.6381300Z copying torch/onnx/_internal/exporter/_torchlib/ops/hop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-09-07T06:13:46.6389340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-09-07T06:13:46.6389800Z copying torch/_vendor/packaging/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-09-07T06:13:46.6397500Z copying torch/_vendor/packaging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-09-07T06:13:46.6405620Z copying torch/_vendor/packaging/_structures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-09-07T06:13:46.6414390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-09-07T06:13:46.6414790Z copying torch/cpu/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-09-07T06:13:46.6421770Z copying torch/cpu/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-09-07T06:13:46.6428750Z copying torch/cpu/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-09-07T06:13:46.6436670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-09-07T06:13:46.6437250Z copying torch/distributed/_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-09-07T06:13:46.6445060Z copying torch/distributed/_tensor/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-09-07T06:13:46.6452530Z copying torch/distributed/_tensor/placement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-09-07T06:13:46.6461110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharding_spec 2025-09-07T06:13:46.6461620Z copying torch/distributed/_sharding_spec/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharding_spec 2025-09-07T06:13:46.6470150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-09-07T06:13:46.6470630Z copying torch/distributed/launcher/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-09-07T06:13:46.6478040Z copying torch/distributed/launcher/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-09-07T06:13:46.6489930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6490560Z copying torch/distributed/checkpoint/_async_process_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6498470Z copying torch/distributed/checkpoint/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6505910Z copying torch/distributed/checkpoint/format_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6513760Z copying torch/distributed/checkpoint/planner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6522020Z copying torch/distributed/checkpoint/_consolidate_hf_safetensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6536160Z copying torch/distributed/checkpoint/_dedup_save_plans.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6543330Z copying torch/distributed/checkpoint/state_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6564380Z copying torch/distributed/checkpoint/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6571820Z copying torch/distributed/checkpoint/_storage_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6578700Z copying torch/distributed/checkpoint/_version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6585630Z copying torch/distributed/checkpoint/_traverse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6592590Z copying torch/distributed/checkpoint/_sharded_tensor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6599920Z copying torch/distributed/checkpoint/_dedup_tensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6606740Z copying torch/distributed/checkpoint/filesystem.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6619850Z copying torch/distributed/checkpoint/state_dict_saver.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6635170Z copying torch/distributed/checkpoint/quantized_hf_storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6643140Z copying torch/distributed/checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6651440Z copying torch/distributed/checkpoint/_hf_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6659380Z copying torch/distributed/checkpoint/logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6666470Z copying torch/distributed/checkpoint/_pg_transport.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6675660Z copying torch/distributed/checkpoint/resharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6683130Z copying torch/distributed/checkpoint/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6689890Z copying torch/distributed/checkpoint/state_dict_loader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6698810Z copying torch/distributed/checkpoint/_async_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6706250Z copying torch/distributed/checkpoint/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6714990Z copying torch/distributed/checkpoint/default_planner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6728230Z copying torch/distributed/checkpoint/storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6736050Z copying torch/distributed/checkpoint/_state_dict_stager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6743830Z copying torch/distributed/checkpoint/planner_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6758750Z copying torch/distributed/checkpoint/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6767440Z copying torch/distributed/checkpoint/_async_thread_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6775240Z copying torch/distributed/checkpoint/staging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6790790Z copying torch/distributed/checkpoint/_checkpointer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6798220Z copying torch/distributed/checkpoint/stateful.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6806430Z copying torch/distributed/checkpoint/_fsspec_filesystem.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6813850Z copying torch/distributed/checkpoint/_extension.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6820690Z copying torch/distributed/checkpoint/_nested_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6829420Z copying torch/distributed/checkpoint/hf_storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-09-07T06:13:46.6838610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharded_tensor 2025-09-07T06:13:46.6839130Z copying torch/distributed/_sharded_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharded_tensor 2025-09-07T06:13:46.6847310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-09-07T06:13:46.6847750Z copying torch/distributed/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-09-07T06:13:46.6855120Z copying torch/distributed/nn/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-09-07T06:13:46.6862850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-09-07T06:13:46.6863350Z copying torch/distributed/elastic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-09-07T06:13:46.6870720Z copying torch/distributed/elastic/control_plane.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-09-07T06:13:46.6877940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/autograd 2025-09-07T06:13:46.6878430Z copying torch/distributed/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/autograd 2025-09-07T06:13:46.6886560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-09-07T06:13:46.6887050Z copying torch/distributed/pipelining/_IR.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-09-07T06:13:46.6908460Z copying torch/distributed/pipelining/_unflatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-09-07T06:13:46.6915630Z copying torch/distributed/pipelining/_schedule_visualizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-09-07T06:13:46.6922950Z copying torch/distributed/pipelining/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-09-07T06:13:46.6930150Z copying torch/distributed/pipelining/microbatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-09-07T06:13:46.6937700Z copying torch/distributed/pipelining/_backward.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-09-07T06:13:46.6945970Z copying torch/distributed/pipelining/_debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-09-07T06:13:46.6952930Z copying torch/distributed/pipelining/stage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-09-07T06:13:46.6974840Z copying torch/distributed/pipelining/schedules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-09-07T06:13:46.7005600Z copying torch/distributed/pipelining/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-09-07T06:13:46.7013660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-09-07T06:13:46.7014150Z copying torch/distributed/algorithms/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-09-07T06:13:46.7021600Z copying torch/distributed/algorithms/join.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-09-07T06:13:46.7030440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7031000Z copying torch/distributed/optim/_deprecation_warning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7048900Z copying torch/distributed/optim/named_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7062000Z copying torch/distributed/optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7072700Z copying torch/distributed/optim/functional_sgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7080570Z copying torch/distributed/optim/functional_adagrad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7088660Z copying torch/distributed/optim/functional_adamw.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7096230Z copying torch/distributed/optim/apply_optimizer_in_backward.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7104090Z copying torch/distributed/optim/functional_adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7111510Z copying torch/distributed/optim/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7119080Z copying torch/distributed/optim/functional_rprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7126740Z copying torch/distributed/optim/post_localSGD_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7134800Z copying torch/distributed/optim/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7142550Z copying torch/distributed/optim/functional_adadelta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7150640Z copying torch/distributed/optim/functional_rmsprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7158730Z copying torch/distributed/optim/zero_redundancy_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7188550Z copying torch/distributed/optim/functional_adamax.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:46.7198060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-09-07T06:13:46.7198580Z copying torch/distributed/_composable/replicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-09-07T06:13:46.7209050Z copying torch/distributed/_composable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-09-07T06:13:46.7215670Z copying torch/distributed/_composable/replicate_with_fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-09-07T06:13:46.7222410Z copying torch/distributed/_composable/contract.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-09-07T06:13:46.7230200Z copying torch/distributed/_composable/checkpoint_activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-09-07T06:13:46.7239130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-09-07T06:13:46.7239590Z copying torch/distributed/_tools/mem_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-09-07T06:13:46.7257350Z copying torch/distributed/_tools/ilp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-09-07T06:13:46.7265900Z copying torch/distributed/_tools/runtime_estimator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-09-07T06:13:46.7281640Z copying torch/distributed/_tools/fsdp2_mem_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-09-07T06:13:46.7296670Z copying torch/distributed/_tools/sac_estimator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-09-07T06:13:46.7309240Z copying torch/distributed/_tools/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-09-07T06:13:46.7316980Z copying torch/distributed/_tools/memory_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-09-07T06:13:46.7325180Z copying torch/distributed/_tools/fake_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-09-07T06:13:46.7333450Z copying torch/distributed/_tools/common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-09-07T06:13:46.7340120Z copying torch/distributed/_tools/sac_ilp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-09-07T06:13:46.7348670Z copying torch/distributed/_tools/mod_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-09-07T06:13:46.7359110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7359590Z copying torch/distributed/fsdp/_exec_order_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7367600Z copying torch/distributed/fsdp/_traversal_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7373410Z copying torch/distributed/fsdp/sharded_grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7380730Z copying torch/distributed/fsdp/_state_dict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7392920Z copying torch/distributed/fsdp/fully_sharded_data_parallel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7417880Z copying torch/distributed/fsdp/_wrap_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7425640Z copying torch/distributed/fsdp/_optim_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7448970Z copying torch/distributed/fsdp/_trace_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7457820Z copying torch/distributed/fsdp/_common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7473190Z copying torch/distributed/fsdp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7480770Z copying torch/distributed/fsdp/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7492450Z copying torch/distributed/fsdp/_limiter_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7498340Z copying torch/distributed/fsdp/_dynamo_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7506420Z copying torch/distributed/fsdp/_unshard_param_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7513660Z copying torch/distributed/fsdp/_shard_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7519380Z copying torch/distributed/fsdp/wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7531180Z copying torch/distributed/fsdp/_runtime_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7549320Z copying torch/distributed/fsdp/_fsdp_extensions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7557570Z copying torch/distributed/fsdp/_init_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7571850Z copying torch/distributed/fsdp/_debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7579450Z copying torch/distributed/fsdp/_flat_param.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-09-07T06:13:46.7609580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-09-07T06:13:46.7610050Z copying torch/distributed/_shard/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-09-07T06:13:46.7616840Z copying torch/distributed/_shard/op_registry_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-09-07T06:13:46.7623050Z copying torch/distributed/_shard/sharder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-09-07T06:13:46.7628650Z copying torch/distributed/_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-09-07T06:13:46.7635540Z copying torch/distributed/_shard/common_op_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-09-07T06:13:46.7641620Z copying torch/distributed/_shard/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-09-07T06:13:46.7648640Z copying torch/distributed/_shard/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-09-07T06:13:46.7655950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-09-07T06:13:46.7656520Z copying torch/distributed/_symmetric_memory/_nvshmem_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-09-07T06:13:46.7671080Z copying torch/distributed/_symmetric_memory/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-09-07T06:13:46.7693940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-09-07T06:13:46.7694430Z copying torch/distributed/tensor/_shards_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-09-07T06:13:46.7702330Z copying torch/distributed/tensor/_redistribute.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-09-07T06:13:46.7710210Z copying torch/distributed/tensor/_sharding_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-09-07T06:13:46.7731590Z copying torch/distributed/tensor/_collective_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-09-07T06:13:46.7747260Z copying torch/distributed/tensor/_api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-09-07T06:13:46.7768020Z copying torch/distributed/tensor/_dtensor_spec.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-09-07T06:13:46.7774770Z copying torch/distributed/tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-09-07T06:13:46.7780960Z copying torch/distributed/tensor/_dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-09-07T06:13:46.7794480Z copying torch/distributed/tensor/_random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-09-07T06:13:46.7807050Z copying torch/distributed/tensor/_op_schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-09-07T06:13:46.7820290Z copying torch/distributed/tensor/placement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-09-07T06:13:46.7834090Z copying torch/distributed/tensor/_tp_conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-09-07T06:13:46.7841750Z copying torch/distributed/tensor/device_mesh.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-09-07T06:13:46.7848950Z copying torch/distributed/tensor/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-09-07T06:13:46.7858480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-09-07T06:13:46.7858930Z copying torch/distributed/rpc/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-09-07T06:13:46.7866200Z copying torch/distributed/rpc/options.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-09-07T06:13:46.7873240Z copying torch/distributed/rpc/internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-09-07T06:13:46.7880160Z copying torch/distributed/rpc/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-09-07T06:13:46.7886590Z copying torch/distributed/rpc/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-09-07T06:13:46.7893580Z copying torch/distributed/rpc/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-09-07T06:13:46.7908120Z copying torch/distributed/rpc/rref_proxy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-09-07T06:13:46.7915070Z copying torch/distributed/rpc/server_process_global_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-09-07T06:13:46.7922410Z copying torch/distributed/rpc/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-09-07T06:13:46.7932770Z copying torch/distributed/rpc/backend_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-09-07T06:13:46.7943700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:46.7944310Z copying torch/distributed/checkpoint/_experimental/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:46.7950510Z copying torch/distributed/checkpoint/_experimental/barriers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:46.7962330Z copying torch/distributed/checkpoint/_experimental/checkpointer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:46.7970980Z copying torch/distributed/checkpoint/_experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:46.7977920Z copying torch/distributed/checkpoint/_experimental/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:46.7984640Z copying torch/distributed/checkpoint/_experimental/builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:46.7990920Z copying torch/distributed/checkpoint/_experimental/checkpoint_reader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:46.7998020Z copying torch/distributed/checkpoint/_experimental/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:46.8004830Z copying torch/distributed/checkpoint/_experimental/checkpoint_process.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:46.8012250Z copying torch/distributed/checkpoint/_experimental/checkpoint_writer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:46.8019010Z copying torch/distributed/checkpoint/_experimental/staging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:46.8027540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-09-07T06:13:46.8028030Z copying torch/distributed/nn/jit/instantiator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-09-07T06:13:46.8035500Z copying torch/distributed/nn/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-09-07T06:13:46.8036750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-09-07T06:13:46.8037320Z copying torch/distributed/nn/api/remote_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-09-07T06:13:46.8052240Z copying torch/distributed/nn/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-09-07T06:13:46.8053470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-09-07T06:13:46.8054070Z copying torch/distributed/nn/jit/templates/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-09-07T06:13:46.8055000Z copying torch/distributed/nn/jit/templates/remote_module_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-09-07T06:13:46.8064110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-09-07T06:13:46.8064640Z copying torch/distributed/elastic/metrics/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-09-07T06:13:46.8071800Z copying torch/distributed/elastic/metrics/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-09-07T06:13:46.8079900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-09-07T06:13:46.8080550Z copying torch/distributed/elastic/rendezvous/etcd_store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-09-07T06:13:46.8088610Z copying torch/distributed/elastic/rendezvous/registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-09-07T06:13:46.8096470Z copying torch/distributed/elastic/rendezvous/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-09-07T06:13:46.8103790Z copying torch/distributed/elastic/rendezvous/_etcd_stub.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-09-07T06:13:46.8109910Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-09-07T06:13:46.8125590Z copying torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-09-07T06:13:46.8133500Z copying torch/distributed/elastic/rendezvous/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-09-07T06:13:46.8141170Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-09-07T06:13:46.8148850Z copying torch/distributed/elastic/rendezvous/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-09-07T06:13:46.8156770Z copying torch/distributed/elastic/rendezvous/dynamic_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-09-07T06:13:46.8184690Z copying torch/distributed/elastic/rendezvous/etcd_server.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-09-07T06:13:46.8192780Z copying torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-09-07T06:13:46.8200860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-09-07T06:13:46.8201480Z copying torch/distributed/elastic/multiprocessing/tail_log.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-09-07T06:13:46.8208920Z copying torch/distributed/elastic/multiprocessing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-09-07T06:13:46.8218410Z copying torch/distributed/elastic/multiprocessing/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-09-07T06:13:46.8232710Z copying torch/distributed/elastic/multiprocessing/redirects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-09-07T06:13:46.8240570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-09-07T06:13:46.8241110Z copying torch/distributed/elastic/timer/local_timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-09-07T06:13:46.8249400Z copying torch/distributed/elastic/timer/debug_info_logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-09-07T06:13:46.8256380Z copying torch/distributed/elastic/timer/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-09-07T06:13:46.8264100Z copying torch/distributed/elastic/timer/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-09-07T06:13:46.8272110Z copying torch/distributed/elastic/timer/file_based_local_timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-09-07T06:13:46.8287420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-09-07T06:13:46.8287930Z copying torch/distributed/elastic/utils/store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-09-07T06:13:46.8295320Z copying torch/distributed/elastic/utils/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-09-07T06:13:46.8302590Z copying torch/distributed/elastic/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-09-07T06:13:46.8310030Z copying torch/distributed/elastic/utils/log_level.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-09-07T06:13:46.8317640Z copying torch/distributed/elastic/utils/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-09-07T06:13:46.8325010Z copying torch/distributed/elastic/utils/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-09-07T06:13:46.8333100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent 2025-09-07T06:13:46.8333610Z copying torch/distributed/elastic/agent/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent 2025-09-07T06:13:46.8334970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-09-07T06:13:46.8335580Z copying torch/distributed/elastic/events/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-09-07T06:13:46.8342690Z copying torch/distributed/elastic/events/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-09-07T06:13:46.8351080Z copying torch/distributed/elastic/events/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-09-07T06:13:46.8358880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-09-07T06:13:46.8359810Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-09-07T06:13:46.8367020Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-09-07T06:13:46.8373750Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-09-07T06:13:46.8381250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-09-07T06:13:46.8381930Z copying torch/distributed/elastic/multiprocessing/errors/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-09-07T06:13:46.8388360Z copying torch/distributed/elastic/multiprocessing/errors/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-09-07T06:13:46.8394780Z copying torch/distributed/elastic/multiprocessing/errors/error_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-09-07T06:13:46.8402400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-09-07T06:13:46.8403030Z copying torch/distributed/elastic/utils/data/elastic_distributed_sampler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-09-07T06:13:46.8410520Z copying torch/distributed/elastic/utils/data/cycling_iterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-09-07T06:13:46.8417380Z copying torch/distributed/elastic/utils/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-09-07T06:13:46.8425020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-09-07T06:13:46.8425640Z copying torch/distributed/elastic/agent/server/health_check_server.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-09-07T06:13:46.8432780Z copying torch/distributed/elastic/agent/server/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-09-07T06:13:46.8440290Z copying torch/distributed/elastic/agent/server/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-09-07T06:13:46.8455080Z copying torch/distributed/elastic/agent/server/local_elastic_agent.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-09-07T06:13:46.8470180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-09-07T06:13:46.8470770Z copying torch/distributed/algorithms/_comm_hooks/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-09-07T06:13:46.8479730Z copying torch/distributed/algorithms/_comm_hooks/default_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-09-07T06:13:46.8487870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-09-07T06:13:46.8488500Z copying torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-09-07T06:13:46.8496450Z copying torch/distributed/algorithms/_checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-09-07T06:13:46.8497830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-09-07T06:13:46.8498460Z copying torch/distributed/algorithms/model_averaging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-09-07T06:13:46.8499340Z copying torch/distributed/algorithms/model_averaging/averagers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-09-07T06:13:46.8505810Z copying torch/distributed/algorithms/model_averaging/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-09-07T06:13:46.8515660Z copying torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-09-07T06:13:46.8525000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:46.8525710Z copying torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:46.8533090Z copying torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:46.8540140Z copying torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:46.8545820Z copying torch/distributed/algorithms/ddp_comm_hooks/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:46.8553070Z copying torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:46.8559370Z copying torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:46.8573130Z copying torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:46.8580350Z copying torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:46.8587250Z copying torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:46.8611160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-09-07T06:13:46.8611840Z copying torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-09-07T06:13:46.8626100Z copying torch/distributed/algorithms/_optimizer_overlap/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-09-07T06:13:46.8635640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-09-07T06:13:46.8636260Z copying torch/distributed/algorithms/_quantization/quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-09-07T06:13:46.8644530Z copying torch/distributed/algorithms/_quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-09-07T06:13:46.8645680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-09-07T06:13:46.8646380Z copying torch/distributed/_composable/fsdp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-09-07T06:13:46.8653880Z copying torch/distributed/_composable/fsdp/fully_shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-09-07T06:13:46.8661080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:46.8661680Z copying torch/distributed/fsdp/_fully_shard/_fsdp_api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:46.8669810Z copying torch/distributed/fsdp/_fully_shard/_fsdp_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:46.8677500Z copying torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:46.8692090Z copying torch/distributed/fsdp/_fully_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:46.8699550Z copying torch/distributed/fsdp/_fully_shard/_fsdp_param.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:46.8714300Z copying torch/distributed/fsdp/_fully_shard/_fsdp_init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:46.8721740Z copying torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:46.8735110Z copying torch/distributed/fsdp/_fully_shard/_fully_shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:46.8748180Z copying torch/distributed/fsdp/_fully_shard/_fsdp_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:46.8762480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/checkpoint 2025-09-07T06:13:46.8763030Z copying torch/distributed/_shard/checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/checkpoint 2025-09-07T06:13:46.8770350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:46.8770960Z copying torch/distributed/_shard/sharded_tensor/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:46.8776500Z copying torch/distributed/_shard/sharded_tensor/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:46.8782320Z copying torch/distributed/_shard/sharded_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:46.8795230Z copying torch/distributed/_shard/sharded_tensor/logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:46.8800770Z copying torch/distributed/_shard/sharded_tensor/reshard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:46.8808490Z copying torch/distributed/_shard/sharded_tensor/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:46.8829980Z copying torch/distributed/_shard/sharded_tensor/shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:46.8837470Z copying torch/distributed/_shard/sharded_tensor/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:46.8844660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-09-07T06:13:46.8845220Z copying torch/distributed/_shard/sharding_plan/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-09-07T06:13:46.8851410Z copying torch/distributed/_shard/sharding_plan/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-09-07T06:13:46.8860300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-09-07T06:13:46.8860860Z copying torch/distributed/_shard/sharding_spec/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-09-07T06:13:46.8868130Z copying torch/distributed/_shard/sharding_spec/_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-09-07T06:13:46.8876200Z copying torch/distributed/_shard/sharding_spec/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-09-07T06:13:46.8883920Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-09-07T06:13:46.8892910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-09-07T06:13:46.8893470Z copying torch/distributed/_shard/sharded_optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-09-07T06:13:46.8901080Z copying torch/distributed/_shard/sharded_optim/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-09-07T06:13:46.8908920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-09-07T06:13:46.8909530Z copying torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-09-07T06:13:46.8916460Z copying torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-09-07T06:13:46.8923930Z copying torch/distributed/_shard/sharded_tensor/_ops/_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-09-07T06:13:46.8931300Z copying torch/distributed/_shard/sharded_tensor/_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-09-07T06:13:46.8938200Z copying torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-09-07T06:13:46.8949540Z copying torch/distributed/_shard/sharded_tensor/_ops/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-09-07T06:13:46.8952730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-09-07T06:13:46.8953500Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-09-07T06:13:46.8962020Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-09-07T06:13:46.8969920Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-09-07T06:13:46.8970870Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-09-07T06:13:46.8986610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-09-07T06:13:46.8987190Z copying torch/distributed/tensor/experimental/_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-09-07T06:13:46.9014080Z copying torch/distributed/tensor/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-09-07T06:13:46.9021710Z copying torch/distributed/tensor/experimental/_tp_transform.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-09-07T06:13:46.9035290Z copying torch/distributed/tensor/experimental/_register_sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-09-07T06:13:46.9042820Z copying torch/distributed/tensor/experimental/_func_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-09-07T06:13:46.9051140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-09-07T06:13:46.9051670Z copying torch/distributed/tensor/parallel/ddp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-09-07T06:13:46.9059010Z copying torch/distributed/tensor/parallel/fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-09-07T06:13:46.9067070Z copying torch/distributed/tensor/parallel/style.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-09-07T06:13:46.9081490Z copying torch/distributed/tensor/parallel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-09-07T06:13:46.9089100Z copying torch/distributed/tensor/parallel/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-09-07T06:13:46.9096200Z copying torch/distributed/tensor/parallel/loss.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-09-07T06:13:46.9109910Z copying torch/distributed/tensor/parallel/input_reshard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-09-07T06:13:46.9117400Z copying torch/distributed/tensor/parallel/_data_parallel_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-09-07T06:13:46.9126470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-09-07T06:13:46.9126990Z copying torch/distributed/tensor/_ops/_einsum_strategy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-09-07T06:13:46.9134330Z copying torch/distributed/tensor/_ops/_embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-09-07T06:13:46.9141290Z copying torch/distributed/tensor/_ops/_tensor_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-09-07T06:13:46.9155010Z copying torch/distributed/tensor/_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-09-07T06:13:46.9162110Z copying torch/distributed/tensor/_ops/_conv_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-09-07T06:13:46.9168630Z copying torch/distributed/tensor/_ops/_pointwise_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-09-07T06:13:46.9181630Z copying torch/distributed/tensor/_ops/_matrix_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-09-07T06:13:46.9195060Z copying torch/distributed/tensor/_ops/_math_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-09-07T06:13:46.9209910Z copying torch/distributed/tensor/_ops/_common_rules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-09-07T06:13:46.9217610Z copying torch/distributed/tensor/_ops/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-09-07T06:13:46.9225250Z copying torch/distributed/tensor/_ops/_random_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-09-07T06:13:46.9232520Z copying torch/distributed/tensor/_ops/_view_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-09-07T06:13:46.9246350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-09-07T06:13:46.9246870Z copying torch/distributed/tensor/debug/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-09-07T06:13:46.9254190Z copying torch/distributed/tensor/debug/_op_coverage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-09-07T06:13:46.9261270Z copying torch/distributed/tensor/debug/_visualize_sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-09-07T06:13:46.9268450Z copying torch/distributed/tensor/debug/_comm_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-09-07T06:13:46.9282840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-09-07T06:13:46.9283350Z copying torch/distributed/rpc/_testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-09-07T06:13:46.9290700Z copying torch/distributed/rpc/_testing/faulty_agent_backend_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-09-07T06:13:46.9299580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-09-07T06:13:46.9300040Z copying torch/autograd/_functions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-09-07T06:13:46.9308110Z copying torch/autograd/_functions/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-09-07T06:13:46.9316130Z copying torch/autograd/_functions/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-09-07T06:13:46.9326870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9327330Z copying torch/fx/experimental/validator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9343650Z copying torch/fx/experimental/meta_tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9352140Z copying torch/fx/experimental/_dynamism.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9359290Z copying torch/fx/experimental/partitioner_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9366660Z copying torch/fx/experimental/recording.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9380670Z copying torch/fx/experimental/rewriter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9388100Z copying torch/fx/experimental/const_fold.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9395860Z copying torch/fx/experimental/accelerator_partitioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9418190Z copying torch/fx/experimental/normalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9428460Z copying torch/fx/experimental/_constant_symnode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9435400Z copying torch/fx/experimental/optimization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9450210Z copying torch/fx/experimental/refinement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9457940Z copying torch/fx/experimental/graph_gradual_typechecker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9471500Z copying torch/fx/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9472160Z copying torch/fx/experimental/sym_node.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9495390Z copying torch/fx/experimental/unify_refinements.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9502520Z copying torch/fx/experimental/merge_matmul.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9509720Z copying torch/fx/experimental/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9516400Z copying torch/fx/experimental/schema_type_annotation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9524450Z copying torch/fx/experimental/symbolic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9574500Z copying torch/fx/experimental/_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9581350Z copying torch/fx/experimental/_backward_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9587330Z copying torch/fx/experimental/proxy_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-09-07T06:13:46.9618940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9619340Z copying torch/fx/passes/net_min_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9634570Z copying torch/fx/passes/param_fetch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9642440Z copying torch/fx/passes/tools_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9650440Z copying torch/fx/passes/split_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9658310Z copying torch/fx/passes/shape_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9666110Z copying torch/fx/passes/split_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9681140Z copying torch/fx/passes/runtime_assert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9696880Z copying torch/fx/passes/reinplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9709730Z copying torch/fx/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9717080Z copying torch/fx/passes/pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9724540Z copying torch/fx/passes/_tensorify_python_scalars.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9731870Z copying torch/fx/passes/fake_tensor_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9739180Z copying torch/fx/passes/operator_support.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9747330Z copying torch/fx/passes/annotate_getitem_nodes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9754800Z copying torch/fx/passes/graph_manipulation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9761630Z copying torch/fx/passes/graph_drawer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9774920Z copying torch/fx/passes/splitter_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9790460Z copying torch/fx/passes/graph_transform_observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-09-07T06:13:46.9799310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-09-07T06:13:46.9799880Z copying torch/fx/experimental/unification/dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-09-07T06:13:46.9806170Z copying torch/fx/experimental/unification/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-09-07T06:13:46.9812100Z copying torch/fx/experimental/unification/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-09-07T06:13:46.9818950Z copying torch/fx/experimental/unification/unification_tools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-09-07T06:13:46.9825490Z copying torch/fx/experimental/unification/variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-09-07T06:13:46.9832400Z copying torch/fx/experimental/unification/more.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-09-07T06:13:46.9838780Z copying torch/fx/experimental/unification/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-09-07T06:13:46.9845650Z copying torch/fx/experimental/unification/match.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-09-07T06:13:46.9853050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:46.9853680Z copying torch/fx/experimental/migrate_gradual_types/constraint.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:46.9867110Z copying torch/fx/experimental/migrate_gradual_types/constraint_transformation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:46.9882620Z copying torch/fx/experimental/migrate_gradual_types/util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:46.9890130Z copying torch/fx/experimental/migrate_gradual_types/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:46.9890940Z copying torch/fx/experimental/migrate_gradual_types/operation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:46.9898220Z copying torch/fx/experimental/migrate_gradual_types/transform_to_z3.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:46.9906580Z copying torch/fx/experimental/migrate_gradual_types/z3_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:46.9913710Z copying torch/fx/experimental/migrate_gradual_types/constraint_generator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:46.9935630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-09-07T06:13:46.9936340Z copying torch/fx/experimental/unification/multipledispatch/dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-09-07T06:13:46.9943100Z copying torch/fx/experimental/unification/multipledispatch/variadic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-09-07T06:13:46.9949920Z copying torch/fx/experimental/unification/multipledispatch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-09-07T06:13:46.9957030Z copying torch/fx/experimental/unification/multipledispatch/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-09-07T06:13:46.9963940Z copying torch/fx/experimental/unification/multipledispatch/conflict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-09-07T06:13:46.9970980Z copying torch/fx/experimental/unification/multipledispatch/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-09-07T06:13:46.9978450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-09-07T06:13:46.9978940Z copying torch/fx/passes/infra/partitioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-09-07T06:13:46.9993880Z copying torch/fx/passes/infra/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-09-07T06:13:47.0001820Z copying torch/fx/passes/infra/pass_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-09-07T06:13:47.0009080Z copying torch/fx/passes/infra/pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-09-07T06:13:47.0017410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-09-07T06:13:47.0017920Z copying torch/fx/passes/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-09-07T06:13:47.0019130Z copying torch/fx/passes/backends/cudagraphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-09-07T06:13:47.0028310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-09-07T06:13:47.0028750Z copying torch/fx/passes/tests/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-09-07T06:13:47.0029370Z copying torch/fx/passes/tests/test_pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-09-07T06:13:47.0038240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-09-07T06:13:47.0038720Z copying torch/fx/passes/utils/source_matcher_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-09-07T06:13:47.0046720Z copying torch/fx/passes/utils/matcher_with_name_node_map_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-09-07T06:13:47.0053810Z copying torch/fx/passes/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-09-07T06:13:47.0061380Z copying torch/fx/passes/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-09-07T06:13:47.0070000Z copying torch/fx/passes/utils/matcher_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-09-07T06:13:47.0084090Z copying torch/fx/passes/utils/fuser_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-09-07T06:13:47.0092360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect 2025-09-07T06:13:47.0092810Z copying torch/fx/passes/dialect/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect 2025-09-07T06:13:47.0094270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-09-07T06:13:47.0094870Z copying torch/fx/passes/dialect/common/cse_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-09-07T06:13:47.0102950Z copying torch/fx/passes/dialect/common/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-09-07T06:13:47.0104420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-09-07T06:13:47.0105000Z copying torch/cuda/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-09-07T06:13:47.0113650Z copying torch/cuda/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-09-07T06:13:47.0121090Z copying torch/cuda/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-09-07T06:13:47.0128290Z copying torch/cuda/amp/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-09-07T06:13:47.0136690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/opt_einsum 2025-09-07T06:13:47.0137160Z copying torch/backends/opt_einsum/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/opt_einsum 2025-09-07T06:13:47.0144540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mha 2025-09-07T06:13:47.0144950Z copying torch/backends/mha/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mha 2025-09-07T06:13:47.0152470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/nnpack 2025-09-07T06:13:47.0152910Z copying torch/backends/nnpack/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/nnpack 2025-09-07T06:13:47.0160160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mps 2025-09-07T06:13:47.0160580Z copying torch/backends/mps/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mps 2025-09-07T06:13:47.0167710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cpu 2025-09-07T06:13:47.0168120Z copying torch/backends/cpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cpu 2025-09-07T06:13:47.0175490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-09-07T06:13:47.0175940Z copying torch/backends/_coreml/preprocess.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-09-07T06:13:47.0183240Z copying torch/backends/_coreml/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-09-07T06:13:47.0184930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cuda 2025-09-07T06:13:47.0185550Z copying torch/backends/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cuda 2025-09-07T06:13:47.0211300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/quantized 2025-09-07T06:13:47.0211760Z copying torch/backends/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/quantized 2025-09-07T06:13:47.0225010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/miopen 2025-09-07T06:13:47.0225450Z copying torch/backends/miopen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/miopen 2025-09-07T06:13:47.0232940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkl 2025-09-07T06:13:47.0233350Z copying torch/backends/mkl/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkl 2025-09-07T06:13:47.0239910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xnnpack 2025-09-07T06:13:47.0240420Z copying torch/backends/xnnpack/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xnnpack 2025-09-07T06:13:47.0247940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/kleidiai 2025-09-07T06:13:47.0248400Z copying torch/backends/kleidiai/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/kleidiai 2025-09-07T06:13:47.0256280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cusparselt 2025-09-07T06:13:47.0256740Z copying torch/backends/cusparselt/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cusparselt 2025-09-07T06:13:47.0269080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkldnn 2025-09-07T06:13:47.0269520Z copying torch/backends/mkldnn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkldnn 2025-09-07T06:13:47.0279950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-09-07T06:13:47.0280430Z copying torch/backends/xeon/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-09-07T06:13:47.0280940Z copying torch/backends/xeon/run_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-09-07T06:13:47.0296010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-09-07T06:13:47.0296440Z copying torch/backends/_nnapi/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-09-07T06:13:47.0297240Z copying torch/backends/_nnapi/serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-09-07T06:13:47.0324500Z copying torch/backends/_nnapi/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-09-07T06:13:47.0331300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/openmp 2025-09-07T06:13:47.0331740Z copying torch/backends/openmp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/openmp 2025-09-07T06:13:47.0338950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-09-07T06:13:47.0339380Z copying torch/backends/cudnn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-09-07T06:13:47.0346040Z copying torch/backends/cudnn/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-09-07T06:13:47.0354060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-09-07T06:13:47.0354540Z copying torch/masked/maskedtensor/binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-09-07T06:13:47.0362710Z copying torch/masked/maskedtensor/creation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-09-07T06:13:47.0369910Z copying torch/masked/maskedtensor/_ops_refs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-09-07T06:13:47.0383670Z copying torch/masked/maskedtensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-09-07T06:13:47.0391200Z copying torch/masked/maskedtensor/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-09-07T06:13:47.0398420Z copying torch/masked/maskedtensor/unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-09-07T06:13:47.0404490Z copying torch/masked/maskedtensor/reductions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-09-07T06:13:47.0411470Z copying torch/masked/maskedtensor/passthrough.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-09-07T06:13:47.0419130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-09-07T06:13:47.0419590Z copying torch/optim/_multi_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-09-07T06:13:47.0428720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-09-07T06:13:47.0429190Z copying torch/_inductor/analysis/device_info.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-09-07T06:13:47.0437420Z copying torch/_inductor/analysis/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-09-07T06:13:47.0437990Z copying torch/_inductor/analysis/profile_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-09-07T06:13:47.0454210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-09-07T06:13:47.0454680Z copying torch/_inductor/runtime/cache_dir_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-09-07T06:13:47.0462900Z copying torch/_inductor/runtime/triton_heuristics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-09-07T06:13:47.0493920Z copying torch/_inductor/runtime/runtime_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-09-07T06:13:47.0502790Z copying torch/_inductor/runtime/halide_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-09-07T06:13:47.0511070Z copying torch/_inductor/runtime/coordinate_descent_tuner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-09-07T06:13:47.0518740Z copying torch/_inductor/runtime/triton_compat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-09-07T06:13:47.0526220Z copying torch/_inductor/runtime/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-09-07T06:13:47.0526810Z copying torch/_inductor/runtime/compile_tasks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-09-07T06:13:47.0534250Z copying torch/_inductor/runtime/triton_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-09-07T06:13:47.0548700Z copying torch/_inductor/runtime/autotune_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-09-07T06:13:47.0564390Z copying torch/_inductor/runtime/hints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-09-07T06:13:47.0572090Z copying torch/_inductor/runtime/static_cuda_launcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-09-07T06:13:47.0579880Z copying torch/_inductor/runtime/benchmarking.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-09-07T06:13:47.0587820Z copying torch/_inductor/runtime/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-09-07T06:13:47.0599210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0599700Z copying torch/_inductor/codegen/cpp_grouped_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0613830Z copying torch/_inductor/codegen/cpp_wrapper_gpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0628540Z copying torch/_inductor/codegen/wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0657920Z copying torch/_inductor/codegen/mps_device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0665680Z copying torch/_inductor/codegen/triton_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0673920Z copying torch/_inductor/codegen/triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0721690Z copying torch/_inductor/codegen/cpp_bmm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0729500Z copying torch/_inductor/codegen/mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0743120Z copying torch/_inductor/codegen/aoti_hipify_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0750550Z copying torch/_inductor/codegen/simd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0780750Z copying torch/_inductor/codegen/triton_combo_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0796020Z copying torch/_inductor/codegen/memory_planning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0810810Z copying torch/_inductor/codegen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0811470Z copying torch/_inductor/codegen/cpp_flex_attention_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0827160Z copying torch/_inductor/codegen/wrapper_fxir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0842110Z copying torch/_inductor/codegen/cpp_micro_gemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0864310Z copying torch/_inductor/codegen/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0905620Z copying torch/_inductor/codegen/cpp_wrapper_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0935740Z copying torch/_inductor/codegen/block_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0943850Z copying torch/_inductor/codegen/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0973070Z copying torch/_inductor/codegen/cpp_wrapper_mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.0988470Z copying torch/_inductor/codegen/cpp_template_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.1005070Z copying torch/_inductor/codegen/cpp_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.1024460Z copying torch/_inductor/codegen/segmented_tree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.1036830Z copying torch/_inductor/codegen/cpu_device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.1045710Z copying torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.1060470Z copying torch/_inductor/codegen/triton_split_scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.1068230Z copying torch/_inductor/codegen/halide.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.1089930Z copying torch/_inductor/codegen/cpp_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.1097470Z copying torch/_inductor/codegen/cuda_combined_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.1104730Z copying torch/_inductor/codegen/multi_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.1118990Z copying torch/_inductor/codegen/subgraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.1126190Z copying torch/_inductor/codegen/python_wrapper_mtia.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.1133240Z copying torch/_inductor/codegen/cpp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.1145590Z copying torch/_inductor/codegen/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.1153580Z copying torch/_inductor/codegen/simd_kernel_features.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-09-07T06:13:47.1167990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-09-07T06:13:47.1168530Z copying torch/_inductor/template_heuristics/triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-09-07T06:13:47.1196270Z copying torch/_inductor/template_heuristics/contiguous_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-09-07T06:13:47.1203140Z copying torch/_inductor/template_heuristics/registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-09-07T06:13:47.1210650Z copying torch/_inductor/template_heuristics/gemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-09-07T06:13:47.1217760Z copying torch/_inductor/template_heuristics/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-09-07T06:13:47.1224380Z copying torch/_inductor/template_heuristics/triton_addmm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-09-07T06:13:47.1231700Z copying torch/_inductor/template_heuristics/decompose_k.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-09-07T06:13:47.1238570Z copying torch/_inductor/template_heuristics/aten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-09-07T06:13:47.1245840Z copying torch/_inductor/template_heuristics/base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics 2025-09-07T06:13:47.1253550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-09-07T06:13:47.1254190Z copying torch/_inductor/compile_worker/tracked_process_pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-09-07T06:13:47.1261040Z copying torch/_inductor/compile_worker/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-09-07T06:13:47.1261850Z copying torch/_inductor/compile_worker/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-09-07T06:13:47.1269250Z copying torch/_inductor/compile_worker/subproc_pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-09-07T06:13:47.1275570Z copying torch/_inductor/compile_worker/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-09-07T06:13:47.1283960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-09-07T06:13:47.1284570Z copying torch/_inductor/autoheuristic/autoheuristic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-09-07T06:13:47.1292650Z copying torch/_inductor/autoheuristic/autoheuristic_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-09-07T06:13:47.1299500Z copying torch/_inductor/autoheuristic/learned_heuristic_controller.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-09-07T06:13:47.1305620Z copying torch/_inductor/autoheuristic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-09-07T06:13:47.1306270Z copying torch/_inductor/autoheuristic/learnedheuristic_interface.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-09-07T06:13:47.1315350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1315820Z copying torch/_inductor/fx_passes/post_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1337460Z copying torch/_inductor/fx_passes/fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1345070Z copying torch/_inductor/fx_passes/replace_random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1351810Z copying torch/_inductor/fx_passes/ddp_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1367480Z copying torch/_inductor/fx_passes/numeric_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1375520Z copying torch/_inductor/fx_passes/decompose_mem_bound_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1382510Z copying torch/_inductor/fx_passes/reinplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1395590Z copying torch/_inductor/fx_passes/quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1425870Z copying torch/_inductor/fx_passes/split_cat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1458360Z copying torch/_inductor/fx_passes/dedupe_symint_uses.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1465820Z copying torch/_inductor/fx_passes/efficient_conv_bn_eval.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1473490Z copying torch/_inductor/fx_passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1474050Z copying torch/_inductor/fx_passes/group_batch_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1494580Z copying torch/_inductor/fx_passes/pre_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1508730Z copying torch/_inductor/fx_passes/binary_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1522090Z copying torch/_inductor/fx_passes/fuse_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1535850Z copying torch/_inductor/fx_passes/micro_pipeline_tp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1549910Z copying torch/_inductor/fx_passes/joint_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1564150Z copying torch/_inductor/fx_passes/bucketing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1578620Z copying torch/_inductor/fx_passes/b2b_gemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1593600Z copying torch/_inductor/fx_passes/mkldnn_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1614210Z copying torch/_inductor/fx_passes/pad_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1628540Z copying torch/_inductor/fx_passes/freezing_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1636660Z copying torch/_inductor/fx_passes/misc_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-09-07T06:13:47.1645120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-09-07T06:13:47.1645570Z copying torch/_inductor/kernel/mm_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-09-07T06:13:47.1653230Z copying torch/_inductor/kernel/mm_grouped.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-09-07T06:13:47.1666910Z copying torch/_inductor/kernel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-09-07T06:13:47.1674570Z copying torch/_inductor/kernel/mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-09-07T06:13:47.1690030Z copying torch/_inductor/kernel/bmm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-09-07T06:13:47.1859420Z copying torch/_inductor/kernel/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-09-07T06:13:47.2368690Z copying torch/_inductor/kernel/mm_plus_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-09-07T06:13:47.2378210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-09-07T06:13:47.2379170Z copying torch/_inductor/package/package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-09-07T06:13:47.2388260Z copying torch/_inductor/package/build_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-09-07T06:13:47.2396220Z copying torch/_inductor/package/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-09-07T06:13:47.2404960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-09-07T06:13:47.2405800Z copying torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-09-07T06:13:47.2413920Z copying torch/_inductor/codegen/cutedsl/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-09-07T06:13:47.2422230Z copying torch/_inductor/codegen/cutedsl/cutedsl_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-09-07T06:13:47.2430060Z copying torch/_inductor/codegen/cutedsl/cutedsl_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-09-07T06:13:47.2437460Z copying torch/_inductor/codegen/cutedsl/cutedsl_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl 2025-09-07T06:13:47.2448050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-09-07T06:13:47.2448760Z copying torch/_inductor/codegen/cuda/cutlass_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-09-07T06:13:47.2464980Z copying torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-09-07T06:13:47.2473840Z copying torch/_inductor/codegen/cuda/cuda_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-09-07T06:13:47.2482030Z copying torch/_inductor/codegen/cuda/gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-09-07T06:13:47.2516320Z copying torch/_inductor/codegen/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-09-07T06:13:47.2517420Z copying torch/_inductor/codegen/cuda/cutlass_presets.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-09-07T06:13:47.2525800Z copying torch/_inductor/codegen/cuda/cutlass_python_evt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-09-07T06:13:47.2534340Z copying torch/_inductor/codegen/cuda/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-09-07T06:13:47.2541860Z copying torch/_inductor/codegen/cuda/cuda_env.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-09-07T06:13:47.2548840Z copying torch/_inductor/codegen/cuda/serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-09-07T06:13:47.2562990Z copying torch/_inductor/codegen/cuda/cutlass_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-09-07T06:13:47.2570090Z copying torch/_inductor/codegen/cuda/cuda_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-09-07T06:13:47.2585960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-09-07T06:13:47.2586510Z copying torch/_inductor/codegen/xpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-09-07T06:13:47.2587550Z copying torch/_inductor/codegen/xpu/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-09-07T06:13:47.2596080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia 2025-09-07T06:13:47.2596620Z copying torch/_inductor/codegen/mtia/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia 2025-09-07T06:13:47.2597620Z copying torch/_inductor/codegen/mtia/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia 2025-09-07T06:13:47.2607970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-09-07T06:13:47.2608530Z copying torch/_inductor/codegen/rocm/ck_tile_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-09-07T06:13:47.2615290Z copying torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-09-07T06:13:47.2620970Z copying torch/_inductor/codegen/rocm/rocm_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-09-07T06:13:47.2627020Z copying torch/_inductor/codegen/rocm/rocm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-09-07T06:13:47.2633270Z copying torch/_inductor/codegen/rocm/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-09-07T06:13:47.2634110Z copying torch/_inductor/codegen/rocm/compile_command.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-09-07T06:13:47.2644940Z copying torch/_inductor/codegen/rocm/rocm_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-09-07T06:13:47.2650450Z copying torch/_inductor/codegen/rocm/ck_conv_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-09-07T06:13:47.2661810Z copying torch/_inductor/codegen/rocm/rocm_template_buffer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-09-07T06:13:47.2672680Z copying torch/_inductor/codegen/rocm/ck_universal_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-09-07T06:13:47.2687110Z copying torch/_inductor/codegen/rocm/ck_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-09-07T06:13:47.2694080Z copying torch/_inductor/codegen/rocm/rocm_benchmark_request.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-09-07T06:13:47.2700760Z copying torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-09-07T06:13:47.2722980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-09-07T06:13:47.2723680Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-09-07T06:13:47.2738050Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-09-07T06:13:47.2738870Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-09-07T06:13:47.2746940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports 2025-09-07T06:13:47.2747760Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports 2025-09-07T06:13:47.2749030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-09-07T06:13:47.2750070Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cudart.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-09-07T06:13:47.2757420Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-09-07T06:13:47.2764790Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cuda.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-09-07T06:13:47.2772460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot 2025-09-07T06:13:47.2773410Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot 2025-09-07T06:13:47.2781110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-09-07T06:13:47.2781970Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-09-07T06:13:47.2789310Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/special.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-09-07T06:13:47.2797660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-09-07T06:13:47.2798250Z copying torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-09-07T06:13:47.2805640Z copying torch/_inductor/autoheuristic/artifacts/_PadMMA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-09-07T06:13:47.2811840Z copying torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-09-07T06:13:47.2824130Z copying torch/_inductor/autoheuristic/artifacts/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-09-07T06:13:47.2824880Z copying torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-09-07T06:13:47.2837830Z copying torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-09-07T06:13:47.2846980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2847720Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2860970Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2878470Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2888490Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2905030Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2912670Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2920990Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2934650Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2942260Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2949470Z copying torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2957180Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2969910Z copying torch/_inductor/fx_passes/serialized_patterns/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2970670Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2976900Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2985450Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.2993830Z copying torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.3001090Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.3016190Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.3024060Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.3031330Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.3038990Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.3047050Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.3054680Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.3062920Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.3070930Z copying torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.3078320Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.3088990Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.3097820Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:47.3106550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-09-07T06:13:47.3107040Z copying torch/_inductor/kernel/flex/flex_decoding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-09-07T06:13:47.3107990Z copying torch/_inductor/kernel/flex/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-09-07T06:13:47.3115240Z copying torch/_inductor/kernel/flex/flex_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-09-07T06:13:47.3127450Z copying torch/_inductor/kernel/flex/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-09-07T06:13:47.3134070Z copying torch/_inductor/kernel/flex/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex 2025-09-07T06:13:47.3135610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark 2025-09-07T06:13:47.3136160Z copying torch/utils/benchmark/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark 2025-09-07T06:13:47.3145420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-09-07T06:13:47.3145870Z copying torch/utils/_sympy/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-09-07T06:13:47.3167560Z copying torch/utils/_sympy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-09-07T06:13:47.3168130Z copying torch/utils/_sympy/symbol.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-09-07T06:13:47.3175490Z copying torch/utils/_sympy/numbers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-09-07T06:13:47.3183180Z copying torch/utils/_sympy/reference.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-09-07T06:13:47.3190800Z copying torch/utils/_sympy/singleton_int.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-09-07T06:13:47.3197560Z copying torch/utils/_sympy/value_ranges.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-09-07T06:13:47.3211580Z copying torch/utils/_sympy/printers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-09-07T06:13:47.3226340Z copying torch/utils/_sympy/solve.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-09-07T06:13:47.3233990Z copying torch/utils/_sympy/interp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-09-07T06:13:47.3242460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-09-07T06:13:47.3242930Z copying torch/utils/serialization/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-09-07T06:13:47.3250530Z copying torch/utils/serialization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-09-07T06:13:47.3258480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backcompat 2025-09-07T06:13:47.3258920Z copying torch/utils/backcompat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backcompat 2025-09-07T06:13:47.3267730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-09-07T06:13:47.3268160Z copying torch/utils/hipify/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-09-07T06:13:47.3275730Z copying torch/utils/hipify/cuda_to_hip_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-09-07T06:13:47.3327360Z copying torch/utils/hipify/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-09-07T06:13:47.3335710Z copying torch/utils/hipify/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-09-07T06:13:47.3343380Z copying torch/utils/hipify/hipify_python.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-09-07T06:13:47.3359260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck 2025-09-07T06:13:47.3359700Z copying torch/utils/bottleneck/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck 2025-09-07T06:13:47.3361180Z copying torch/utils/bottleneck/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck 2025-09-07T06:13:47.3370070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-09-07T06:13:47.3370450Z copying torch/utils/viz/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-09-07T06:13:47.3371290Z copying torch/utils/viz/_cycles.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-09-07T06:13:47.3386350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-09-07T06:13:47.3386730Z copying torch/utils/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-09-07T06:13:47.3387910Z copying torch/utils/jit/log_extract.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-09-07T06:13:47.3397350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-09-07T06:13:47.3397830Z copying torch/utils/tensorboard/_pytorch_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-09-07T06:13:47.3406000Z copying torch/utils/tensorboard/_proto_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-09-07T06:13:47.3413480Z copying torch/utils/tensorboard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-09-07T06:13:47.3421130Z copying torch/utils/tensorboard/_embedding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-09-07T06:13:47.3427940Z copying torch/utils/tensorboard/_onnx_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-09-07T06:13:47.3435250Z copying torch/utils/tensorboard/summary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-09-07T06:13:47.3449740Z copying torch/utils/tensorboard/_convert_np.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-09-07T06:13:47.3457080Z copying torch/utils/tensorboard/writer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-09-07T06:13:47.3472290Z copying torch/utils/tensorboard/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-09-07T06:13:47.3481750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-09-07T06:13:47.3482190Z copying torch/utils/model_dump/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-09-07T06:13:47.3496810Z copying torch/utils/model_dump/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-09-07T06:13:47.3505880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-09-07T06:13:47.3506300Z copying torch/utils/data/graph_settings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-09-07T06:13:47.3513800Z copying torch/utils/data/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-09-07T06:13:47.3520100Z copying torch/utils/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-09-07T06:13:47.3525790Z copying torch/utils/data/dataset.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-09-07T06:13:47.3537700Z copying torch/utils/data/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-09-07T06:13:47.3543810Z copying torch/utils/data/backward_compatibility.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-09-07T06:13:47.3549990Z copying torch/utils/data/dataloader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-09-07T06:13:47.3588100Z copying torch/utils/data/sampler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-09-07T06:13:47.3596490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-09-07T06:13:47.3596980Z copying torch/utils/_strobelight/cli_function_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-09-07T06:13:47.3604910Z copying torch/utils/_strobelight/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-09-07T06:13:47.3606540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-09-07T06:13:47.3607160Z copying torch/utils/benchmark/op_fuzzers/binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-09-07T06:13:47.3615570Z copying torch/utils/benchmark/op_fuzzers/sparse_binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-09-07T06:13:47.3623240Z copying torch/utils/benchmark/op_fuzzers/sparse_unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-09-07T06:13:47.3630790Z copying torch/utils/benchmark/op_fuzzers/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-09-07T06:13:47.3631440Z copying torch/utils/benchmark/op_fuzzers/spectral.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-09-07T06:13:47.3639300Z copying torch/utils/benchmark/op_fuzzers/unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-09-07T06:13:47.3648190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-09-07T06:13:47.3648680Z copying torch/utils/benchmark/utils/timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-09-07T06:13:47.3670970Z copying torch/utils/benchmark/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-09-07T06:13:47.3671580Z copying torch/utils/benchmark/utils/sparse_fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-09-07T06:13:47.3679460Z copying torch/utils/benchmark/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-09-07T06:13:47.3687430Z copying torch/utils/benchmark/utils/compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-09-07T06:13:47.3695460Z copying torch/utils/benchmark/utils/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-09-07T06:13:47.3709490Z copying torch/utils/benchmark/utils/cpp_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-09-07T06:13:47.3717330Z copying torch/utils/benchmark/utils/compare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-09-07T06:13:47.3725270Z copying torch/utils/benchmark/utils/_stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-09-07T06:13:47.3734530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-09-07T06:13:47.3735060Z copying torch/utils/benchmark/examples/op_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-09-07T06:13:47.3743250Z copying torch/utils/benchmark/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-09-07T06:13:47.3743950Z copying torch/utils/benchmark/examples/simple_timeit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-09-07T06:13:47.3751230Z copying torch/utils/benchmark/examples/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-09-07T06:13:47.3758410Z copying torch/utils/benchmark/examples/spectral_ops_fuzz_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-09-07T06:13:47.3765650Z copying torch/utils/benchmark/examples/compare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-09-07T06:13:47.3773900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-09-07T06:13:47.3774550Z copying torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-09-07T06:13:47.3789050Z copying torch/utils/benchmark/utils/valgrind_wrapper/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-09-07T06:13:47.3790590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-09-07T06:13:47.3791140Z copying torch/utils/data/_utils/fetch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-09-07T06:13:47.3798250Z copying torch/utils/data/_utils/worker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-09-07T06:13:47.3805100Z copying torch/utils/data/_utils/collate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-09-07T06:13:47.3811830Z copying torch/utils/data/_utils/pin_memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-09-07T06:13:47.3818380Z copying torch/utils/data/_utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-09-07T06:13:47.3824530Z copying torch/utils/data/_utils/signal_handling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-09-07T06:13:47.3831670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-09-07T06:13:47.3832160Z copying torch/utils/data/datapipes/_decorator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-09-07T06:13:47.3839120Z copying torch/utils/data/datapipes/_typing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-09-07T06:13:47.3845670Z copying torch/utils/data/datapipes/_hook_iterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-09-07T06:13:47.3852330Z copying torch/utils/data/datapipes/datapipe.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-09-07T06:13:47.3868930Z copying torch/utils/data/datapipes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-09-07T06:13:47.3876440Z copying torch/utils/data/datapipes/gen_pyi.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-09-07T06:13:47.3878260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-09-07T06:13:47.3878840Z copying torch/utils/data/datapipes/dataframe/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-09-07T06:13:47.3885280Z copying torch/utils/data/datapipes/dataframe/datapipes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-09-07T06:13:47.3892570Z copying torch/utils/data/datapipes/dataframe/dataframe_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-09-07T06:13:47.3899040Z copying torch/utils/data/datapipes/dataframe/structures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-09-07T06:13:47.3905610Z copying torch/utils/data/datapipes/dataframe/dataframes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-09-07T06:13:47.3914160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-09-07T06:13:47.3914840Z copying torch/utils/data/datapipes/iter/fileopener.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-09-07T06:13:47.3916190Z copying torch/utils/data/datapipes/iter/callable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-09-07T06:13:47.3917370Z copying torch/utils/data/datapipes/iter/sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-09-07T06:13:47.3918470Z copying torch/utils/data/datapipes/iter/grouping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-09-07T06:13:47.3919630Z copying torch/utils/data/datapipes/iter/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-09-07T06:13:47.3927030Z copying torch/utils/data/datapipes/iter/selecting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-09-07T06:13:47.3927690Z copying torch/utils/data/datapipes/iter/combining.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-09-07T06:13:47.3928920Z copying torch/utils/data/datapipes/iter/filelister.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-09-07T06:13:47.3930010Z copying torch/utils/data/datapipes/iter/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-09-07T06:13:47.3937180Z copying torch/utils/data/datapipes/iter/combinatorics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-09-07T06:13:47.3937990Z copying torch/utils/data/datapipes/iter/streamreader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-09-07T06:13:47.3939190Z copying torch/utils/data/datapipes/iter/routeddecoder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-09-07T06:13:47.3941520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-09-07T06:13:47.3942060Z copying torch/utils/data/datapipes/utils/decoder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-09-07T06:13:47.3948470Z copying torch/utils/data/datapipes/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-09-07T06:13:47.3949300Z copying torch/utils/data/datapipes/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-09-07T06:13:47.3957750Z copying torch/utils/data/datapipes/utils/snapshot.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-09-07T06:13:47.3965450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-09-07T06:13:47.3965970Z copying torch/utils/data/datapipes/map/callable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-09-07T06:13:47.3966980Z copying torch/utils/data/datapipes/map/grouping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-09-07T06:13:47.3968290Z copying torch/utils/data/datapipes/map/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-09-07T06:13:47.3974790Z copying torch/utils/data/datapipes/map/combining.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-09-07T06:13:47.3975570Z copying torch/utils/data/datapipes/map/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-09-07T06:13:47.3981660Z copying torch/utils/data/datapipes/map/combinatorics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-09-07T06:13:47.3984470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-09-07T06:13:47.3984980Z copying torch/quantization/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-09-07T06:13:47.3992480Z copying torch/quantization/fx/fusion_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-09-07T06:13:47.4000220Z copying torch/quantization/fx/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-09-07T06:13:47.4008030Z copying torch/quantization/fx/quantization_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-09-07T06:13:47.4016810Z copying torch/quantization/fx/convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-09-07T06:13:47.4025100Z copying torch/quantization/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-09-07T06:13:47.4032050Z copying torch/quantization/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-09-07T06:13:47.4038850Z copying torch/quantization/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-09-07T06:13:47.4045840Z copying torch/quantization/fx/fuse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-09-07T06:13:47.4053200Z copying torch/quantization/fx/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-09-07T06:13:47.4067150Z copying torch/quantization/fx/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-09-07T06:13:47.4076490Z copying torch/quantization/fx/quantization_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-09-07T06:13:47.4088490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4088960Z copying torch/testing/_internal/common_dtype.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4096380Z copying torch/testing/_internal/common_pruning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4103200Z copying torch/testing/_internal/fake_config_module3.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4109980Z copying torch/testing/_internal/hop_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4118600Z copying torch/testing/_internal/triton_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4131270Z copying torch/testing/_internal/static_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4137470Z copying torch/testing/_internal/subclasses.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4143370Z copying torch/testing/_internal/common_nn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4180330Z copying torch/testing/_internal/custom_op_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4192910Z copying torch/testing/_internal/fake_config_module2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4200010Z copying torch/testing/_internal/autocast_test_lists.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4212070Z copying torch/testing/_internal/common_fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4231500Z copying torch/testing/_internal/two_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4238620Z copying torch/testing/_internal/torchbind_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4245500Z copying torch/testing/_internal/common_optimizers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4272990Z copying torch/testing/_internal/common_device_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4293670Z copying torch/testing/_internal/autograd_function_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4307110Z copying torch/testing/_internal/common_mkldnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4314600Z copying torch/testing/_internal/inductor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4322470Z copying torch/testing/_internal/common_distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4343400Z copying torch/testing/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4343990Z copying torch/testing/_internal/common_methods_invocations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4438580Z copying torch/testing/_internal/custom_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4450500Z copying torch/testing/_internal/logging_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4459460Z copying torch/testing/_internal/hypothesis_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4467500Z copying torch/testing/_internal/common_cuda.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4474360Z copying torch/testing/_internal/common_quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4502570Z copying torch/testing/_internal/common_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4547580Z copying torch/testing/_internal/common_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4555680Z copying torch/testing/_internal/common_mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4577190Z copying torch/testing/_internal/jit_metaprogramming_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4591020Z copying torch/testing/_internal/dynamo_test_failures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4598430Z copying torch/testing/_internal/check_kernel_launches.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4604840Z copying torch/testing/_internal/common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4643460Z copying torch/testing/_internal/quantization_torch_package_models.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4650820Z copying torch/testing/_internal/common_quantized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4665300Z copying torch/testing/_internal/common_dist_composable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4672700Z copying torch/testing/_internal/common_subclass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4679530Z copying torch/testing/_internal/composite_compliance.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4693450Z copying torch/testing/_internal/logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4700670Z copying torch/testing/_internal/dist_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4708330Z copying torch/testing/_internal/fake_config_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4715480Z copying torch/testing/_internal/jit_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-09-07T06:13:47.4730430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-09-07T06:13:47.4730960Z copying torch/testing/_internal/generated/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-09-07T06:13:47.4731770Z copying torch/testing/_internal/generated/annotated_fn_args.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-09-07T06:13:47.4736910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-09-07T06:13:47.4737410Z copying torch/testing/_internal/opinfo/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-09-07T06:13:47.4747180Z copying torch/testing/_internal/opinfo/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-09-07T06:13:47.4785870Z copying torch/testing/_internal/opinfo/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-09-07T06:13:47.4794010Z copying torch/testing/_internal/opinfo/refs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-09-07T06:13:47.4803020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-09-07T06:13:47.4803560Z copying torch/testing/_internal/test_module/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-09-07T06:13:47.4804400Z copying torch/testing/_internal/test_module/future_div.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-09-07T06:13:47.4810550Z copying torch/testing/_internal/test_module/no_future_div.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-09-07T06:13:47.4818010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-09-07T06:13:47.4818610Z copying torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-09-07T06:13:47.4833630Z copying torch/testing/_internal/distributed/fake_pg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-09-07T06:13:47.4840950Z copying torch/testing/_internal/distributed/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-09-07T06:13:47.4841640Z copying torch/testing/_internal/distributed/checkpoint_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-09-07T06:13:47.4850140Z copying torch/testing/_internal/distributed/distributed_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-09-07T06:13:47.4856690Z copying torch/testing/_internal/distributed/distributed_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-09-07T06:13:47.4909990Z copying torch/testing/_internal/distributed/multi_threaded_pg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-09-07T06:13:47.4924420Z copying torch/testing/_internal/distributed/common_state_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-09-07T06:13:47.4932260Z copying torch/testing/_internal/distributed/rpc_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-09-07T06:13:47.4940580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-09-07T06:13:47.4941100Z copying torch/testing/_internal/optests/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-09-07T06:13:47.4948000Z copying torch/testing/_internal/optests/fake_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-09-07T06:13:47.4955560Z copying torch/testing/_internal/optests/aot_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-09-07T06:13:47.4962810Z copying torch/testing/_internal/optests/make_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-09-07T06:13:47.4969830Z copying torch/testing/_internal/optests/generate_tests.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-09-07T06:13:47.4983380Z copying torch/testing/_internal/optests/autograd_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-09-07T06:13:47.4990540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/codegen 2025-09-07T06:13:47.4991040Z copying torch/testing/_internal/codegen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/codegen 2025-09-07T06:13:47.4998880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-09-07T06:13:47.4999370Z copying torch/testing/_internal/data/network1.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-09-07T06:13:47.5006230Z copying torch/testing/_internal/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-09-07T06:13:47.5013080Z copying torch/testing/_internal/data/network2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-09-07T06:13:47.5020580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:47.5021190Z copying torch/testing/_internal/opinfo/definitions/signal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:47.5029190Z copying torch/testing/_internal/opinfo/definitions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:47.5036170Z copying torch/testing/_internal/opinfo/definitions/_masked.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:47.5050910Z copying torch/testing/_internal/opinfo/definitions/linalg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:47.5077850Z copying torch/testing/_internal/opinfo/definitions/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:47.5092090Z copying torch/testing/_internal/opinfo/definitions/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:47.5106650Z copying torch/testing/_internal/opinfo/definitions/special.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:47.5121320Z copying torch/testing/_internal/opinfo/definitions/nested.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:47.5142820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-09-07T06:13:47.5143420Z copying torch/testing/_internal/distributed/_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-09-07T06:13:47.5144170Z copying torch/testing/_internal/distributed/_tensor/common_dtensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-09-07T06:13:47.5159420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn 2025-09-07T06:13:47.5159990Z copying torch/testing/_internal/distributed/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn 2025-09-07T06:13:47.5161290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-09-07T06:13:47.5161910Z copying torch/testing/_internal/distributed/_shard/test_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-09-07T06:13:47.5169180Z copying torch/testing/_internal/distributed/_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-09-07T06:13:47.5177340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:47.5177970Z copying torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:47.5185140Z copying torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:47.5193180Z copying torch/testing/_internal/distributed/rpc/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:47.5193910Z copying torch/testing/_internal/distributed/rpc/dist_autograd_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:47.5225440Z copying torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:47.5233250Z copying torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:47.5240490Z copying torch/testing/_internal/distributed/rpc/rpc_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:47.5293650Z copying torch/testing/_internal/distributed/rpc/dist_optimizer_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:47.5302870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api 2025-09-07T06:13:47.5303510Z copying torch/testing/_internal/distributed/nn/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api 2025-09-07T06:13:47.5304310Z copying torch/testing/_internal/distributed/nn/api/remote_module_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api 2025-09-07T06:13:47.5319030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-09-07T06:13:47.5319800Z copying torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-09-07T06:13:47.5326740Z copying torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-09-07T06:13:47.5333700Z copying torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-09-07T06:13:47.5341420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-09-07T06:13:47.5342030Z copying torch/testing/_internal/distributed/rpc/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-09-07T06:13:47.5342790Z copying torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-09-07T06:13:47.5350100Z copying torch/testing/_internal/distributed/rpc/jit/rpc_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-09-07T06:13:47.5365110Z copying torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-09-07T06:13:47.5373570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-09-07T06:13:47.5374220Z copying torch/testing/_internal/distributed/rpc/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-09-07T06:13:47.5375080Z copying torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-09-07T06:13:47.5382630Z copying torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-09-07T06:13:47.5390250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-09-07T06:13:47.5390800Z copying torch/jit/_passes/_property_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-09-07T06:13:47.5397710Z copying torch/jit/_passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-09-07T06:13:47.5398940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit/mobile 2025-09-07T06:13:47.5399500Z copying torch/jit/mobile/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/mobile 2025-09-07T06:13:47.5408970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-09-07T06:13:47.5409420Z copying torch/_dynamo/backends/registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-09-07T06:13:47.5417400Z copying torch/_dynamo/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-09-07T06:13:47.5418130Z copying torch/_dynamo/backends/debugging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-09-07T06:13:47.5432320Z copying torch/_dynamo/backends/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-09-07T06:13:47.5446560Z copying torch/_dynamo/backends/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-09-07T06:13:47.5453660Z copying torch/_dynamo/backends/inductor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-09-07T06:13:47.5460760Z copying torch/_dynamo/backends/onnxrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-09-07T06:13:47.5467820Z copying torch/_dynamo/backends/tvm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-09-07T06:13:47.5474760Z copying torch/_dynamo/backends/cudagraphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-09-07T06:13:47.5482210Z copying torch/_dynamo/backends/tensorrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-09-07T06:13:47.5489080Z copying torch/_dynamo/backends/torchxla.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-09-07T06:13:47.5498420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5498880Z copying torch/_dynamo/variables/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5526990Z copying torch/_dynamo/variables/iter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5540880Z copying torch/_dynamo/variables/misc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5561220Z copying torch/_dynamo/variables/lists.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5580260Z copying torch/_dynamo/variables/script_object.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5587080Z copying torch/_dynamo/variables/torch_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5602000Z copying torch/_dynamo/variables/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5610450Z copying torch/_dynamo/variables/user_defined.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5639900Z copying torch/_dynamo/variables/nn_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5660360Z copying torch/_dynamo/variables/builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5709610Z copying torch/_dynamo/variables/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5731740Z copying torch/_dynamo/variables/higher_order_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5767720Z copying torch/_dynamo/variables/sdpa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5775490Z copying torch/_dynamo/variables/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5782090Z copying torch/_dynamo/variables/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5789220Z copying torch/_dynamo/variables/builtin.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5818460Z copying torch/_dynamo/variables/constant.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5826760Z copying torch/_dynamo/variables/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5834010Z copying torch/_dynamo/variables/torch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5860200Z copying torch/_dynamo/variables/ctx_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5882250Z copying torch/_dynamo/variables/dicts.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5902870Z copying torch/_dynamo/variables/base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-09-07T06:13:47.5918170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-09-07T06:13:47.5918610Z copying torch/_dynamo/repro/after_dynamo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-09-07T06:13:47.5933090Z copying torch/_dynamo/repro/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-09-07T06:13:47.5933710Z copying torch/_dynamo/repro/after_aot.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-09-07T06:13:47.5949030Z copying torch/_dynamo/repro/aoti.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-09-07T06:13:47.5965260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-09-07T06:13:47.5965800Z copying torch/_dynamo/polyfills/functools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-09-07T06:13:47.5973510Z copying torch/_dynamo/polyfills/builtins.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-09-07T06:13:47.5981010Z copying torch/_dynamo/polyfills/operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-09-07T06:13:47.5988330Z copying torch/_dynamo/polyfills/os.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-09-07T06:13:47.5995810Z copying torch/_dynamo/polyfills/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-09-07T06:13:47.6003310Z copying torch/_dynamo/polyfills/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-09-07T06:13:47.6014570Z copying torch/_dynamo/polyfills/_collections.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-09-07T06:13:47.6023960Z copying torch/_dynamo/polyfills/loader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-09-07T06:13:47.6031570Z copying torch/_dynamo/polyfills/fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-09-07T06:13:47.6038980Z copying torch/_dynamo/polyfills/struct.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-09-07T06:13:47.6046150Z copying torch/_dynamo/polyfills/sys.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-09-07T06:13:47.6053040Z copying torch/_dynamo/polyfills/pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-09-07T06:13:47.6059760Z copying torch/_dynamo/polyfills/itertools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-09-07T06:13:47.6067620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn 2025-09-07T06:13:47.6067980Z copying torch/ao/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn 2025-09-07T06:13:47.6076260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-09-07T06:13:47.6076740Z copying torch/ao/ns/_numeric_suite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-09-07T06:13:47.6088580Z copying torch/ao/ns/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-09-07T06:13:47.6089210Z copying torch/ao/ns/_numeric_suite_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-09-07T06:13:47.6104480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6104930Z copying torch/ao/quantization/observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6125360Z copying torch/ao/quantization/fuse_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6133150Z copying torch/ao/quantization/_learnable_fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6140950Z copying torch/ao/quantization/quantization_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6148660Z copying torch/ao/quantization/_correct_bias.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6156530Z copying torch/ao/quantization/quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6171230Z copying torch/ao/quantization/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6179000Z copying torch/ao/quantization/fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6192980Z copying torch/ao/quantization/qconfig.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6207630Z copying torch/ao/quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6215340Z copying torch/ao/quantization/qconfig_mapping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6223020Z copying torch/ao/quantization/stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6230320Z copying torch/ao/quantization/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6243800Z copying torch/ao/quantization/fuser_method_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6249970Z copying torch/ao/quantization/quantize_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6257080Z copying torch/ao/quantization/quantize_pt2e.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6264020Z copying torch/ao/quantization/quant_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6271020Z copying torch/ao/quantization/quantize_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-09-07T06:13:47.6285810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-09-07T06:13:47.6286210Z copying torch/ao/pruning/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-09-07T06:13:47.6293710Z copying torch/ao/pruning/_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-09-07T06:13:47.6301990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat 2025-09-07T06:13:47.6302380Z copying torch/ao/nn/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat 2025-09-07T06:13:47.6310070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-09-07T06:13:47.6310560Z copying torch/ao/nn/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-09-07T06:13:47.6318310Z copying torch/ao/nn/quantized/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-09-07T06:13:47.6332980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable 2025-09-07T06:13:47.6333430Z copying torch/ao/nn/quantizable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable 2025-09-07T06:13:47.6341690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic 2025-09-07T06:13:47.6342130Z copying torch/ao/nn/intrinsic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic 2025-09-07T06:13:47.6350230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse 2025-09-07T06:13:47.6350650Z copying torch/ao/nn/sparse/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse 2025-09-07T06:13:47.6358010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic 2025-09-07T06:13:47.6358460Z copying torch/ao/nn/qat/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic 2025-09-07T06:13:47.6374080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-09-07T06:13:47.6374540Z copying torch/ao/nn/qat/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-09-07T06:13:47.6384750Z copying torch/ao/nn/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-09-07T06:13:47.6393060Z copying torch/ao/nn/qat/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-09-07T06:13:47.6401440Z copying torch/ao/nn/qat/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-09-07T06:13:47.6410460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-09-07T06:13:47.6410970Z copying torch/ao/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-09-07T06:13:47.6419190Z copying torch/ao/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-09-07T06:13:47.6426850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic 2025-09-07T06:13:47.6427400Z copying torch/ao/nn/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic 2025-09-07T06:13:47.6435790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-09-07T06:13:47.6436300Z copying torch/ao/nn/quantized/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-09-07T06:13:47.6444960Z copying torch/ao/nn/quantized/modules/functional_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-09-07T06:13:47.6452930Z copying torch/ao/nn/quantized/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-09-07T06:13:47.6460360Z copying torch/ao/nn/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-09-07T06:13:47.6467250Z copying torch/ao/nn/quantized/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-09-07T06:13:47.6474150Z copying torch/ao/nn/quantized/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-09-07T06:13:47.6483260Z copying torch/ao/nn/quantized/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-09-07T06:13:47.6490820Z copying torch/ao/nn/quantized/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-09-07T06:13:47.6503490Z copying torch/ao/nn/quantized/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-09-07T06:13:47.6511370Z copying torch/ao/nn/quantized/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-09-07T06:13:47.6518170Z copying torch/ao/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-09-07T06:13:47.6525990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference 2025-09-07T06:13:47.6526520Z copying torch/ao/nn/quantized/reference/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference 2025-09-07T06:13:47.6533810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-09-07T06:13:47.6534390Z copying torch/ao/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-09-07T06:13:47.6540360Z copying torch/ao/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-09-07T06:13:47.6546110Z copying torch/ao/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-09-07T06:13:47.6558870Z copying torch/ao/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-09-07T06:13:47.6580080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-09-07T06:13:47.6580660Z copying torch/ao/nn/quantized/reference/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-09-07T06:13:47.6587250Z copying torch/ao/nn/quantized/reference/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-09-07T06:13:47.6594080Z copying torch/ao/nn/quantized/reference/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-09-07T06:13:47.6601560Z copying torch/ao/nn/quantized/reference/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-09-07T06:13:47.6608540Z copying torch/ao/nn/quantized/reference/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-09-07T06:13:47.6616760Z copying torch/ao/nn/quantized/reference/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-09-07T06:13:47.6631870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-09-07T06:13:47.6632390Z copying torch/ao/nn/quantizable/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-09-07T06:13:47.6640570Z copying torch/ao/nn/quantizable/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-09-07T06:13:47.6656580Z copying torch/ao/nn/quantizable/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-09-07T06:13:47.6671790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat 2025-09-07T06:13:47.6672280Z copying torch/ao/nn/intrinsic/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat 2025-09-07T06:13:47.6687590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized 2025-09-07T06:13:47.6688310Z copying torch/ao/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized 2025-09-07T06:13:47.6691630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-09-07T06:13:47.6692130Z copying torch/ao/nn/intrinsic/modules/fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-09-07T06:13:47.6700330Z copying torch/ao/nn/intrinsic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-09-07T06:13:47.6708550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-09-07T06:13:47.6709090Z copying torch/ao/nn/intrinsic/qat/modules/conv_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-09-07T06:13:47.6724930Z copying torch/ao/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-09-07T06:13:47.6732580Z copying torch/ao/nn/intrinsic/qat/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-09-07T06:13:47.6740110Z copying torch/ao/nn/intrinsic/qat/modules/linear_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-09-07T06:13:47.6748550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic 2025-09-07T06:13:47.6749130Z copying torch/ao/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic 2025-09-07T06:13:47.6758300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-09-07T06:13:47.6758880Z copying torch/ao/nn/intrinsic/quantized/modules/bn_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-09-07T06:13:47.6766490Z copying torch/ao/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-09-07T06:13:47.6773870Z copying torch/ao/nn/intrinsic/quantized/modules/conv_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-09-07T06:13:47.6782210Z copying torch/ao/nn/intrinsic/quantized/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-09-07T06:13:47.6790120Z copying torch/ao/nn/intrinsic/quantized/modules/conv_add.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-09-07T06:13:47.6798240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-09-07T06:13:47.6798900Z copying torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-09-07T06:13:47.6806440Z copying torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-09-07T06:13:47.6814440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-09-07T06:13:47.6814970Z copying torch/ao/nn/sparse/quantized/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-09-07T06:13:47.6822340Z copying torch/ao/nn/sparse/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-09-07T06:13:47.6828680Z copying torch/ao/nn/sparse/quantized/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-09-07T06:13:47.6836730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-09-07T06:13:47.6837300Z copying torch/ao/nn/sparse/quantized/dynamic/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-09-07T06:13:47.6845080Z copying torch/ao/nn/sparse/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-09-07T06:13:47.6853210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-09-07T06:13:47.6853670Z copying torch/ao/ns/fx/graph_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-09-07T06:13:47.6868630Z copying torch/ao/ns/fx/weight_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-09-07T06:13:47.6876850Z copying torch/ao/ns/fx/graph_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-09-07T06:13:47.6890630Z copying torch/ao/ns/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-09-07T06:13:47.6891220Z copying torch/ao/ns/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-09-07T06:13:47.6906200Z copying torch/ao/ns/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-09-07T06:13:47.6913820Z copying torch/ao/ns/fx/ns_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-09-07T06:13:47.6920970Z copying torch/ao/ns/fx/n_shadows_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-09-07T06:13:47.6943050Z copying torch/ao/ns/fx/mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-09-07T06:13:47.6957850Z copying torch/ao/ns/fx/qconfig_multi_mapping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-09-07T06:13:47.6967120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-09-07T06:13:47.6967760Z copying torch/ao/quantization/backend_config/_common_operator_config_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-09-07T06:13:47.6983690Z copying torch/ao/quantization/backend_config/qnnpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-09-07T06:13:47.6991060Z copying torch/ao/quantization/backend_config/fbgemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-09-07T06:13:47.6997420Z copying torch/ao/quantization/backend_config/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-09-07T06:13:47.7005260Z copying torch/ao/quantization/backend_config/native.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-09-07T06:13:47.7013200Z copying torch/ao/quantization/backend_config/onednn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-09-07T06:13:47.7027460Z copying torch/ao/quantization/backend_config/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-09-07T06:13:47.7034970Z copying torch/ao/quantization/backend_config/_qnnpack_pt2e.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-09-07T06:13:47.7042210Z copying torch/ao/quantization/backend_config/executorch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-09-07T06:13:47.7056160Z copying torch/ao/quantization/backend_config/backend_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-09-07T06:13:47.7071740Z copying torch/ao/quantization/backend_config/x86.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-09-07T06:13:47.7079000Z copying torch/ao/quantization/backend_config/tensorrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-09-07T06:13:47.7087670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-09-07T06:13:47.7088180Z copying torch/ao/quantization/pt2e/port_metadata_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-09-07T06:13:47.7095960Z copying torch/ao/quantization/pt2e/export_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-09-07T06:13:47.7103720Z copying torch/ao/quantization/pt2e/qat_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-09-07T06:13:47.7119070Z copying torch/ao/quantization/pt2e/duplicate_dq_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-09-07T06:13:47.7126990Z copying torch/ao/quantization/pt2e/lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-09-07T06:13:47.7135270Z copying torch/ao/quantization/pt2e/graph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-09-07T06:13:47.7142930Z copying torch/ao/quantization/pt2e/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-09-07T06:13:47.7143500Z copying torch/ao/quantization/pt2e/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-09-07T06:13:47.7158470Z copying torch/ao/quantization/pt2e/_affine_quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-09-07T06:13:47.7173190Z copying torch/ao/quantization/pt2e/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-09-07T06:13:47.7187660Z copying torch/ao/quantization/pt2e/_numeric_debugger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-09-07T06:13:47.7197340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7197880Z copying torch/ao/quantization/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7205170Z copying torch/ao/quantization/fx/lower_to_fbgemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7212540Z copying torch/ao/quantization/fx/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7227250Z copying torch/ao/quantization/fx/lower_to_qnnpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7234750Z copying torch/ao/quantization/fx/convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7257000Z copying torch/ao/quantization/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7264900Z copying torch/ao/quantization/fx/quantize_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7271800Z copying torch/ao/quantization/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7286270Z copying torch/ao/quantization/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7293420Z copying torch/ao/quantization/fx/_lower_to_native_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7316110Z copying torch/ao/quantization/fx/custom_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7331030Z copying torch/ao/quantization/fx/fuse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7338810Z copying torch/ao/quantization/fx/qconfig_mapping_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7347780Z copying torch/ao/quantization/fx/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7355250Z copying torch/ao/quantization/fx/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7385080Z copying torch/ao/quantization/fx/tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7392300Z copying torch/ao/quantization/fx/_decomposed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7407450Z copying torch/ao/quantization/fx/fuse_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7415680Z copying torch/ao/quantization/fx/lstm_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-09-07T06:13:47.7425060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-09-07T06:13:47.7425620Z copying torch/ao/quantization/quantizer/embedding_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-09-07T06:13:47.7433030Z copying torch/ao/quantization/quantizer/x86_inductor_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-09-07T06:13:47.7456910Z copying torch/ao/quantization/quantizer/xnnpack_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-09-07T06:13:47.7470310Z copying torch/ao/quantization/quantizer/composable_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-09-07T06:13:47.7479930Z copying torch/ao/quantization/quantizer/xpu_inductor_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-09-07T06:13:47.7487500Z copying torch/ao/quantization/quantizer/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-09-07T06:13:47.7494100Z copying torch/ao/quantization/quantizer/quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-09-07T06:13:47.7500510Z copying torch/ao/quantization/quantizer/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-09-07T06:13:47.7506760Z copying torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-09-07T06:13:47.7522330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-09-07T06:13:47.7522930Z copying torch/ao/quantization/pt2e/representation/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-09-07T06:13:47.7530320Z copying torch/ao/quantization/pt2e/representation/rewrite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-09-07T06:13:47.7544820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-09-07T06:13:47.7545400Z copying torch/ao/quantization/fx/_model_report/detector.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-09-07T06:13:47.7565350Z copying torch/ao/quantization/fx/_model_report/model_report_visualizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-09-07T06:13:47.7580250Z copying torch/ao/quantization/fx/_model_report/model_report_observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-09-07T06:13:47.7587690Z copying torch/ao/quantization/fx/_model_report/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-09-07T06:13:47.7588380Z copying torch/ao/quantization/fx/_model_report/model_report.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-09-07T06:13:47.7602530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-09-07T06:13:47.7603170Z copying torch/ao/pruning/sparsifier/weight_norm_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-09-07T06:13:47.7611100Z copying torch/ao/pruning/sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-09-07T06:13:47.7611680Z copying torch/ao/pruning/sparsifier/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-09-07T06:13:47.7619760Z copying torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-09-07T06:13:47.7627420Z copying torch/ao/pruning/sparsifier/base_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-09-07T06:13:47.7636240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental 2025-09-07T06:13:47.7636740Z copying torch/ao/pruning/_experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental 2025-09-07T06:13:47.7638670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-09-07T06:13:47.7639170Z copying torch/ao/pruning/scheduler/base_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-09-07T06:13:47.7646900Z copying torch/ao/pruning/scheduler/cubic_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-09-07T06:13:47.7654610Z copying torch/ao/pruning/scheduler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-09-07T06:13:47.7655240Z copying torch/ao/pruning/scheduler/lambda_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-09-07T06:13:47.7664070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-09-07T06:13:47.7664740Z copying torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-09-07T06:13:47.7672880Z copying torch/ao/pruning/_experimental/data_sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-09-07T06:13:47.7680670Z copying torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-09-07T06:13:47.7688300Z copying torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-09-07T06:13:47.7697420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:47.7698090Z copying torch/ao/pruning/_experimental/pruner/FPGM_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:47.7706410Z copying torch/ao/pruning/_experimental/pruner/saliency_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:47.7713750Z copying torch/ao/pruning/_experimental/pruner/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:47.7721340Z copying torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:47.7728900Z copying torch/ao/pruning/_experimental/pruner/prune_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:47.7744370Z copying torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:47.7754070Z copying torch/ao/pruning/_experimental/pruner/parametrization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:47.7762610Z copying torch/ao/pruning/_experimental/pruner/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:47.7770770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier 2025-09-07T06:13:47.7771500Z copying torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier 2025-09-07T06:13:47.7785660Z copying torch/ao/pruning/_experimental/activation_sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier 2025-09-07T06:13:47.7786830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler 2025-09-07T06:13:47.7787450Z copying torch/ao/pruning/_experimental/data_scheduler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler 2025-09-07T06:13:47.7795290Z copying torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler 2025-09-07T06:13:47.7803230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-09-07T06:13:47.7804000Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-09-07T06:13:47.7805720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-09-07T06:13:47.7806560Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-09-07T06:13:47.7821140Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-09-07T06:13:47.7822220Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-09-07T06:13:47.7831970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/linalg 2025-09-07T06:13:47.7832400Z copying torch/_refs/linalg/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/linalg 2025-09-07T06:13:47.7841380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn 2025-09-07T06:13:47.7841760Z copying torch/_refs/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn 2025-09-07T06:13:47.7848720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/special 2025-09-07T06:13:47.7849140Z copying torch/_refs/special/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/special 2025-09-07T06:13:47.7856150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/functional 2025-09-07T06:13:47.7856690Z copying torch/_refs/nn/functional/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/functional 2025-09-07T06:13:47.7875190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-09-07T06:13:47.7875670Z copying torch/export/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-09-07T06:13:47.7889840Z copying torch/export/experimental/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-09-07T06:13:47.7897740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/passes 2025-09-07T06:13:47.7898170Z copying torch/export/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/passes 2025-09-07T06:13:47.7906240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-09-07T06:13:47.7906690Z copying torch/export/pt2_archive/_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-09-07T06:13:47.7928910Z copying torch/export/pt2_archive/_package_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-09-07T06:13:47.7939120Z copying torch/export/pt2_archive/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-09-07T06:13:47.7946530Z copying torch/export/pt2_archive/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-09-07T06:13:47.7955020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-09-07T06:13:47.7955470Z copying torch/nested/_internal/nested_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-09-07T06:13:47.7970410Z copying torch/nested/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-09-07T06:13:47.7971030Z copying torch/nested/_internal/ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-09-07T06:13:47.7998180Z copying torch/nested/_internal/sdpa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-09-07T06:13:47.8011270Z copying torch/nested/_internal/nested_int.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-09-07T06:13:47.8019290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-09-07T06:13:47.8019730Z copying torch/signal/windows/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-09-07T06:13:47.8026640Z copying torch/signal/windows/windows.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-09-07T06:13:47.8039590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-09-07T06:13:47.8040070Z copying torch/package/analyze/trace_dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-09-07T06:13:47.8047460Z copying torch/package/analyze/find_first_use_of_broken_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-09-07T06:13:47.8054710Z copying torch/package/analyze/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-09-07T06:13:47.8062080Z copying torch/package/analyze/is_from_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-09-07T06:13:47.8070050Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-09-07T06:13:47.8070530Z copying torchgen/selective_build/selector.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-09-07T06:13:47.8071550Z copying torchgen/selective_build/operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-09-07T06:13:47.8072570Z copying torchgen/selective_build/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-09-07T06:13:47.8074280Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-09-07T06:13:47.8074890Z copying torchgen/static_runtime/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-09-07T06:13:47.8083110Z copying torchgen/static_runtime/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-09-07T06:13:47.8083670Z copying torchgen/static_runtime/generator.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-09-07T06:13:47.8097830Z copying torchgen/static_runtime/gen_static_runtime_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-09-07T06:13:47.8106220Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-09-07T06:13:47.8106690Z copying torchgen/operator_versions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-09-07T06:13:47.8107470Z copying torchgen/operator_versions/gen_mobile_upgraders_constant.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-09-07T06:13:47.8115190Z copying torchgen/operator_versions/gen_mobile_upgraders.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-09-07T06:13:47.8123870Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-09-07T06:13:47.8124340Z copying torchgen/dest/lazy_ts_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-09-07T06:13:47.8125330Z copying torchgen/dest/ufunc.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-09-07T06:13:47.8126370Z copying torchgen/dest/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-09-07T06:13:47.8127540Z copying torchgen/dest/native_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-09-07T06:13:47.8128510Z copying torchgen/dest/lazy_ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-09-07T06:13:47.8129850Z copying torchgen/dest/register_dispatch_key.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-09-07T06:13:47.8133370Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-09-07T06:13:47.8133770Z copying torchgen/api/dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-09-07T06:13:47.8135000Z copying torchgen/api/translate.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-09-07T06:13:47.8136020Z copying torchgen/api/ufunc.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-09-07T06:13:47.8137070Z copying torchgen/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-09-07T06:13:47.8137870Z copying torchgen/api/native.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-09-07T06:13:47.8138980Z copying torchgen/api/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-09-07T06:13:47.8140030Z copying torchgen/api/unboxing.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-09-07T06:13:47.8146950Z copying torchgen/api/functionalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-09-07T06:13:47.8147810Z copying torchgen/api/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-09-07T06:13:47.8149050Z copying torchgen/api/structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-09-07T06:13:47.8150180Z copying torchgen/api/python.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-09-07T06:13:47.8151640Z copying torchgen/api/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-09-07T06:13:47.8152780Z copying torchgen/api/meta.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-09-07T06:13:47.8154540Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-09-07T06:13:47.8155010Z copying torchgen/aoti/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-09-07T06:13:47.8156020Z copying torchgen/aoti/fallback_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-09-07T06:13:47.8158490Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-09-07T06:13:47.8158910Z copying torchgen/api/types/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-09-07T06:13:47.8159910Z copying torchgen/api/types/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-09-07T06:13:47.8160980Z copying torchgen/api/types/signatures.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-09-07T06:13:47.8162060Z copying torchgen/api/types/types_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-09-07T06:13:47.8164240Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-09-07T06:13:47.8164720Z copying functorch/experimental/control_flow.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-09-07T06:13:47.8172520Z copying functorch/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-09-07T06:13:47.8180060Z copying functorch/experimental/ops.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-09-07T06:13:47.8188140Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src 2025-09-07T06:13:47.8188530Z copying functorch/_src/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src 2025-09-07T06:13:47.8190200Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-09-07T06:13:47.8190840Z copying functorch/dim/magic_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-09-07T06:13:47.8197560Z copying functorch/dim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-09-07T06:13:47.8204160Z copying functorch/dim/op_properties.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-09-07T06:13:47.8210370Z copying functorch/dim/wrap_type.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-09-07T06:13:47.8216020Z copying functorch/dim/tree_map.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-09-07T06:13:47.8223230Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/compile 2025-09-07T06:13:47.8223640Z copying functorch/compile/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/compile 2025-09-07T06:13:47.8230400Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-09-07T06:13:47.8230810Z copying functorch/einops/_parsing.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-09-07T06:13:47.8238240Z copying functorch/einops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-09-07T06:13:47.8245530Z copying functorch/einops/rearrange.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-09-07T06:13:47.8252520Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/make_functional 2025-09-07T06:13:47.8253010Z copying functorch/_src/make_functional/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/make_functional 2025-09-07T06:13:47.8260320Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/eager_transforms 2025-09-07T06:13:47.8260820Z copying functorch/_src/eager_transforms/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/eager_transforms 2025-09-07T06:13:47.8267600Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/aot_autograd 2025-09-07T06:13:47.8268080Z copying functorch/_src/aot_autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/aot_autograd 2025-09-07T06:13:47.8275890Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/vmap 2025-09-07T06:13:47.8276380Z copying functorch/_src/vmap/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/vmap 2025-09-07T06:13:48.1318780Z copying torch/return_types.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:48.1320960Z copying torch/_VF.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:48.1328230Z copying torch/py.typed -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:48.1329310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-09-07T06:13:48.1329910Z copying torch/bin/protoc-3.13.0.0 -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-09-07T06:13:48.1494950Z copying torch/bin/torch_shm_manager -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-09-07T06:13:48.1538800Z copying torch/bin/protoc -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-09-07T06:13:48.1596470Z copying torch/nn/parameter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-09-07T06:13:48.1605480Z copying torch/nn/functional.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-09-07T06:13:48.1606800Z copying torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:48.1615580Z copying torch/optim/_multi_tensor/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-09-07T06:13:48.1623930Z copying torch/utils/_config_typing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:48.1630710Z copying torch/utils/data/datapipes/datapipe.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-09-07T06:13:48.1631960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1632540Z copying torch/_C/_profiler.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1641590Z copying torch/_C/_onnx.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1649330Z copying torch/_C/_distributed_c10d.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1664140Z copying torch/_C/_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1670710Z copying torch/_C/_monitor.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1677800Z copying torch/_C/_itt.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1683570Z copying torch/_C/_lazy.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1689680Z copying torch/_C/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1692900Z copying torch/_C/_nvtx.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1700980Z copying torch/_C/_cpu.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1707600Z copying torch/_C/_nn.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1709090Z copying torch/_C/_cusparselt.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1716000Z copying torch/_C/_instruction_counter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1721930Z copying torch/_C/_jit_tree_views.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1728610Z copying torch/_C/_lazy_ts_backend.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1734510Z copying torch/_C/_functorch.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1740800Z copying torch/_C/_VariableFunctions.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1747660Z copying torch/_C/_distributed_rpc.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1760750Z copying torch/_C/_verbose.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1769790Z copying torch/_C/_aoti.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1776750Z copying torch/_C/_functions.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1783340Z copying torch/_C/_distributed_rpc_testing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1789930Z copying torch/_C/_cudnn.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1796510Z copying torch/_C/_distributed_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-09-07T06:13:48.1802750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-09-07T06:13:48.1803140Z copying torch/_C/_export/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-09-07T06:13:48.1809980Z copying torch/_C/_export/pt2_archive_constants.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-09-07T06:13:48.1816760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-09-07T06:13:48.1817150Z copying torch/_C/_dynamo/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-09-07T06:13:48.1823990Z copying torch/_C/_dynamo/compiled_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-09-07T06:13:48.1830530Z copying torch/_C/_dynamo/guards.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-09-07T06:13:48.1836850Z copying torch/_C/_dynamo/eval_frame.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-09-07T06:13:48.1843010Z copying torch/jit/_script.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:48.1849400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C_flatbuffer 2025-09-07T06:13:48.1849820Z copying torch/_C_flatbuffer/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C_flatbuffer 2025-09-07T06:13:48.1857150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-09-07T06:13:48.1857510Z copying torch/lib/libshm.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-09-07T06:13:48.1882020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm_windows 2025-09-07T06:13:48.1882480Z copying torch/lib/libshm_windows/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm_windows 2025-09-07T06:13:48.1890420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-09-07T06:13:48.1890810Z copying torch/lib/libshm/err.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-09-07T06:13:48.1891930Z copying torch/lib/libshm/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-09-07T06:13:48.1893110Z copying torch/lib/libshm/socket.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-09-07T06:13:48.1894410Z copying torch/lib/libshm/alloc_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-09-07T06:13:48.1895700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-09-07T06:13:48.1896290Z copying torch/include/sleef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-09-07T06:13:48.1898920Z copying torch/include/cpuinfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-09-07T06:13:48.1900180Z copying torch/include/nnpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-09-07T06:13:48.1901600Z copying torch/include/xnnpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-09-07T06:13:48.1904190Z copying torch/include/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-09-07T06:13:48.1904990Z copying torch/include/fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-09-07T06:13:48.1906140Z copying torch/include/qnnpack_func.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-09-07T06:13:48.1907340Z copying torch/include/pthreadpool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-09-07T06:13:48.1909070Z copying torch/include/clog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-09-07T06:13:48.1910270Z copying torch/include/psimd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-09-07T06:13:48.1911830Z copying torch/include/experiments-config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-09-07T06:13:48.1913010Z copying torch/include/fxdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-09-07T06:13:48.1914350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1915200Z copying torch/include/pybind11/gil_simple.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1916140Z copying torch/include/pybind11/attr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1917450Z copying torch/include/pybind11/embed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1918660Z copying torch/include/pybind11/numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1920410Z copying torch/include/pybind11/pybind11.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1922680Z copying torch/include/pybind11/warnings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1923650Z copying torch/include/pybind11/operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1924930Z copying torch/include/pybind11/iostream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1926230Z copying torch/include/pybind11/gil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1927430Z copying torch/include/pybind11/chrono.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1928700Z copying torch/include/pybind11/subinterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1930080Z copying torch/include/pybind11/typing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1931330Z copying torch/include/pybind11/stl_bind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1932570Z copying torch/include/pybind11/buffer_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1933750Z copying torch/include/pybind11/options.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1934920Z copying torch/include/pybind11/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1936080Z copying torch/include/pybind11/native_enum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1937310Z copying torch/include/pybind11/stl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1938700Z copying torch/include/pybind11/critical_section.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1939970Z copying torch/include/pybind11/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1941120Z copying torch/include/pybind11/eval.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1942340Z copying torch/include/pybind11/cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1944130Z copying torch/include/pybind11/trampoline_self_life_support.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1945380Z copying torch/include/pybind11/type_caster_pyobject_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1946570Z copying torch/include/pybind11/eigen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1947850Z copying torch/include/pybind11/gil_safe_call_once.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1949060Z copying torch/include/pybind11/pytypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1950780Z copying torch/include/pybind11/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-09-07T06:13:48.1952010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit 2025-09-07T06:13:48.1952670Z copying torch/include/pybind11/conduit/pybind11_platform_abi_id.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit 2025-09-07T06:13:48.1953980Z copying torch/include/pybind11/conduit/pybind11_conduit_v1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit 2025-09-07T06:13:48.1955400Z copying torch/include/pybind11/conduit/wrap_include_python_h.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit 2025-09-07T06:13:48.1956530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-09-07T06:13:48.1957130Z copying torch/include/pybind11/eigen/matrix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-09-07T06:13:48.1958550Z copying torch/include/pybind11/eigen/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-09-07T06:13:48.1959700Z copying torch/include/pybind11/eigen/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-09-07T06:13:48.1961000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl 2025-09-07T06:13:48.1961640Z copying torch/include/pybind11/stl/filesystem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl 2025-09-07T06:13:48.1963120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1963820Z copying torch/include/pybind11/detail/type_caster_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1965790Z copying torch/include/pybind11/detail/exception_translation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1967340Z copying torch/include/pybind11/detail/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1968540Z copying torch/include/pybind11/detail/descr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1969850Z copying torch/include/pybind11/detail/using_smart_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1971250Z copying torch/include/pybind11/detail/function_record_pyobject.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1972590Z copying torch/include/pybind11/detail/internals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1974300Z copying torch/include/pybind11/detail/cpp_conduit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1975470Z copying torch/include/pybind11/detail/value_and_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1976740Z copying torch/include/pybind11/detail/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1978230Z copying torch/include/pybind11/detail/class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1979980Z copying torch/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1981260Z copying torch/include/pybind11/detail/pybind11_namespace_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1982460Z copying torch/include/pybind11/detail/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1983800Z copying torch/include/pybind11/detail/native_enum_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1985090Z copying torch/include/pybind11/detail/struct_smart_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-09-07T06:13:48.1986470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-09-07T06:13:48.1987080Z copying torch/include/fmt/ostream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-09-07T06:13:48.1988400Z copying torch/include/fmt/format-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-09-07T06:13:48.1990010Z copying torch/include/fmt/ranges.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-09-07T06:13:48.1991320Z copying torch/include/fmt/xchar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-09-07T06:13:48.1992540Z copying torch/include/fmt/core.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-09-07T06:13:48.1993760Z copying torch/include/fmt/chrono.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-09-07T06:13:48.1995600Z copying torch/include/fmt/os.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-09-07T06:13:48.1996840Z copying torch/include/fmt/color.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-09-07T06:13:48.1998120Z copying torch/include/fmt/args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-09-07T06:13:48.1999330Z copying torch/include/fmt/printf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-09-07T06:13:48.2000690Z copying torch/include/fmt/compile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-09-07T06:13:48.2002290Z copying torch/include/fmt/format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-09-07T06:13:48.2004630Z copying torch/include/fmt/std.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-09-07T06:13:48.2005820Z copying torch/include/fmt/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-09-07T06:13:48.2008310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2 2025-09-07T06:13:48.2008740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-09-07T06:13:48.2009330Z copying torch/include/caffe2/core/timer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-09-07T06:13:48.2010710Z copying torch/include/caffe2/core/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-09-07T06:13:48.2012070Z copying torch/include/caffe2/core/macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-09-07T06:13:48.2013490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-09-07T06:13:48.2014110Z copying torch/include/caffe2/perfkernels/batch_box_cox_vec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-09-07T06:13:48.2015420Z copying torch/include/caffe2/perfkernels/embedding_lookup_idx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-09-07T06:13:48.2016560Z copying torch/include/caffe2/perfkernels/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-09-07T06:13:48.2017720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-09-07T06:13:48.2018340Z copying torch/include/caffe2/serialize/in_memory_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-09-07T06:13:48.2019560Z copying torch/include/caffe2/serialize/read_adapter_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-09-07T06:13:48.2020910Z copying torch/include/caffe2/serialize/crc_alt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-09-07T06:13:48.2022460Z copying torch/include/caffe2/serialize/versions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-09-07T06:13:48.2023650Z copying torch/include/caffe2/serialize/inline_container.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-09-07T06:13:48.2024830Z copying torch/include/caffe2/serialize/file_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-09-07T06:13:48.2026240Z copying torch/include/caffe2/serialize/istream_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-09-07T06:13:48.2027580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-09-07T06:13:48.2028280Z copying torch/include/caffe2/utils/string_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-09-07T06:13:48.2029700Z copying torch/include/caffe2/utils/fixed_divisor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-09-07T06:13:48.2031010Z copying torch/include/caffe2/utils/proto_wrap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-09-07T06:13:48.2032590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-09-07T06:13:48.2033180Z copying torch/include/caffe2/utils/threadpool/ThreadPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-09-07T06:13:48.2034540Z copying torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-09-07T06:13:48.2035940Z copying torch/include/caffe2/utils/threadpool/pthreadpool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-09-07T06:13:48.2037210Z copying torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-09-07T06:13:48.2038700Z copying torch/include/caffe2/utils/threadpool/WorkersPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-09-07T06:13:48.2039960Z copying torch/include/caffe2/utils/threadpool/thread_pool_guard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-09-07T06:13:48.2041300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google 2025-09-07T06:13:48.2041680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2042270Z copying torch/include/google/protobuf/source_context.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2043510Z copying torch/include/google/protobuf/repeated_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2045190Z copying torch/include/google/protobuf/port.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2046490Z copying torch/include/google/protobuf/wire_format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2047870Z copying torch/include/google/protobuf/inlined_string_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2048990Z copying torch/include/google/protobuf/map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2050450Z copying torch/include/google/protobuf/arenastring.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2051680Z copying torch/include/google/protobuf/map_entry_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2053260Z copying torch/include/google/protobuf/service.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2054480Z copying torch/include/google/protobuf/struct.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2055910Z copying torch/include/google/protobuf/empty.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2057110Z copying torch/include/google/protobuf/descriptor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2058760Z copying torch/include/google/protobuf/message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2060160Z copying torch/include/google/protobuf/wrappers.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2061660Z copying torch/include/google/protobuf/text_format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2062970Z copying torch/include/google/protobuf/has_bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2064210Z copying torch/include/google/protobuf/arena_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2065430Z copying torch/include/google/protobuf/api.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2066900Z copying torch/include/google/protobuf/metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2068040Z copying torch/include/google/protobuf/extension_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2069670Z copying torch/include/google/protobuf/reflection_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2070920Z copying torch/include/google/protobuf/generated_message_table_driven.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2072140Z copying torch/include/google/protobuf/duration.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2073380Z copying torch/include/google/protobuf/generated_message_reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2074580Z copying torch/include/google/protobuf/unknown_field_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2075900Z copying torch/include/google/protobuf/type.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2077610Z copying torch/include/google/protobuf/map_field_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2078850Z copying torch/include/google/protobuf/timestamp.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2080170Z copying torch/include/google/protobuf/field_mask.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2081350Z copying torch/include/google/protobuf/descriptor.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2085510Z copying torch/include/google/protobuf/map_entry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2086540Z copying torch/include/google/protobuf/message_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2087920Z copying torch/include/google/protobuf/generated_message_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2089160Z copying torch/include/google/protobuf/descriptor_database.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2090420Z copying torch/include/google/protobuf/map_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2091810Z copying torch/include/google/protobuf/generated_enum_reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2093050Z copying torch/include/google/protobuf/generated_enum_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2094200Z copying torch/include/google/protobuf/any.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2095450Z copying torch/include/google/protobuf/map_type_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2096970Z copying torch/include/google/protobuf/parse_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2098270Z copying torch/include/google/protobuf/extension_set_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2099590Z copying torch/include/google/protobuf/map_field_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2100770Z copying torch/include/google/protobuf/metadata_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2102120Z copying torch/include/google/protobuf/implicit_weak_message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2103300Z copying torch/include/google/protobuf/arena.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2104600Z copying torch/include/google/protobuf/any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2105790Z copying torch/include/google/protobuf/reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2107460Z copying torch/include/google/protobuf/dynamic_message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2108490Z copying torch/include/google/protobuf/wire_format_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-09-07T06:13:48.2110400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2111010Z copying torch/include/google/protobuf/stubs/stringpiece.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2112350Z copying torch/include/google/protobuf/stubs/stl_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2113430Z copying torch/include/google/protobuf/stubs/port.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2114750Z copying torch/include/google/protobuf/stubs/status.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2115910Z copying torch/include/google/protobuf/stubs/template_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2117260Z copying torch/include/google/protobuf/stubs/map_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2118630Z copying torch/include/google/protobuf/stubs/casts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2119900Z copying torch/include/google/protobuf/stubs/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2121070Z copying torch/include/google/protobuf/stubs/bytestream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2122410Z copying torch/include/google/protobuf/stubs/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2123650Z copying torch/include/google/protobuf/stubs/macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2125080Z copying torch/include/google/protobuf/stubs/platform_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2126150Z copying torch/include/google/protobuf/stubs/once.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2127430Z copying torch/include/google/protobuf/stubs/fastmem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2128570Z copying torch/include/google/protobuf/stubs/mutex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2129880Z copying torch/include/google/protobuf/stubs/callback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2131250Z copying torch/include/google/protobuf/stubs/strutil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2132700Z copying torch/include/google/protobuf/stubs/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-09-07T06:13:48.2133890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-09-07T06:13:48.2134700Z copying torch/include/google/protobuf/util/time_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-09-07T06:13:48.2135930Z copying torch/include/google/protobuf/util/field_mask_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-09-07T06:13:48.2137130Z copying torch/include/google/protobuf/util/json_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-09-07T06:13:48.2138560Z copying torch/include/google/protobuf/util/type_resolver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-09-07T06:13:48.2139820Z copying torch/include/google/protobuf/util/field_comparator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-09-07T06:13:48.2140970Z copying torch/include/google/protobuf/util/type_resolver_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-09-07T06:13:48.2142310Z copying torch/include/google/protobuf/util/message_differencer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-09-07T06:13:48.2143830Z copying torch/include/google/protobuf/util/delimited_message_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-09-07T06:13:48.2145060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-09-07T06:13:48.2145650Z copying torch/include/google/protobuf/io/zero_copy_stream_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-09-07T06:13:48.2146900Z copying torch/include/google/protobuf/io/printer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-09-07T06:13:48.2148220Z copying torch/include/google/protobuf/io/gzip_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-09-07T06:13:48.2149440Z copying torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-09-07T06:13:48.2150960Z copying torch/include/google/protobuf/io/strtod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-09-07T06:13:48.2152180Z copying torch/include/google/protobuf/io/tokenizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-09-07T06:13:48.2153530Z copying torch/include/google/protobuf/io/zero_copy_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-09-07T06:13:48.2154780Z copying torch/include/google/protobuf/io/io_win32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-09-07T06:13:48.2155930Z copying torch/include/google/protobuf/io/coded_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-09-07T06:13:48.2157570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-09-07T06:13:48.2158160Z copying torch/include/google/protobuf/compiler/code_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-09-07T06:13:48.2159620Z copying torch/include/google/protobuf/compiler/plugin.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-09-07T06:13:48.2161140Z copying torch/include/google/protobuf/compiler/plugin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-09-07T06:13:48.2162150Z copying torch/include/google/protobuf/compiler/parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-09-07T06:13:48.2163490Z copying torch/include/google/protobuf/compiler/command_line_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-09-07T06:13:48.2164860Z copying torch/include/google/protobuf/compiler/importer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-09-07T06:13:48.2166110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/python 2025-09-07T06:13:48.2166770Z copying torch/include/google/protobuf/compiler/python/python_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/python 2025-09-07T06:13:48.2167960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js 2025-09-07T06:13:48.2168770Z copying torch/include/google/protobuf/compiler/js/well_known_types_embed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js 2025-09-07T06:13:48.2170020Z copying torch/include/google/protobuf/compiler/js/js_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js 2025-09-07T06:13:48.2171160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java 2025-09-07T06:13:48.2171860Z copying torch/include/google/protobuf/compiler/java/java_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java 2025-09-07T06:13:48.2173080Z copying torch/include/google/protobuf/compiler/java/java_names.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java 2025-09-07T06:13:48.2174310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/php 2025-09-07T06:13:48.2175000Z copying torch/include/google/protobuf/compiler/php/php_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/php 2025-09-07T06:13:48.2176110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/cpp 2025-09-07T06:13:48.2176930Z copying torch/include/google/protobuf/compiler/cpp/cpp_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/cpp 2025-09-07T06:13:48.2178240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp 2025-09-07T06:13:48.2178900Z copying torch/include/google/protobuf/compiler/csharp/csharp_names.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp 2025-09-07T06:13:48.2180170Z copying torch/include/google/protobuf/compiler/csharp/csharp_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp 2025-09-07T06:13:48.2181270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/ruby 2025-09-07T06:13:48.2181930Z copying torch/include/google/protobuf/compiler/ruby/ruby_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/ruby 2025-09-07T06:13:48.2183330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec 2025-09-07T06:13:48.2184530Z copying torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec 2025-09-07T06:13:48.2186300Z copying torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec 2025-09-07T06:13:48.2187310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-09-07T06:13:48.2187910Z copying torch/include/torch/script.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-09-07T06:13:48.2189240Z copying torch/include/torch/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-09-07T06:13:48.2190960Z copying torch/include/torch/custom_class_detail.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-09-07T06:13:48.2192140Z copying torch/include/torch/custom_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-09-07T06:13:48.2193550Z copying torch/include/torch/extension.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-09-07T06:13:48.2194810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly 2025-09-07T06:13:48.2195300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/core 2025-09-07T06:13:48.2195980Z copying torch/include/torch/headeronly/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/core 2025-09-07T06:13:48.2197390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2197940Z copying torch/include/torch/headeronly/util/quint4x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2199150Z copying torch/include/torch/headeronly/util/Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2200700Z copying torch/include/torch/headeronly/util/TypeSafeSignMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2201920Z copying torch/include/torch/headeronly/util/qint32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2203240Z copying torch/include/torch/headeronly/util/Float4_e2m1fn_x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2204500Z copying torch/include/torch/headeronly/util/Float8_e5m2fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2205800Z copying torch/include/torch/headeronly/util/shim_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2207040Z copying torch/include/torch/headeronly/util/Float8_e4m3fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2208300Z copying torch/include/torch/headeronly/util/quint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2209520Z copying torch/include/torch/headeronly/util/Float8_e5m2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2210770Z copying torch/include/torch/headeronly/util/Float8_e8m0fnu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2211940Z copying torch/include/torch/headeronly/util/BFloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2218650Z copying torch/include/torch/headeronly/util/quint2x4.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2219380Z copying torch/include/torch/headeronly/util/floating_point_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2220080Z copying torch/include/torch/headeronly/util/bit_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2220740Z copying torch/include/torch/headeronly/util/qint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2221430Z copying torch/include/torch/headeronly/util/Exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2222200Z copying torch/include/torch/headeronly/util/Float8_e4m3fn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2222900Z copying torch/include/torch/headeronly/util/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2223660Z copying torch/include/torch/headeronly/util/bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2224590Z copying torch/include/torch/headeronly/util/Float8_fnuz_cvt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-09-07T06:13:48.2225890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu 2025-09-07T06:13:48.2226670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec 2025-09-07T06:13:48.2227280Z copying torch/include/torch/headeronly/cpu/vec/vec_half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec 2025-09-07T06:13:48.2228490Z copying torch/include/torch/headeronly/cpu/vec/intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec 2025-09-07T06:13:48.2229780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/vec256 2025-09-07T06:13:48.2230450Z copying torch/include/torch/headeronly/cpu/vec/vec256/missing_vst1_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/vec256 2025-09-07T06:13:48.2232040Z copying torch/include/torch/headeronly/cpu/vec/vec256/missing_vld1_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/vec256 2025-09-07T06:13:48.2232890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-09-07T06:13:48.2233570Z copying torch/include/torch/headeronly/macros/cmake_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-09-07T06:13:48.2234750Z copying torch/include/torch/headeronly/macros/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-09-07T06:13:48.2236060Z copying torch/include/torch/headeronly/macros/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-09-07T06:13:48.2237410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2237950Z copying torch/include/torch/csrc/Size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2239230Z copying torch/include/torch/csrc/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2240570Z copying torch/include/torch/csrc/DeviceAccelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2241780Z copying torch/include/torch/csrc/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2243010Z copying torch/include/torch/csrc/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2244230Z copying torch/include/torch/csrc/THConcat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2245480Z copying torch/include/torch/csrc/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2246700Z copying torch/include/torch/csrc/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2247960Z copying torch/include/torch/csrc/serialization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2249230Z copying torch/include/torch/csrc/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2250280Z copying torch/include/torch/csrc/itt_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2251460Z copying torch/include/torch/csrc/QScheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2252720Z copying torch/include/torch/csrc/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2253910Z copying torch/include/torch/csrc/DataLoader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2255130Z copying torch/include/torch/csrc/THP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2256560Z copying torch/include/torch/csrc/python_headers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2257740Z copying torch/include/torch/csrc/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2258980Z copying torch/include/torch/csrc/DynamicTypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2260190Z copying torch/include/torch/csrc/copy_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2261360Z copying torch/include/torch/csrc/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2262640Z copying torch/include/torch/csrc/PyInterpreterHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2263760Z copying torch/include/torch/csrc/itt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2264920Z copying torch/include/torch/csrc/MemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2266180Z copying torch/include/torch/csrc/StorageSharing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2267400Z copying torch/include/torch/csrc/PyInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2268520Z copying torch/include/torch/csrc/Dtype.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2269700Z copying torch/include/torch/csrc/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2270990Z copying torch/include/torch/csrc/python_dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2272100Z copying torch/include/torch/csrc/CudaIPCTypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2273330Z copying torch/include/torch/csrc/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2274580Z copying torch/include/torch/csrc/TypeInfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2275830Z copying torch/include/torch/csrc/StorageMethods.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-09-07T06:13:48.2277060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-09-07T06:13:48.2277710Z copying torch/include/torch/csrc/stable/stableivalue_conversions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-09-07T06:13:48.2279010Z copying torch/include/torch/csrc/stable/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-09-07T06:13:48.2280200Z copying torch/include/torch/csrc/stable/accelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-09-07T06:13:48.2281410Z copying torch/include/torch/csrc/stable/tensor_struct.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-09-07T06:13:48.2282630Z copying torch/include/torch/csrc/stable/tensor_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-09-07T06:13:48.2283850Z copying torch/include/torch/csrc/stable/ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-09-07T06:13:48.2285110Z copying torch/include/torch/csrc/stable/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-09-07T06:13:48.2286310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-09-07T06:13:48.2286940Z copying torch/include/torch/csrc/inductor/inductor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-09-07T06:13:48.2288220Z copying torch/include/torch/csrc/inductor/array_ref_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-09-07T06:13:48.2289440Z copying torch/include/torch/csrc/inductor/static_cuda_launcher.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-09-07T06:13:48.2290620Z copying torch/include/torch/csrc/inductor/cpp_prefix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-09-07T06:13:48.2292310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package 2025-09-07T06:13:48.2292960Z copying torch/include/torch/csrc/inductor/aoti_package/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package 2025-09-07T06:13:48.2294180Z copying torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package 2025-09-07T06:13:48.2295360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager 2025-09-07T06:13:48.2296020Z copying torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager 2025-09-07T06:13:48.2297240Z copying torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager 2025-09-07T06:13:48.2298530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-09-07T06:13:48.2299200Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-09-07T06:13:48.2300540Z copying torch/include/torch/csrc/inductor/aoti_runner/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-09-07T06:13:48.2301710Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-09-07T06:13:48.2302990Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-09-07T06:13:48.2304210Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-09-07T06:13:48.2305590Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-09-07T06:13:48.2306870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:48.2307520Z copying torch/include/torch/csrc/inductor/aoti_runtime/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:48.2308540Z copying torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:48.2309740Z copying torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:48.2311080Z copying torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:48.2312220Z copying torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:48.2313430Z copying torch/include/torch/csrc/inductor/aoti_runtime/interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:48.2314650Z copying torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:48.2315930Z copying torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:48.2317120Z copying torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:48.2318440Z copying torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:48.2319600Z copying torch/include/torch/csrc/inductor/aoti_runtime/model.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:48.2321150Z copying torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:48.2323030Z copying torch/include/torch/csrc/inductor/aoti_runtime/model_container.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:48.2324830Z copying torch/include/torch/csrc/inductor/aoti_runtime/model_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:48.2326470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-09-07T06:13:48.2327140Z copying torch/include/torch/csrc/inductor/aoti_include/xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-09-07T06:13:48.2328550Z copying torch/include/torch/csrc/inductor/aoti_include/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-09-07T06:13:48.2329910Z copying torch/include/torch/csrc/inductor/aoti_include/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-09-07T06:13:48.2331030Z copying torch/include/torch/csrc/inductor/aoti_include/cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-09-07T06:13:48.2332250Z copying torch/include/torch/csrc/inductor/aoti_include/mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-09-07T06:13:48.2333490Z copying torch/include/torch/csrc/inductor/aoti_include/array_ref.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-09-07T06:13:48.2334770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-09-07T06:13:48.2335450Z copying torch/include/torch/csrc/inductor/aoti_torch/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-09-07T06:13:48.2336730Z copying torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-09-07T06:13:48.2338190Z copying torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-09-07T06:13:48.2339140Z copying torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-09-07T06:13:48.2340470Z copying torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-09-07T06:13:48.2341630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-09-07T06:13:48.2342590Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-09-07T06:13:48.2343680Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-09-07T06:13:48.2344950Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-09-07T06:13:48.2346300Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-09-07T06:13:48.2347810Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-09-07T06:13:48.2348930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-09-07T06:13:48.2349600Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-09-07T06:13:48.2350840Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-09-07T06:13:48.2352070Z copying torch/include/torch/csrc/inductor/aoti_torch/c/macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-09-07T06:13:48.2353310Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim_deprecated.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-09-07T06:13:48.2354470Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-09-07T06:13:48.2355730Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-09-07T06:13:48.2357170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-09-07T06:13:48.2357790Z copying torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-09-07T06:13:48.2358940Z copying torch/include/torch/csrc/inductor/cpp_wrapper/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-09-07T06:13:48.2360130Z copying torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-09-07T06:13:48.2361350Z copying torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-09-07T06:13:48.2362760Z copying torch/include/torch/csrc/inductor/cpp_wrapper/mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-09-07T06:13:48.2363690Z copying torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-09-07T06:13:48.2364920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-09-07T06:13:48.2365680Z copying torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-09-07T06:13:48.2366980Z copying torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-09-07T06:13:48.2368120Z copying torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-09-07T06:13:48.2369250Z copying torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-09-07T06:13:48.2370360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-09-07T06:13:48.2370990Z copying torch/include/torch/csrc/monitor/events.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-09-07T06:13:48.2372230Z copying torch/include/torch/csrc/monitor/counters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-09-07T06:13:48.2373460Z copying torch/include/torch/csrc/monitor/python_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-09-07T06:13:48.2374690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/instruction_counter 2025-09-07T06:13:48.2375330Z copying torch/include/torch/csrc/instruction_counter/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/instruction_counter 2025-09-07T06:13:48.2376420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mps 2025-09-07T06:13:48.2377030Z copying torch/include/torch/csrc/mps/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mps 2025-09-07T06:13:48.2378410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-09-07T06:13:48.2378930Z copying torch/include/torch/csrc/onnx/back_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-09-07T06:13:48.2380090Z copying torch/include/torch/csrc/onnx/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-09-07T06:13:48.2381300Z copying torch/include/torch/csrc/onnx/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-09-07T06:13:48.2382460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cpu 2025-09-07T06:13:48.2383090Z copying torch/include/torch/csrc/cpu/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cpu 2025-09-07T06:13:48.2384270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed 2025-09-07T06:13:48.2384790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-09-07T06:13:48.2385430Z copying torch/include/torch/csrc/distributed/autograd/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-09-07T06:13:48.2386700Z copying torch/include/torch/csrc/distributed/autograd/python_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-09-07T06:13:48.2387910Z copying torch/include/torch/csrc/distributed/autograd/autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-09-07T06:13:48.2389070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context 2025-09-07T06:13:48.2389820Z copying torch/include/torch/csrc/distributed/autograd/context/container.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context 2025-09-07T06:13:48.2391020Z copying torch/include/torch/csrc/distributed/autograd/context/context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context 2025-09-07T06:13:48.2392220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:48.2393050Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:48.2394250Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:48.2395450Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:48.2396770Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:48.2398010Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:48.2399330Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:48.2400640Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:48.2401800Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:48.2403040Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:48.2404330Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:48.2405450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions 2025-09-07T06:13:48.2406270Z copying torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions 2025-09-07T06:13:48.2407590Z copying torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions 2025-09-07T06:13:48.2408760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/engine 2025-09-07T06:13:48.2409470Z copying torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/engine 2025-09-07T06:13:48.2410550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2411200Z copying torch/include/torch/csrc/distributed/rpc/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2412500Z copying torch/include/torch/csrc/distributed/rpc/rref_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2413770Z copying torch/include/torch/csrc/distributed/rpc/request_callback_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2415120Z copying torch/include/torch/csrc/distributed/rpc/python_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2416410Z copying torch/include/torch/csrc/distributed/rpc/rref_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2418000Z copying torch/include/torch/csrc/distributed/rpc/request_callback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2419340Z copying torch/include/torch/csrc/distributed/rpc/types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2420740Z copying torch/include/torch/csrc/distributed/rpc/rref_proto.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2422180Z copying torch/include/torch/csrc/distributed/rpc/py_rref.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2423580Z copying torch/include/torch/csrc/distributed/rpc/rpc_agent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2425000Z copying torch/include/torch/csrc/distributed/rpc/python_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2426300Z copying torch/include/torch/csrc/distributed/rpc/message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2427710Z copying torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2428980Z copying torch/include/torch/csrc/distributed/rpc/python_remote_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2430250Z copying torch/include/torch/csrc/distributed/rpc/python_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2431630Z copying torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2433270Z copying torch/include/torch/csrc/distributed/rpc/script_remote_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2434580Z copying torch/include/torch/csrc/distributed/rpc/script_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2435980Z copying torch/include/torch/csrc/distributed/rpc/rpc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2437420Z copying torch/include/torch/csrc/distributed/rpc/rpc_command_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2438710Z copying torch/include/torch/csrc/distributed/rpc/script_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2440610Z copying torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2441460Z copying torch/include/torch/csrc/distributed/rpc/torchscript_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2442720Z copying torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2443940Z copying torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2445280Z copying torch/include/torch/csrc/distributed/rpc/agent_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2446590Z copying torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:48.2447800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/metrics 2025-09-07T06:13:48.2448540Z copying torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/metrics 2025-09-07T06:13:48.2450040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing 2025-09-07T06:13:48.2450720Z copying torch/include/torch/csrc/distributed/rpc/testing/testing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing 2025-09-07T06:13:48.2451860Z copying torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing 2025-09-07T06:13:48.2453200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler 2025-09-07T06:13:48.2453930Z copying torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler 2025-09-07T06:13:48.2455310Z copying torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler 2025-09-07T06:13:48.2456450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:48.2457060Z copying torch/include/torch/csrc/distributed/c10d/error.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:48.2458430Z copying torch/include/torch/csrc/distributed/c10d/debug.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:48.2459790Z copying torch/include/torch/csrc/distributed/c10d/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:48.2461010Z copying torch/include/torch/csrc/distributed/c10d/socket_fmt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:48.2462230Z copying torch/include/torch/csrc/distributed/c10d/python_comm_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:48.2463470Z copying torch/include/torch/csrc/distributed/c10d/c10d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:48.2464920Z copying torch/include/torch/csrc/distributed/c10d/TraceUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:48.2466190Z copying torch/include/torch/csrc/distributed/c10d/exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:48.2467370Z copying torch/include/torch/csrc/distributed/c10d/socket.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:48.2468580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization 2025-09-07T06:13:48.2469340Z copying torch/include/torch/csrc/distributed/c10d/quantization/quantization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization 2025-09-07T06:13:48.2470700Z copying torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization 2025-09-07T06:13:48.2471950Z copying torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization 2025-09-07T06:13:48.2473050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:48.2473770Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:48.2474960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2475530Z copying torch/include/torch/csrc/autograd/python_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2476900Z copying torch/include/torch/csrc/autograd/custom_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2478590Z copying torch/include/torch/csrc/autograd/python_linalg_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2479810Z copying torch/include/torch/csrc/autograd/saved_variable_hooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2481090Z copying torch/include/torch/csrc/autograd/record_function_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2482370Z copying torch/include/torch/csrc/autograd/engine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2483600Z copying torch/include/torch/csrc/autograd/python_enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2484820Z copying torch/include/torch/csrc/autograd/graph_task.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2485950Z copying torch/include/torch/csrc/autograd/edge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2487340Z copying torch/include/torch/csrc/autograd/python_nested_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2488470Z copying torch/include/torch/csrc/autograd/variable_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2489780Z copying torch/include/torch/csrc/autograd/saved_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2491120Z copying torch/include/torch/csrc/autograd/python_engine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2492360Z copying torch/include/torch/csrc/autograd/python_legacy_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2493630Z copying torch/include/torch/csrc/autograd/profiler_python.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2494860Z copying torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2496070Z copying torch/include/torch/csrc/autograd/python_saved_variable_hooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2497430Z copying torch/include/torch/csrc/autograd/python_cpp_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2498580Z copying torch/include/torch/csrc/autograd/python_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2499790Z copying torch/include/torch/csrc/autograd/VariableTypeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2500960Z copying torch/include/torch/csrc/autograd/python_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2502200Z copying torch/include/torch/csrc/autograd/profiler_kineto.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2503420Z copying torch/include/torch/csrc/autograd/variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2504840Z copying torch/include/torch/csrc/autograd/python_fft_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2506040Z copying torch/include/torch/csrc/autograd/python_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2507230Z copying torch/include/torch/csrc/autograd/python_torch_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2508490Z copying torch/include/torch/csrc/autograd/function_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2509650Z copying torch/include/torch/csrc/autograd/input_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2510960Z copying torch/include/torch/csrc/autograd/grad_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2512290Z copying torch/include/torch/csrc/autograd/jit_decomp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2513540Z copying torch/include/torch/csrc/autograd/python_sparse_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2514680Z copying torch/include/torch/csrc/autograd/symbolic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2515880Z copying torch/include/torch/csrc/autograd/input_buffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2517290Z copying torch/include/torch/csrc/autograd/profiler_legacy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2518700Z copying torch/include/torch/csrc/autograd/autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2520280Z copying torch/include/torch/csrc/autograd/cpp_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2521860Z copying torch/include/torch/csrc/autograd/python_special_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2523320Z copying torch/include/torch/csrc/autograd/FunctionsManual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2525030Z copying torch/include/torch/csrc/autograd/forward_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2526380Z copying torch/include/torch/csrc/autograd/python_anomaly_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2527570Z copying torch/include/torch/csrc/autograd/python_nn_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2528830Z copying torch/include/torch/csrc/autograd/InferenceMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2530110Z copying torch/include/torch/csrc/autograd/python_variable_indexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2531440Z copying torch/include/torch/csrc/autograd/profiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2532640Z copying torch/include/torch/csrc/autograd/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2534050Z copying torch/include/torch/csrc/autograd/anomaly_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-09-07T06:13:48.2535330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-09-07T06:13:48.2535990Z copying torch/include/torch/csrc/autograd/generated/python_return_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-09-07T06:13:48.2537260Z copying torch/include/torch/csrc/autograd/generated/ViewFuncs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-09-07T06:13:48.2538760Z copying torch/include/torch/csrc/autograd/generated/python_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-09-07T06:13:48.2539980Z copying torch/include/torch/csrc/autograd/generated/VariableType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-09-07T06:13:48.2541200Z copying torch/include/torch/csrc/autograd/generated/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-09-07T06:13:48.2545350Z copying torch/include/torch/csrc/autograd/generated/variable_factories.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-09-07T06:13:48.2546780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-09-07T06:13:48.2547370Z copying torch/include/torch/csrc/autograd/utils/warnings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-09-07T06:13:48.2548540Z copying torch/include/torch/csrc/autograd/utils/wrap_outputs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-09-07T06:13:48.2549680Z copying torch/include/torch/csrc/autograd/utils/python_arg_parsing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-09-07T06:13:48.2550980Z copying torch/include/torch/csrc/autograd/utils/grad_layout_contract.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-09-07T06:13:48.2558170Z copying torch/include/torch/csrc/autograd/utils/lambda_post_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-09-07T06:13:48.2559020Z copying torch/include/torch/csrc/autograd/utils/error_messages.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-09-07T06:13:48.2559640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-09-07T06:13:48.2560290Z copying torch/include/torch/csrc/autograd/functions/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-09-07T06:13:48.2561050Z copying torch/include/torch/csrc/autograd/functions/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-09-07T06:13:48.2561890Z copying torch/include/torch/csrc/autograd/functions/comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-09-07T06:13:48.2562670Z copying torch/include/torch/csrc/autograd/functions/basic_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-09-07T06:13:48.2563480Z copying torch/include/torch/csrc/autograd/functions/accumulate_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-09-07T06:13:48.2564270Z copying torch/include/torch/csrc/autograd/functions/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-09-07T06:13:48.2564840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/fx 2025-09-07T06:13:48.2565320Z copying torch/include/torch/csrc/fx/node.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/fx 2025-09-07T06:13:48.2565820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/multiprocessing 2025-09-07T06:13:48.2566410Z copying torch/include/torch/csrc/multiprocessing/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/multiprocessing 2025-09-07T06:13:48.2566970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-09-07T06:13:48.2567540Z copying torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-09-07T06:13:48.2568210Z copying torch/include/torch/csrc/cuda/GdsFile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-09-07T06:13:48.2569300Z copying torch/include/torch/csrc/cuda/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-09-07T06:13:48.2570430Z copying torch/include/torch/csrc/cuda/THCP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-09-07T06:13:48.2571620Z copying torch/include/torch/csrc/cuda/nccl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-09-07T06:13:48.2572880Z copying torch/include/torch/csrc/cuda/memory_snapshot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-09-07T06:13:48.2574110Z copying torch/include/torch/csrc/cuda/python_nccl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-09-07T06:13:48.2575320Z copying torch/include/torch/csrc/cuda/device_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-09-07T06:13:48.2576520Z copying torch/include/torch/csrc/cuda/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-09-07T06:13:48.2577760Z copying torch/include/torch/csrc/cuda/python_comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-09-07T06:13:48.2578940Z copying torch/include/torch/csrc/cuda/comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-09-07T06:13:48.2580100Z copying torch/include/torch/csrc/cuda/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-09-07T06:13:48.2581350Z copying torch/include/torch/csrc/cuda/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-09-07T06:13:48.2582540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-09-07T06:13:48.2583080Z copying torch/include/torch/csrc/xpu/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-09-07T06:13:48.2584380Z copying torch/include/torch/csrc/xpu/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-09-07T06:13:48.2585710Z copying torch/include/torch/csrc/xpu/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-09-07T06:13:48.2587060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-09-07T06:13:48.2587590Z copying torch/include/torch/csrc/dynamo/cache_entry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-09-07T06:13:48.2588690Z copying torch/include/torch/csrc/dynamo/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-09-07T06:13:48.2589820Z copying torch/include/torch/csrc/dynamo/cpython_defs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-09-07T06:13:48.2591050Z copying torch/include/torch/csrc/dynamo/cpp_shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-09-07T06:13:48.2592400Z copying torch/include/torch/csrc/dynamo/framelocals_mapping.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-09-07T06:13:48.2593560Z copying torch/include/torch/csrc/dynamo/cpython_includes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-09-07T06:13:48.2594830Z copying torch/include/torch/csrc/dynamo/extra_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-09-07T06:13:48.2596110Z copying torch/include/torch/csrc/dynamo/compiled_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-09-07T06:13:48.2597870Z copying torch/include/torch/csrc/dynamo/eval_frame_cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-09-07T06:13:48.2598970Z copying torch/include/torch/csrc/dynamo/eval_frame.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-09-07T06:13:48.2600360Z copying torch/include/torch/csrc/dynamo/debug_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-09-07T06:13:48.2601590Z copying torch/include/torch/csrc/dynamo/python_compiled_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-09-07T06:13:48.2602800Z copying torch/include/torch/csrc/dynamo/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-09-07T06:13:48.2603940Z copying torch/include/torch/csrc/dynamo/guards.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-09-07T06:13:48.2605370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2605960Z copying torch/include/torch/csrc/utils/object_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2607240Z copying torch/include/torch/csrc/utils/tensor_numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2608430Z copying torch/include/torch/csrc/utils/tensor_dtypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2609650Z copying torch/include/torch/csrc/utils/python_tuples.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2610830Z copying torch/include/torch/csrc/utils/nested.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2612160Z copying torch/include/torch/csrc/utils/python_raii.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2613320Z copying torch/include/torch/csrc/utils/python_numbers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2614800Z copying torch/include/torch/csrc/utils/python_scalars.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2615920Z copying torch/include/torch/csrc/utils/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2617270Z copying torch/include/torch/csrc/utils/tensor_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2618550Z copying torch/include/torch/csrc/utils/tensor_memoryformats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2619810Z copying torch/include/torch/csrc/utils/python_arg_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2621460Z copying torch/include/torch/csrc/utils/python_torch_function_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2622710Z copying torch/include/torch/csrc/utils/schema_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2624050Z copying torch/include/torch/csrc/utils/generated_serialization_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2625980Z copying torch/include/torch/csrc/utils/tensor_new.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2627160Z copying torch/include/torch/csrc/utils/tensor_qschemes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2628460Z copying torch/include/torch/csrc/utils/verbose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2629650Z copying torch/include/torch/csrc/utils/python_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2630900Z copying torch/include/torch/csrc/utils/tensor_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2632270Z copying torch/include/torch/csrc/utils/invalid_arguments.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2633450Z copying torch/include/torch/csrc/utils/pythoncapi_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2634980Z copying torch/include/torch/csrc/utils/cpp_stacktraces.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2636290Z copying torch/include/torch/csrc/utils/device_lazy_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2637430Z copying torch/include/torch/csrc/utils/python_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2638830Z copying torch/include/torch/csrc/utils/python_symnode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2640030Z copying torch/include/torch/csrc/utils/byte_order.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2641290Z copying torch/include/torch/csrc/utils/pycfunction_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2642430Z copying torch/include/torch/csrc/utils/cuda_enabled.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2643630Z copying torch/include/torch/csrc/utils/numpy_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2644990Z copying torch/include/torch/csrc/utils/out_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2646260Z copying torch/include/torch/csrc/utils/tensor_layouts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2647420Z copying torch/include/torch/csrc/utils/structseq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2648730Z copying torch/include/torch/csrc/utils/throughput_benchmark.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2650020Z copying torch/include/torch/csrc/utils/disable_torch_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2651240Z copying torch/include/torch/csrc/utils/pyobject_preservation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2652680Z copying torch/include/torch/csrc/utils/throughput_benchmark-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2653850Z copying torch/include/torch/csrc/utils/tensor_flatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2655100Z copying torch/include/torch/csrc/utils/torch_dispatch_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2656340Z copying torch/include/torch/csrc/utils/tensor_apply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2657500Z copying torch/include/torch/csrc/utils/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2658740Z copying torch/include/torch/csrc/utils/python_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2659950Z copying torch/include/torch/csrc/utils/six.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2661100Z copying torch/include/torch/csrc/utils/python_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2662330Z copying torch/include/torch/csrc/utils/variadic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-09-07T06:13:48.2663760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-09-07T06:13:48.2664800Z copying torch/include/torch/csrc/jit/jit_opt_limit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-09-07T06:13:48.2665710Z copying torch/include/torch/csrc/jit/jit_log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-09-07T06:13:48.2666880Z copying torch/include/torch/csrc/jit/resource_guard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-09-07T06:13:48.2668170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2668910Z copying torch/include/torch/csrc/jit/frontend/error_report.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2670290Z copying torch/include/torch/csrc/jit/frontend/source_range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2671590Z copying torch/include/torch/csrc/jit/frontend/edit_distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2672810Z copying torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2674030Z copying torch/include/torch/csrc/jit/frontend/schema_matching.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2675250Z copying torch/include/torch/csrc/jit/frontend/function_schema_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2676640Z copying torch/include/torch/csrc/jit/frontend/tree_views.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2677990Z copying torch/include/torch/csrc/jit/frontend/ir_emitter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2679190Z copying torch/include/torch/csrc/jit/frontend/parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2680420Z copying torch/include/torch/csrc/jit/frontend/strtod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2681560Z copying torch/include/torch/csrc/jit/frontend/tree.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2682810Z copying torch/include/torch/csrc/jit/frontend/concrete_module_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2684000Z copying torch/include/torch/csrc/jit/frontend/builtin_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2685270Z copying torch/include/torch/csrc/jit/frontend/exit_transforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2686380Z copying torch/include/torch/csrc/jit/frontend/parse_string_literal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2687580Z copying torch/include/torch/csrc/jit/frontend/sugared_value.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2688980Z copying torch/include/torch/csrc/jit/frontend/inline_loop_condition.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2690240Z copying torch/include/torch/csrc/jit/frontend/name_mangler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2691430Z copying torch/include/torch/csrc/jit/frontend/tracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2692780Z copying torch/include/torch/csrc/jit/frontend/resolver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2693920Z copying torch/include/torch/csrc/jit/frontend/script_type_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2695090Z copying torch/include/torch/csrc/jit/frontend/schema_type_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2696220Z copying torch/include/torch/csrc/jit/frontend/lexer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2697640Z copying torch/include/torch/csrc/jit/frontend/versioned_symbols.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2698950Z copying torch/include/torch/csrc/jit/frontend/convert_to_ssa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2700130Z copying torch/include/torch/csrc/jit/frontend/source_ref.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2701270Z copying torch/include/torch/csrc/jit/frontend/mini_environment.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2702480Z copying torch/include/torch/csrc/jit/frontend/parser_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:48.2703660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2704280Z copying torch/include/torch/csrc/jit/python/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2705970Z copying torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2707350Z copying torch/include/torch/csrc/jit/python/python_ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2708560Z copying torch/include/torch/csrc/jit/python/script_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2709840Z copying torch/include/torch/csrc/jit/python/python_tree_views.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2710960Z copying torch/include/torch/csrc/jit/python/python_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2712230Z copying torch/include/torch/csrc/jit/python/python_ivalue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2713440Z copying torch/include/torch/csrc/jit/python/python_dict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2714730Z copying torch/include/torch/csrc/jit/python/python_custom_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2715870Z copying torch/include/torch/csrc/jit/python/update_graph_executor_opt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2717060Z copying torch/include/torch/csrc/jit/python/python_tracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2718270Z copying torch/include/torch/csrc/jit/python/pybind_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2719750Z copying torch/include/torch/csrc/jit/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2720980Z copying torch/include/torch/csrc/jit/python/python_sugared_value.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2722190Z copying torch/include/torch/csrc/jit/python/python_arg_flatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2723420Z copying torch/include/torch/csrc/jit/python/module_python.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-09-07T06:13:48.2724650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2725310Z copying torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2726610Z copying torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2727860Z copying torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2729020Z copying torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2730200Z copying torch/include/torch/csrc/jit/tensorexpr/lowerings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2731440Z copying torch/include/torch/csrc/jit/tensorexpr/graph_opt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2732600Z copying torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2733780Z copying torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2735030Z copying torch/include/torch/csrc/jit/tensorexpr/types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2736310Z copying torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2737450Z copying torch/include/torch/csrc/jit/tensorexpr/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2738830Z copying torch/include/torch/csrc/jit/tensorexpr/exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2740160Z copying torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2741440Z copying torch/include/torch/csrc/jit/tensorexpr/hash_provider.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2742570Z copying torch/include/torch/csrc/jit/tensorexpr/ir_printer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2743980Z copying torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2745060Z copying torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2746270Z copying torch/include/torch/csrc/jit/tensorexpr/expr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2747540Z copying torch/include/torch/csrc/jit/tensorexpr/cuda_random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2748790Z copying torch/include/torch/csrc/jit/tensorexpr/codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2750130Z copying torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2751280Z copying torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2752450Z copying torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2753680Z copying torch/include/torch/csrc/jit/tensorexpr/eval.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2754910Z copying torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2756210Z copying torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2757400Z copying torch/include/torch/csrc/jit/tensorexpr/block_codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2758720Z copying torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2759900Z copying torch/include/torch/csrc/jit/tensorexpr/kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2761130Z copying torch/include/torch/csrc/jit/tensorexpr/loopnest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2762480Z copying torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2764020Z copying torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2765720Z copying torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2767680Z copying torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2768580Z copying torch/include/torch/csrc/jit/tensorexpr/external_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2769870Z copying torch/include/torch/csrc/jit/tensorexpr/stmt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2771270Z copying torch/include/torch/csrc/jit/tensorexpr/half_support.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2772620Z copying torch/include/torch/csrc/jit/tensorexpr/registerizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2773790Z copying torch/include/torch/csrc/jit/tensorexpr/reduction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2775280Z copying torch/include/torch/csrc/jit/tensorexpr/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2776300Z copying torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2777680Z copying torch/include/torch/csrc/jit/tensorexpr/analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:48.2779260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:48.2779940Z copying torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:48.2780890Z copying torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:48.2782170Z copying torch/include/torch/csrc/jit/tensorexpr/operators/operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:48.2783340Z copying torch/include/torch/csrc/jit/tensorexpr/operators/misc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:48.2784660Z copying torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:48.2785810Z copying torch/include/torch/csrc/jit/tensorexpr/operators/norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:48.2787050Z copying torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:48.2788330Z copying torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:48.2789700Z copying torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:48.2790800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:48.2791410Z copying torch/include/torch/csrc/jit/ir/named_value.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:48.2792750Z copying torch/include/torch/csrc/jit/ir/irparser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:48.2793940Z copying torch/include/torch/csrc/jit/ir/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:48.2795920Z copying torch/include/torch/csrc/jit/ir/graph_node_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:48.2796900Z copying torch/include/torch/csrc/jit/ir/ir_views.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:48.2798230Z copying torch/include/torch/csrc/jit/ir/alias_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:48.2799480Z copying torch/include/torch/csrc/jit/ir/attributes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:48.2800690Z copying torch/include/torch/csrc/jit/ir/type_hashing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:48.2801910Z copying torch/include/torch/csrc/jit/ir/constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:48.2803160Z copying torch/include/torch/csrc/jit/ir/subgraph_matcher.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:48.2804460Z copying torch/include/torch/csrc/jit/ir/scope.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:48.2805640Z copying torch/include/torch/csrc/jit/ir/graph_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:48.2806920Z copying torch/include/torch/csrc/jit/ir/node_hashing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:48.2808170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/cuda 2025-09-07T06:13:48.2808830Z copying torch/include/torch/csrc/jit/cuda/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/cuda 2025-09-07T06:13:48.2810200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2810830Z copying torch/include/torch/csrc/jit/serialization/import_read.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2812260Z copying torch/include/torch/csrc/jit/serialization/export_bytecode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2813480Z copying torch/include/torch/csrc/jit/serialization/import_source.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2814970Z copying torch/include/torch/csrc/jit/serialization/export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2816170Z copying torch/include/torch/csrc/jit/serialization/import_export_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2817440Z copying torch/include/torch/csrc/jit/serialization/type_name_uniquer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2818610Z copying torch/include/torch/csrc/jit/serialization/pickler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2819880Z copying torch/include/torch/csrc/jit/serialization/storage_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2821060Z copying torch/include/torch/csrc/jit/serialization/python_print.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2822410Z copying torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2823740Z copying torch/include/torch/csrc/jit/serialization/import_export_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2825000Z copying torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2826270Z copying torch/include/torch/csrc/jit/serialization/pickler_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2827730Z copying torch/include/torch/csrc/jit/serialization/pickle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2828790Z copying torch/include/torch/csrc/jit/serialization/import_export_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2829980Z copying torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2831130Z copying torch/include/torch/csrc/jit/serialization/import.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2832350Z copying torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2833640Z copying torch/include/torch/csrc/jit/serialization/unpickler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2834820Z copying torch/include/torch/csrc/jit/serialization/source_range_serialization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2836130Z copying torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2838040Z copying torch/include/torch/csrc/jit/serialization/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:48.2839090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:48.2839770Z copying torch/include/torch/csrc/jit/backends/backend_debug_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:48.2840950Z copying torch/include/torch/csrc/jit/backends/backend_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:48.2842130Z copying torch/include/torch/csrc/jit/backends/backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:48.2843310Z copying torch/include/torch/csrc/jit/backends/backend_exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:48.2844490Z copying torch/include/torch/csrc/jit/backends/backend_debug_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:48.2845710Z copying torch/include/torch/csrc/jit/backends/backend_resolver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:48.2846940Z copying torch/include/torch/csrc/jit/backends/backend_preprocess.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:48.2848130Z copying torch/include/torch/csrc/jit/backends/backend_detail.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:48.2849380Z copying torch/include/torch/csrc/jit/backends/backend_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:48.2850630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml 2025-09-07T06:13:48.2851110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-09-07T06:13:48.2851780Z copying torch/include/torch/csrc/jit/backends/coreml/cpp/context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-09-07T06:13:48.2852950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-09-07T06:13:48.2853780Z copying torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-09-07T06:13:48.2854950Z copying torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-09-07T06:13:48.2856170Z copying torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-09-07T06:13:48.2857370Z copying torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-09-07T06:13:48.2858590Z copying torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-09-07T06:13:48.2859730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack 2025-09-07T06:13:48.2860410Z copying torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack 2025-09-07T06:13:48.2861630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-09-07T06:13:48.2862420Z copying torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-09-07T06:13:48.2863510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-09-07T06:13:48.2864250Z copying torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-09-07T06:13:48.2865440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-09-07T06:13:48.2866180Z copying torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-09-07T06:13:48.2867200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2867880Z copying torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2869110Z copying torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2870320Z copying torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2871480Z copying torch/include/torch/csrc/jit/runtime/operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2872730Z copying torch/include/torch/csrc/jit/runtime/script_profile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2873910Z copying torch/include/torch/csrc/jit/runtime/interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2875140Z copying torch/include/torch/csrc/jit/runtime/register_ops_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2876630Z copying torch/include/torch/csrc/jit/runtime/jit_exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2877880Z copying torch/include/torch/csrc/jit/runtime/exception_message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2879090Z copying torch/include/torch/csrc/jit/runtime/argument_spec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2880290Z copying torch/include/torch/csrc/jit/runtime/shape_function_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2881400Z copying torch/include/torch/csrc/jit/runtime/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2882650Z copying torch/include/torch/csrc/jit/runtime/jit_trace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2883890Z copying torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2885140Z copying torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2886460Z copying torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2887600Z copying torch/include/torch/csrc/jit/runtime/custom_operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2888810Z copying torch/include/torch/csrc/jit/runtime/vararg_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2889960Z copying torch/include/torch/csrc/jit/runtime/graph_iterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2891400Z copying torch/include/torch/csrc/jit/runtime/symbolic_script.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2892520Z copying torch/include/torch/csrc/jit/runtime/variable_tensor_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2898630Z copying torch/include/torch/csrc/jit/runtime/decomposition_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2899420Z copying torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2900170Z copying torch/include/torch/csrc/jit/runtime/autodiff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2900870Z copying torch/include/torch/csrc/jit/runtime/print_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2901590Z copying torch/include/torch/csrc/jit/runtime/profiling_record.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2902350Z copying torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2903090Z copying torch/include/torch/csrc/jit/runtime/graph_executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2903880Z copying torch/include/torch/csrc/jit/runtime/operator_options.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2904600Z copying torch/include/torch/csrc/jit/runtime/instruction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2905320Z copying torch/include/torch/csrc/jit/runtime/graph_executor_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:48.2906150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-09-07T06:13:48.2906810Z copying torch/include/torch/csrc/jit/runtime/interpreter/frame.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-09-07T06:13:48.2908060Z copying torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-09-07T06:13:48.2909230Z copying torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-09-07T06:13:48.2910460Z copying torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-09-07T06:13:48.2911920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:48.2912570Z copying torch/include/torch/csrc/jit/runtime/static/te_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:48.2913960Z copying torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:48.2915270Z copying torch/include/torch/csrc/jit/runtime/static/static_method.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:48.2916430Z copying torch/include/torch/csrc/jit/runtime/static/memory_planner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:48.2917610Z copying torch/include/torch/csrc/jit/runtime/static/fusion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:48.2918790Z copying torch/include/torch/csrc/jit/runtime/static/passes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:48.2920020Z copying torch/include/torch/csrc/jit/runtime/static/ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:48.2921270Z copying torch/include/torch/csrc/jit/runtime/static/impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:48.2923130Z copying torch/include/torch/csrc/jit/runtime/static/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:48.2923960Z copying torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:48.2925340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2925960Z copying torch/include/torch/csrc/jit/passes/remove_expands.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2927220Z copying torch/include/torch/csrc/jit/passes/restore_mutation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2928520Z copying torch/include/torch/csrc/jit/passes/peephole_list_idioms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2929740Z copying torch/include/torch/csrc/jit/passes/subgraph_rewrite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2931130Z copying torch/include/torch/csrc/jit/passes/fuse_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2932330Z copying torch/include/torch/csrc/jit/passes/guard_elimination.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2933480Z copying torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2934810Z copying torch/include/torch/csrc/jit/passes/freeze_module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2936000Z copying torch/include/torch/csrc/jit/passes/clear_undefinedness.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2937210Z copying torch/include/torch/csrc/jit/passes/dtype_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2938360Z copying torch/include/torch/csrc/jit/passes/peephole.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2939770Z copying torch/include/torch/csrc/jit/passes/remove_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2941010Z copying torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2942320Z copying torch/include/torch/csrc/jit/passes/value_refinement_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2943510Z copying torch/include/torch/csrc/jit/passes/metal_rewrite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2944680Z copying torch/include/torch/csrc/jit/passes/liveness.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2945850Z copying torch/include/torch/csrc/jit/passes/remove_mutation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2947040Z copying torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2948300Z copying torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2949580Z copying torch/include/torch/csrc/jit/passes/batch_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2950790Z copying torch/include/torch/csrc/jit/passes/frozen_concat_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2951950Z copying torch/include/torch/csrc/jit/passes/constant_pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2953310Z copying torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2954580Z copying torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2956000Z copying torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2957100Z copying torch/include/torch/csrc/jit/passes/fuse_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2958510Z copying torch/include/torch/csrc/jit/passes/annotate_warns.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2959660Z copying torch/include/torch/csrc/jit/passes/specialize_autogradzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2961070Z copying torch/include/torch/csrc/jit/passes/frozen_linear_folding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2962280Z copying torch/include/torch/csrc/jit/passes/prepack_folding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2963630Z copying torch/include/torch/csrc/jit/passes/frozen_conv_folding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2964940Z copying torch/include/torch/csrc/jit/passes/constant_propagation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2966190Z copying torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2967350Z copying torch/include/torch/csrc/jit/passes/insert_guards.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2968570Z copying torch/include/torch/csrc/jit/passes/variadic_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2969800Z copying torch/include/torch/csrc/jit/passes/refine_tuple_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2971040Z copying torch/include/torch/csrc/jit/passes/inliner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2972260Z copying torch/include/torch/csrc/jit/passes/lower_grad_of.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2973540Z copying torch/include/torch/csrc/jit/passes/normalize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2974660Z copying torch/include/torch/csrc/jit/passes/device_type_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2975850Z copying torch/include/torch/csrc/jit/passes/vulkan_rewrite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2977240Z copying torch/include/torch/csrc/jit/passes/erase_number_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2978530Z copying torch/include/torch/csrc/jit/passes/integer_value_refinement.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2979980Z copying torch/include/torch/csrc/jit/passes/fold_linear_bn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2981030Z copying torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2982460Z copying torch/include/torch/csrc/jit/passes/graph_fuser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2983660Z copying torch/include/torch/csrc/jit/passes/fold_conv_bn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2984950Z copying torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2986120Z copying torch/include/torch/csrc/jit/passes/inline_forked_closures.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2987390Z copying torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2988600Z copying torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2989910Z copying torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2991190Z copying torch/include/torch/csrc/jit/passes/add_if_then_else.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2992450Z copying torch/include/torch/csrc/jit/passes/decompose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2993770Z copying torch/include/torch/csrc/jit/passes/peephole_non_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2994910Z copying torch/include/torch/csrc/jit/passes/remove_inplace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2996260Z copying torch/include/torch/csrc/jit/passes/inline_fork_wait.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2997520Z copying torch/include/torch/csrc/jit/passes/check_strict_fusion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.2998860Z copying torch/include/torch/csrc/jit/passes/concat_opt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3000130Z copying torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3001580Z copying torch/include/torch/csrc/jit/passes/eliminate_no_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3002780Z copying torch/include/torch/csrc/jit/passes/requires_grad_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3004060Z copying torch/include/torch/csrc/jit/passes/dead_code_elimination.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3005210Z copying torch/include/torch/csrc/jit/passes/clear_profiling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3006510Z copying torch/include/torch/csrc/jit/passes/create_functional_graphs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3007700Z copying torch/include/torch/csrc/jit/passes/bailout_graph.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3008970Z copying torch/include/torch/csrc/jit/passes/lower_tuples.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3010240Z copying torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3011620Z copying torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3012750Z copying torch/include/torch/csrc/jit/passes/canonicalize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3013990Z copying torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3015220Z copying torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3016490Z copying torch/include/torch/csrc/jit/passes/loop_unrolling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3017680Z copying torch/include/torch/csrc/jit/passes/shape_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3019010Z copying torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3020260Z copying torch/include/torch/csrc/jit/passes/remove_exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3021520Z copying torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3022760Z copying torch/include/torch/csrc/jit/passes/inplace_check.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3024020Z copying torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3025200Z copying torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3026330Z copying torch/include/torch/csrc/jit/passes/pass_manager.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3027510Z copying torch/include/torch/csrc/jit/passes/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3028700Z copying torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3029900Z copying torch/include/torch/csrc/jit/passes/lift_closures.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3031020Z copying torch/include/torch/csrc/jit/passes/autocast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3032290Z copying torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3033500Z copying torch/include/torch/csrc/jit/passes/lower_graph.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:48.3034700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3035360Z copying torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3036650Z copying torch/include/torch/csrc/jit/passes/onnx/function_substitution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3038040Z copying torch/include/torch/csrc/jit/passes/onnx/helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3039310Z copying torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3040490Z copying torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3041780Z copying torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3042950Z copying torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3044220Z copying torch/include/torch/csrc/jit/passes/onnx/onnx_log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3045470Z copying torch/include/torch/csrc/jit/passes/onnx/peephole.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3046710Z copying torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3047900Z copying torch/include/torch/csrc/jit/passes/onnx/constant_fold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3049140Z copying torch/include/torch/csrc/jit/passes/onnx/constant_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3050380Z copying torch/include/torch/csrc/jit/passes/onnx/function_extraction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3051830Z copying torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3053050Z copying torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3054290Z copying torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3055650Z copying torch/include/torch/csrc/jit/passes/onnx/naming.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3056970Z copying torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3058210Z copying torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3059600Z copying torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:48.3060980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-09-07T06:13:48.3061990Z copying torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-09-07T06:13:48.3063630Z copying torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-09-07T06:13:48.3065030Z copying torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-09-07T06:13:48.3066340Z copying torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-09-07T06:13:48.3067610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-09-07T06:13:48.3068350Z copying torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-09-07T06:13:48.3069590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-09-07T06:13:48.3070300Z copying torch/include/torch/csrc/jit/passes/utils/optimization_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-09-07T06:13:48.3071630Z copying torch/include/torch/csrc/jit/passes/utils/memory_dag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-09-07T06:13:48.3073130Z copying torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-09-07T06:13:48.3074380Z copying torch/include/torch/csrc/jit/passes/utils/op_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-09-07T06:13:48.3075650Z copying torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-09-07T06:13:48.3076940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:48.3077580Z copying torch/include/torch/csrc/jit/passes/quantization/helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:48.3078890Z copying torch/include/torch/csrc/jit/passes/quantization/quantization_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:48.3080120Z copying torch/include/torch/csrc/jit/passes/quantization/insert_observers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:48.3081330Z copying torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:48.3082650Z copying torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:48.3084210Z copying torch/include/torch/csrc/jit/passes/quantization/finalize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:48.3085460Z copying torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:48.3086800Z copying torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:48.3088150Z copying torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:48.3089270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen 2025-09-07T06:13:48.3089780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/cuda 2025-09-07T06:13:48.3090480Z copying torch/include/torch/csrc/jit/codegen/cuda/interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/cuda 2025-09-07T06:13:48.3091770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:48.3092490Z copying torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:48.3093740Z copying torch/include/torch/csrc/jit/codegen/onednn/operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:48.3094970Z copying torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:48.3096250Z copying torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:48.3097470Z copying torch/include/torch/csrc/jit/codegen/onednn/interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:48.3098790Z copying torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:48.3100010Z copying torch/include/torch/csrc/jit/codegen/onednn/kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:48.3101250Z copying torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:48.3102540Z copying torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:48.3103770Z copying torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:48.3105010Z copying torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:48.3106290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:48.3106970Z copying torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:48.3108220Z copying torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:48.3109450Z copying torch/include/torch/csrc/jit/codegen/fuser/compiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:48.3110670Z copying torch/include/torch/csrc/jit/codegen/fuser/fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:48.3112010Z copying torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:48.3113180Z copying torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:48.3114400Z copying torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:48.3115750Z copying torch/include/torch/csrc/jit/codegen/fuser/interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:48.3116850Z copying torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:48.3118140Z copying torch/include/torch/csrc/jit/codegen/fuser/codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:48.3119390Z copying torch/include/torch/csrc/jit/codegen/fuser/executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:48.3120530Z copying torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:48.3121920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-09-07T06:13:48.3122550Z copying torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-09-07T06:13:48.3123820Z copying torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-09-07T06:13:48.3125030Z copying torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-09-07T06:13:48.3126230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-09-07T06:13:48.3126910Z copying torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-09-07T06:13:48.3128210Z copying torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-09-07T06:13:48.3129380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing 2025-09-07T06:13:48.3130010Z copying torch/include/torch/csrc/jit/testing/file_check.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing 2025-09-07T06:13:48.3131240Z copying torch/include/torch/csrc/jit/testing/hooks_for_testing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing 2025-09-07T06:13:48.3132520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3133190Z copying torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3134520Z copying torch/include/torch/csrc/jit/mobile/parse_operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3135770Z copying torch/include/torch/csrc/jit/mobile/observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3137130Z copying torch/include/torch/csrc/jit/mobile/upgrader_mobile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3138400Z copying torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3139630Z copying torch/include/torch/csrc/jit/mobile/quantization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3140930Z copying torch/include/torch/csrc/jit/mobile/profiler_edge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3142150Z copying torch/include/torch/csrc/jit/mobile/code.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3143380Z copying torch/include/torch/csrc/jit/mobile/interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3144800Z copying torch/include/torch/csrc/jit/mobile/frame.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3146010Z copying torch/include/torch/csrc/jit/mobile/method.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3147370Z copying torch/include/torch/csrc/jit/mobile/debug_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3148590Z copying torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3149920Z copying torch/include/torch/csrc/jit/mobile/prim_ops_registery.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3151250Z copying torch/include/torch/csrc/jit/mobile/parse_bytecode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3152650Z copying torch/include/torch/csrc/jit/mobile/import_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3153770Z copying torch/include/torch/csrc/jit/mobile/import_export_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3155130Z copying torch/include/torch/csrc/jit/mobile/type_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3156440Z copying torch/include/torch/csrc/jit/mobile/import.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3157860Z copying torch/include/torch/csrc/jit/mobile/module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3159200Z copying torch/include/torch/csrc/jit/mobile/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3160800Z copying torch/include/torch/csrc/jit/mobile/file_format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:48.3162130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-09-07T06:13:48.3162850Z copying torch/include/torch/csrc/jit/mobile/compatibility/backport.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-09-07T06:13:48.3164110Z copying torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-09-07T06:13:48.3165330Z copying torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-09-07T06:13:48.3166540Z copying torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-09-07T06:13:48.3167680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:48.3168380Z copying torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:48.3169700Z copying torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:48.3171110Z copying torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:48.3172460Z copying torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:48.3173730Z copying torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:48.3174990Z copying torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:48.3176160Z copying torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:48.3177340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc 2025-09-07T06:13:48.3177990Z copying torch/include/torch/csrc/jit/mobile/nnc/context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc 2025-09-07T06:13:48.3179280Z copying torch/include/torch/csrc/jit/mobile/nnc/registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc 2025-09-07T06:13:48.3180660Z copying torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc 2025-09-07T06:13:48.3182070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train 2025-09-07T06:13:48.3182680Z copying torch/include/torch/csrc/jit/mobile/train/sequential.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train 2025-09-07T06:13:48.3183910Z copying torch/include/torch/csrc/jit/mobile/train/export_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train 2025-09-07T06:13:48.3185100Z copying torch/include/torch/csrc/jit/mobile/train/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train 2025-09-07T06:13:48.3186270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/optim 2025-09-07T06:13:48.3186890Z copying torch/include/torch/csrc/jit/mobile/train/optim/sgd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/optim 2025-09-07T06:13:48.3188130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-09-07T06:13:48.3188810Z copying torch/include/torch/csrc/jit/operator_upgraders/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-09-07T06:13:48.3190120Z copying torch/include/torch/csrc/jit/operator_upgraders/version_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-09-07T06:13:48.3191350Z copying torch/include/torch/csrc/jit/operator_upgraders/upgraders.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-09-07T06:13:48.3192580Z copying torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-09-07T06:13:48.3193720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-09-07T06:13:48.3194380Z copying torch/include/torch/csrc/jit/api/function_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-09-07T06:13:48.3195560Z copying torch/include/torch/csrc/jit/api/method.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-09-07T06:13:48.3196910Z copying torch/include/torch/csrc/jit/api/compilation_unit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-09-07T06:13:48.3198140Z copying torch/include/torch/csrc/jit/api/object.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-09-07T06:13:48.3199310Z copying torch/include/torch/csrc/jit/api/module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-09-07T06:13:48.3200730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy 2025-09-07T06:13:48.3201180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-09-07T06:13:48.3201940Z copying torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-09-07T06:13:48.3203270Z copying torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-09-07T06:13:48.3204510Z copying torch/include/torch/csrc/lazy/generated/LazyIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-09-07T06:13:48.3207610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3207920Z copying torch/include/torch/csrc/lazy/core/debug_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3208990Z copying torch/include/torch/csrc/lazy/core/tensor_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3210210Z copying torch/include/torch/csrc/lazy/core/config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3211360Z copying torch/include/torch/csrc/lazy/core/multi_wait.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3212610Z copying torch/include/torch/csrc/lazy/core/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3213780Z copying torch/include/torch/csrc/lazy/core/permutation_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3215020Z copying torch/include/torch/csrc/lazy/core/lazy_graph_executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3216250Z copying torch/include/torch/csrc/lazy/core/cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3217530Z copying torch/include/torch/csrc/lazy/core/tensor_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3218780Z copying torch/include/torch/csrc/lazy/core/shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3219950Z copying torch/include/torch/csrc/lazy/core/thread_pool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3221120Z copying torch/include/torch/csrc/lazy/core/unique.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3222360Z copying torch/include/torch/csrc/lazy/core/shape_inference.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3223540Z copying torch/include/torch/csrc/lazy/core/util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3224740Z copying torch/include/torch/csrc/lazy/core/ir_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3225980Z copying torch/include/torch/csrc/lazy/core/metrics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3227220Z copying torch/include/torch/csrc/lazy/core/ir_dump_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3228430Z copying torch/include/torch/csrc/lazy/core/dynamic_ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3229800Z copying torch/include/torch/csrc/lazy/core/ir_builder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3231210Z copying torch/include/torch/csrc/lazy/core/helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3232450Z copying torch/include/torch/csrc/lazy/core/trie.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3233910Z copying torch/include/torch/csrc/lazy/core/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3235660Z copying torch/include/torch/csrc/lazy/core/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3236920Z copying torch/include/torch/csrc/lazy/core/ir_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:48.3238650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/internal_ops 2025-09-07T06:13:48.3239480Z copying torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/internal_ops 2025-09-07T06:13:48.3240710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops 2025-09-07T06:13:48.3241520Z copying torch/include/torch/csrc/lazy/core/ops/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops 2025-09-07T06:13:48.3242830Z copying torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops 2025-09-07T06:13:48.3244080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python 2025-09-07T06:13:48.3244730Z copying torch/include/torch/csrc/lazy/python/python_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python 2025-09-07T06:13:48.3245920Z copying torch/include/torch/csrc/lazy/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python 2025-09-07T06:13:48.3247110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:48.3247760Z copying torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:48.3248980Z copying torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:48.3250120Z copying torch/include/torch/csrc/lazy/ts_backend/config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:48.3251370Z copying torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:48.3252640Z copying torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:48.3254010Z copying torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:48.3256360Z copying torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:48.3256690Z copying torch/include/torch/csrc/lazy/ts_backend/ts_node.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:48.3257640Z copying torch/include/torch/csrc/lazy/ts_backend/ir_builder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:48.3258870Z copying torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:48.3260270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops 2025-09-07T06:13:48.3260820Z copying torch/include/torch/csrc/lazy/ts_backend/ops/generic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops 2025-09-07T06:13:48.3262070Z copying torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops 2025-09-07T06:13:48.3263480Z copying torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops 2025-09-07T06:13:48.3264450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-09-07T06:13:48.3265140Z copying torch/include/torch/csrc/lazy/backend/backend_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-09-07T06:13:48.3266720Z copying torch/include/torch/csrc/lazy/backend/backend_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-09-07T06:13:48.3348200Z copying torch/include/torch/csrc/lazy/backend/lowering_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-09-07T06:13:48.3349780Z copying torch/include/torch/csrc/lazy/backend/backend_device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-09-07T06:13:48.3862550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia 2025-09-07T06:13:48.3863180Z copying torch/include/torch/csrc/mtia/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia 2025-09-07T06:13:48.3865120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/profiler 2025-09-07T06:13:48.3865530Z copying torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/profiler 2025-09-07T06:13:48.3866830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api 2025-09-07T06:13:48.3867380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include 2025-09-07T06:13:48.3867880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3868630Z copying torch/include/torch/csrc/api/include/torch/fft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3870030Z copying torch/include/torch/csrc/api/include/torch/nested.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3871380Z copying torch/include/torch/csrc/api/include/torch/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3872760Z copying torch/include/torch/csrc/api/include/torch/version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3874430Z copying torch/include/torch/csrc/api/include/torch/enum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3876080Z copying torch/include/torch/csrc/api/include/torch/types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3878590Z copying torch/include/torch/csrc/api/include/torch/all.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3878980Z copying torch/include/torch/csrc/api/include/torch/data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3880270Z copying torch/include/torch/csrc/api/include/torch/arg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3881610Z copying torch/include/torch/csrc/api/include/torch/xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3883000Z copying torch/include/torch/csrc/api/include/torch/torch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3884340Z copying torch/include/torch/csrc/api/include/torch/optim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3885490Z copying torch/include/torch/csrc/api/include/torch/jit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3887000Z copying torch/include/torch/csrc/api/include/torch/nn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3888300Z copying torch/include/torch/csrc/api/include/torch/imethod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3889970Z copying torch/include/torch/csrc/api/include/torch/ordered_dict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3891070Z copying torch/include/torch/csrc/api/include/torch/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3892480Z copying torch/include/torch/csrc/api/include/torch/autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3893810Z copying torch/include/torch/csrc/api/include/torch/special.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3895700Z copying torch/include/torch/csrc/api/include/torch/sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3896760Z copying torch/include/torch/csrc/api/include/torch/mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3898340Z copying torch/include/torch/csrc/api/include/torch/python.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3899550Z copying torch/include/torch/csrc/api/include/torch/serialize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3900870Z copying torch/include/torch/csrc/api/include/torch/expanding_array.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:48.3908210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:48.3908800Z copying torch/include/torch/csrc/api/include/torch/nn/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:48.3910330Z copying torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:48.3911760Z copying torch/include/torch/csrc/api/include/torch/nn/options.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:48.3913120Z copying torch/include/torch/csrc/api/include/torch/nn/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:48.3914620Z copying torch/include/torch/csrc/api/include/torch/nn/modules.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:48.3916100Z copying torch/include/torch/csrc/api/include/torch/nn/pimpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:48.3917530Z copying torch/include/torch/csrc/api/include/torch/nn/module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:48.3918970Z copying torch/include/torch/csrc/api/include/torch/nn/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:48.3920300Z copying torch/include/torch/csrc/api/include/torch/nn/cloneable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:48.3921740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3922420Z copying torch/include/torch/csrc/api/include/torch/nn/options/normalization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3923790Z copying torch/include/torch/csrc/api/include/torch/nn/options/rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3925080Z copying torch/include/torch/csrc/api/include/torch/nn/options/distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3926400Z copying torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3927860Z copying torch/include/torch/csrc/api/include/torch/nn/options/linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3929230Z copying torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3930670Z copying torch/include/torch/csrc/api/include/torch/nn/options/vision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3932000Z copying torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3933350Z copying torch/include/torch/csrc/api/include/torch/nn/options/dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3934690Z copying torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3936020Z copying torch/include/torch/csrc/api/include/torch/nn/options/embedding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3937270Z copying torch/include/torch/csrc/api/include/torch/nn/options/fold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3938660Z copying torch/include/torch/csrc/api/include/torch/nn/options/activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3940770Z copying torch/include/torch/csrc/api/include/torch/nn/options/transformer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3941430Z copying torch/include/torch/csrc/api/include/torch/nn/options/pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3943120Z copying torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3944250Z copying torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3945640Z copying torch/include/torch/csrc/api/include/torch/nn/options/conv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3946890Z copying torch/include/torch/csrc/api/include/torch/nn/options/padding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3948290Z copying torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3949580Z copying torch/include/torch/csrc/api/include/torch/nn/options/loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:48.3951010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-09-07T06:13:48.3951830Z copying torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-09-07T06:13:48.3953000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils 2025-09-07T06:13:48.3953690Z copying torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils 2025-09-07T06:13:48.3954960Z copying torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils 2025-09-07T06:13:48.3956290Z copying torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils 2025-09-07T06:13:48.3957550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3958230Z copying torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3959520Z copying torch/include/torch/csrc/api/include/torch/nn/modules/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3960840Z copying torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3962160Z copying torch/include/torch/csrc/api/include/torch/nn/modules/distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3963580Z copying torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3964930Z copying torch/include/torch/csrc/api/include/torch/nn/modules/linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3966350Z copying torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3967520Z copying torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3968840Z copying torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3970170Z copying torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3971650Z copying torch/include/torch/csrc/api/include/torch/nn/modules/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3972790Z copying torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3974170Z copying torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3975460Z copying torch/include/torch/csrc/api/include/torch/nn/modules/fold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3976780Z copying torch/include/torch/csrc/api/include/torch/nn/modules/activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3978300Z copying torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3979690Z copying torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3981010Z copying torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3982380Z copying torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3983780Z copying torch/include/torch/csrc/api/include/torch/nn/modules/conv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3985090Z copying torch/include/torch/csrc/api/include/torch/nn/modules/padding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3986450Z copying torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3987710Z copying torch/include/torch/csrc/api/include/torch/nn/modules/loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:48.3989160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:48.3989840Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:48.3991170Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:48.3992450Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:48.3993790Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:48.3995100Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:48.3996510Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:48.3997920Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:48.3999260Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:48.4000560Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:48.4002030Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:48.4003300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4004140Z copying torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4005450Z copying torch/include/torch/csrc/api/include/torch/nn/functional/distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4006830Z copying torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4008270Z copying torch/include/torch/csrc/api/include/torch/nn/functional/linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4009660Z copying torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4011060Z copying torch/include/torch/csrc/api/include/torch/nn/functional/vision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4012440Z copying torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4013860Z copying torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4015210Z copying torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4016590Z copying torch/include/torch/csrc/api/include/torch/nn/functional/fold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4018100Z copying torch/include/torch/csrc/api/include/torch/nn/functional/activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4019610Z copying torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4021240Z copying torch/include/torch/csrc/api/include/torch/nn/functional/conv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4022710Z copying torch/include/torch/csrc/api/include/torch/nn/functional/padding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4024270Z copying torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4026170Z copying torch/include/torch/csrc/api/include/torch/nn/functional/loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:48.4028070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/python 2025-09-07T06:13:48.4028730Z copying torch/include/torch/csrc/api/include/torch/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/python 2025-09-07T06:13:48.4035630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:48.4036350Z copying torch/include/torch/csrc/api/include/torch/optim/rmsprop.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:48.4036790Z copying torch/include/torch/csrc/api/include/torch/optim/lbfgs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:48.4037280Z copying torch/include/torch/csrc/api/include/torch/optim/optimizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:48.4037700Z copying torch/include/torch/csrc/api/include/torch/optim/adagrad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:48.4038100Z copying torch/include/torch/csrc/api/include/torch/optim/sgd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:48.4038520Z copying torch/include/torch/csrc/api/include/torch/optim/serialize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:48.4039670Z copying torch/include/torch/csrc/api/include/torch/optim/adamw.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:48.4041100Z copying torch/include/torch/csrc/api/include/torch/optim/adam.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:48.4042760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-09-07T06:13:48.4043530Z copying torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-09-07T06:13:48.4045180Z copying torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-09-07T06:13:48.4046500Z copying torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-09-07T06:13:48.4047930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-09-07T06:13:48.4048630Z copying torch/include/torch/csrc/api/include/torch/serialize/archive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-09-07T06:13:48.4050080Z copying torch/include/torch/csrc/api/include/torch/serialize/input-archive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-09-07T06:13:48.4051600Z copying torch/include/torch/csrc/api/include/torch/serialize/output-archive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-09-07T06:13:48.4053020Z copying torch/include/torch/csrc/api/include/torch/serialize/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-09-07T06:13:48.4054440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nativert 2025-09-07T06:13:48.4055150Z copying torch/include/torch/csrc/api/include/torch/nativert/ModelRunnerHandle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nativert 2025-09-07T06:13:48.4056500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail 2025-09-07T06:13:48.4057250Z copying torch/include/torch/csrc/api/include/torch/detail/static.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail 2025-09-07T06:13:48.4058770Z copying torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail 2025-09-07T06:13:48.4060150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:48.4060870Z copying torch/include/torch/csrc/api/include/torch/data/example.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:48.4062430Z copying torch/include/torch/csrc/api/include/torch/data/dataloader_options.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:48.4064020Z copying torch/include/torch/csrc/api/include/torch/data/worker_exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:48.4065300Z copying torch/include/torch/csrc/api/include/torch/data/dataloader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:48.4066670Z copying torch/include/torch/csrc/api/include/torch/data/samplers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:48.4068260Z copying torch/include/torch/csrc/api/include/torch/data/datasets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:48.4069590Z copying torch/include/torch/csrc/api/include/torch/data/transforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:48.4071040Z copying torch/include/torch/csrc/api/include/torch/data/iterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:48.4072340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:48.4073100Z copying torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:48.4074630Z copying torch/include/torch/csrc/api/include/torch/data/datasets/shared.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:48.4076040Z copying torch/include/torch/csrc/api/include/torch/data/datasets/map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:48.4077450Z copying torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:48.4078990Z copying torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:48.4080380Z copying torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:48.4081770Z copying torch/include/torch/csrc/api/include/torch/data/datasets/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:48.4083040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail 2025-09-07T06:13:48.4083770Z copying torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail 2025-09-07T06:13:48.4085210Z copying torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail 2025-09-07T06:13:48.4086470Z copying torch/include/torch/csrc/api/include/torch/data/detail/queue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail 2025-09-07T06:13:48.4087820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-09-07T06:13:48.4088510Z copying torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-09-07T06:13:48.4089850Z copying torch/include/torch/csrc/api/include/torch/data/transforms/stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-09-07T06:13:48.4091350Z copying torch/include/torch/csrc/api/include/torch/data/transforms/collate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-09-07T06:13:48.4092650Z copying torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-09-07T06:13:48.4093890Z copying torch/include/torch/csrc/api/include/torch/data/transforms/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-09-07T06:13:48.4095150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:48.4095890Z copying torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:48.4097400Z copying torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:48.4098800Z copying torch/include/torch/csrc/api/include/torch/data/samplers/stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:48.4100130Z copying torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:48.4101460Z copying torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:48.4102700Z copying torch/include/torch/csrc/api/include/torch/data/samplers/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:48.4104000Z copying torch/include/torch/csrc/api/include/torch/data/samplers/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:48.4105410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-09-07T06:13:48.4106080Z copying torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-09-07T06:13:48.4107540Z copying torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-09-07T06:13:48.4108750Z copying torch/include/torch/csrc/api/include/torch/data/dataloader/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-09-07T06:13:48.4109970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-09-07T06:13:48.4110610Z copying torch/include/torch/csrc/profiler/combined_traceback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-09-07T06:13:48.4111960Z copying torch/include/torch/csrc/profiler/events.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-09-07T06:13:48.4113310Z copying torch/include/torch/csrc/profiler/kineto_shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-09-07T06:13:48.4114630Z copying torch/include/torch/csrc/profiler/api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-09-07T06:13:48.4116120Z copying torch/include/torch/csrc/profiler/kineto_client_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-09-07T06:13:48.4117480Z copying torch/include/torch/csrc/profiler/util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-09-07T06:13:48.4118710Z copying torch/include/torch/csrc/profiler/containers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-09-07T06:13:48.4120130Z copying torch/include/torch/csrc/profiler/collection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-09-07T06:13:48.4121680Z copying torch/include/torch/csrc/profiler/perf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-09-07T06:13:48.4122720Z copying torch/include/torch/csrc/profiler/data_flow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-09-07T06:13:48.4124010Z copying torch/include/torch/csrc/profiler/perf-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-09-07T06:13:48.4125580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/stubs 2025-09-07T06:13:48.4126270Z copying torch/include/torch/csrc/profiler/stubs/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/stubs 2025-09-07T06:13:48.4128130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-09-07T06:13:48.4128660Z copying torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-09-07T06:13:48.4130010Z copying torch/include/torch/csrc/profiler/standalone/nvtx_observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-09-07T06:13:48.4131410Z copying torch/include/torch/csrc/profiler/standalone/itt_observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-09-07T06:13:48.4132850Z copying torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-09-07T06:13:48.4134090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-09-07T06:13:48.4134720Z copying torch/include/torch/csrc/profiler/python/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-09-07T06:13:48.4136180Z copying torch/include/torch/csrc/profiler/python/combined_traceback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-09-07T06:13:48.4137570Z copying torch/include/torch/csrc/profiler/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-09-07T06:13:48.4138940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-09-07T06:13:48.4139620Z copying torch/include/torch/csrc/profiler/orchestration/vulkan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-09-07T06:13:48.4141110Z copying torch/include/torch/csrc/profiler/orchestration/observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-09-07T06:13:48.4142640Z copying torch/include/torch/csrc/profiler/orchestration/python_tracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-09-07T06:13:48.4143590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4144300Z copying torch/include/torch/csrc/profiler/unwind/unwinder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4145620Z copying torch/include/torch/csrc/profiler/unwind/dwarf_enums.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4147120Z copying torch/include/torch/csrc/profiler/unwind/unwind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4148430Z copying torch/include/torch/csrc/profiler/unwind/sections.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4149820Z copying torch/include/torch/csrc/profiler/unwind/unwind_error.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4151200Z copying torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4152450Z copying torch/include/torch/csrc/profiler/unwind/debug_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4153860Z copying torch/include/torch/csrc/profiler/unwind/action.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4155260Z copying torch/include/torch/csrc/profiler/unwind/mem_file.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4156540Z copying torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4157900Z copying torch/include/torch/csrc/profiler/unwind/fde.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4159130Z copying torch/include/torch/csrc/profiler/unwind/communicate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4160500Z copying torch/include/torch/csrc/profiler/unwind/lexer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4161740Z copying torch/include/torch/csrc/profiler/unwind/line_number_program.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4163030Z copying torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4164260Z copying torch/include/torch/csrc/profiler/unwind/range_table.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:48.4165630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/tensor 2025-09-07T06:13:48.4166290Z copying torch/include/torch/csrc/tensor/python_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/tensor 2025-09-07T06:13:48.4167540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-09-07T06:13:48.4168200Z copying torch/include/torch/csrc/export/pt2_archive_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-09-07T06:13:48.4169440Z copying torch/include/torch/csrc/export/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-09-07T06:13:48.4170810Z copying torch/include/torch/csrc/export/example_upgraders.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-09-07T06:13:48.4172050Z copying torch/include/torch/csrc/export/upgrader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-09-07T06:13:48.4173340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functorch 2025-09-07T06:13:48.4173940Z copying torch/include/torch/csrc/functorch/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functorch 2025-09-07T06:13:48.4175210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4175780Z copying torch/include/kineto/ClientInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4177140Z copying torch/include/kineto/GenericTraceActivity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4178370Z copying torch/include/kineto/IActivityProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4179550Z copying torch/include/kineto/Config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4180790Z copying torch/include/kineto/TraceSpan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4182220Z copying torch/include/kineto/LoggingAPI.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4183390Z copying torch/include/kineto/ITraceActivity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4184700Z copying torch/include/kineto/ActivityProfilerInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4186150Z copying torch/include/kineto/ActivityTraceInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4187480Z copying torch/include/kineto/output_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4188760Z copying torch/include/kineto/ThreadUtil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4190110Z copying torch/include/kineto/ActivityType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4191330Z copying torch/include/kineto/libkineto.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4192630Z copying torch/include/kineto/time_since_epoch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4193950Z copying torch/include/kineto/ILoggerObserver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4195350Z copying torch/include/kineto/AbstractConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-09-07T06:13:48.4196710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai 2025-09-07T06:13:48.4197220Z copying torch/include/kai/kai_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai 2025-09-07T06:13:48.4198650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels 2025-09-07T06:13:48.4199110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul 2025-09-07T06:13:48.4199710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4200640Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi4cxp8x4_8x8x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4202120Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_8x8x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4203520Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1vlx8_qsi4cxp4vlx8_1vlx4vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4204890Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp4x8_1x4x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4206370Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_4x4x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4207780Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4vlx4_1x4vl_sme2_sdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4209120Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp_qsi4cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4210730Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4212030Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_8x4x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4213450Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp8x8_1x8x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4214870Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x4_16x4x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4216450Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_4x8x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4217340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4218160Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4219480Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4220920Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp_qsi4cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4222390Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4223740Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-09-07T06:13:48.4224850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-09-07T06:13:48.4225680Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-09-07T06:13:48.4227100Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-09-07T06:13:48.4228610Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p16x1biasf16_6x16x8_neon_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-09-07T06:13:48.4229880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-09-07T06:13:48.4230700Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-09-07T06:13:48.4232290Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-09-07T06:13:48.4233560Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-09-07T06:13:48.4234990Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-09-07T06:13:48.4236140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:48.4237040Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:48.4238580Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:48.4239890Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p_qsi4c32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:48.4241290Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:48.4242700Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:48.4244090Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:48.4245540Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:48.4246860Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:48.4248370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-09-07T06:13:48.4249110Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-09-07T06:13:48.4250670Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-09-07T06:13:48.4252050Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p_qai4c32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-09-07T06:13:48.4253160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4253920Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4255200Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4256510Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4257860Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4259260Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4260760Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4262100Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4263490Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4264890Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4266250Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4267700Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4269160Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4270650Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4271840Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4273290Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4274580Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4276070Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4277450Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4278830Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4280200Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4281740Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4283090Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4284410Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4285740Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4287170Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32p_qau4c32s0s1_f32_f32_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4288470Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4289860Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4291340Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4292700Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4294140Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4295480Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4296960Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4298260Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4299760Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4300960Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4302370Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4303670Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4305010Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4306290Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4307750Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4309210Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:48.4310620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:48.4311370Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp_qsi4c32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:48.4312940Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:48.4314270Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:48.4315690Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:48.4317170Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:48.4318470Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:48.4319910Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:48.4321230Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:48.4322660Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:48.4324080Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:48.4326660Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:48.4327760Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:48.4329210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-09-07T06:13:48.4330040Z copying torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-09-07T06:13:48.4331660Z copying torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-09-07T06:13:48.4332850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-09-07T06:13:48.4333720Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-09-07T06:13:48.4335120Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p_qsi8cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-09-07T06:13:48.4336380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-09-07T06:13:48.4337190Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-09-07T06:13:48.4338480Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-09-07T06:13:48.4339890Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-09-07T06:13:48.4341180Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-09-07T06:13:48.4342500Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp_qsi8cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-09-07T06:13:48.4343660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-09-07T06:13:48.4344510Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-09-07T06:13:48.4345910Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-09-07T06:13:48.4347180Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp_qsi8cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-09-07T06:13:48.4348590Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-09-07T06:13:48.4349940Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-09-07T06:13:48.4351090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-09-07T06:13:48.4351940Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-09-07T06:13:48.4353170Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-09-07T06:13:48.4354550Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p1x4_bf16p12x4b_1x36_neon_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-09-07T06:13:48.4355680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-09-07T06:13:48.4356800Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-09-07T06:13:48.4357820Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p_qai4c32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-09-07T06:13:48.4359230Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-09-07T06:13:48.4360370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-09-07T06:13:48.4361180Z copying torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-09-07T06:13:48.4362470Z copying torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-09-07T06:13:48.4363660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-09-07T06:13:48.4364490Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p_f32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-09-07T06:13:48.4365870Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-09-07T06:13:48.4367020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-09-07T06:13:48.4367790Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-09-07T06:13:48.4369060Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p_f16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-09-07T06:13:48.4370350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-09-07T06:13:48.4371120Z copying torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p_qsi8cxpsb_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-09-07T06:13:48.4372700Z copying torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-09-07T06:13:48.4373850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-09-07T06:13:48.4374520Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p_f16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-09-07T06:13:48.4375950Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-09-07T06:13:48.4377040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-09-07T06:13:48.4377810Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p_bf16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-09-07T06:13:48.4379170Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-09-07T06:13:48.4380300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-09-07T06:13:48.4381040Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p_f32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-09-07T06:13:48.4382480Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-09-07T06:13:48.4383600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4384070Z copying torch/include/ATen/Formatting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4385440Z copying torch/include/ATen/NestedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4386650Z copying torch/include/ATen/CPUFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4387960Z copying torch/include/ATen/SparseMPSFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4389250Z copying torch/include/ATen/LegacyBatchedFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4390580Z copying torch/include/ATen/CollapseDims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4392220Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4393080Z copying torch/include/ATen/MetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4394310Z copying torch/include/ATen/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4395590Z copying torch/include/ATen/TensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4396910Z copying torch/include/ATen/DeviceAccelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4398070Z copying torch/include/ATen/TensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4399350Z copying torch/include/ATen/MemoryOverlap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4400750Z copying torch/include/ATen/TensorSubclassLikeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4401970Z copying torch/include/ATen/LegacyVmapMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4403270Z copying torch/include/ATen/InitialTensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4404600Z copying torch/include/ATen/Version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4405860Z copying torch/include/ATen/DLConvertor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4407140Z copying torch/include/ATen/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4408390Z copying torch/include/ATen/FuncTorchTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4409820Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4410980Z copying torch/include/ATen/jiterator_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4412330Z copying torch/include/ATen/Operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4414340Z copying torch/include/ATen/CPUFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4415300Z copying torch/include/ATen/ceil_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4416640Z copying torch/include/ATen/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4417930Z copying torch/include/ATen/NativeMetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4419510Z copying torch/include/ATen/dlpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4420680Z copying torch/include/ATen/Config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4422030Z copying torch/include/ATen/ThreadLocalPythonObjects.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4423360Z copying torch/include/ATen/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4424650Z copying torch/include/ATen/SparseCsrTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4426080Z copying torch/include/ATen/TracerMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4427260Z copying torch/include/ATen/BlasBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4428550Z copying torch/include/ATen/Backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4429880Z copying torch/include/ATen/RegistrationDeclarations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4435820Z copying torch/include/ATen/CompositeImplicitAutogradFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4436820Z copying torch/include/ATen/PTThreadPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4438440Z copying torch/include/ATen/OpaqueTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4439780Z copying torch/include/ATen/MapAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4441200Z copying torch/include/ATen/record_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4442560Z copying torch/include/ATen/WrapDimUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4443760Z copying torch/include/ATen/RedispatchFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4455960Z copying torch/include/ATen/Context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4457080Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4458610Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4459850Z copying torch/include/ATen/div_rtn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4461100Z copying torch/include/ATen/ExpandUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4462560Z copying torch/include/ATen/MPSFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4463840Z copying torch/include/ATen/TypeDefault.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4465100Z copying torch/include/ATen/MPSFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4466450Z copying torch/include/ATen/VmapGeneratedPlumbing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4476140Z copying torch/include/ATen/MethodOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4477220Z copying torch/include/ATen/CPUFixedAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4478460Z copying torch/include/ATen/NamedTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4479790Z copying torch/include/ATen/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4481160Z copying torch/include/ATen/TensorIteratorInternal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4482390Z copying torch/include/ATen/LinalgBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4483630Z copying torch/include/ATen/LegacyBatchedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4484920Z copying torch/include/ATen/SparseCsrMPSFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4486160Z copying torch/include/ATen/ArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4487550Z copying torch/include/ATen/SequenceNumber.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4488750Z copying torch/include/ATen/FunctionalStorageImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4489970Z copying torch/include/ATen/ExpandBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4491190Z copying torch/include/ATen/Parallel-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4492470Z copying torch/include/ATen/MatrixRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4493790Z copying torch/include/ATen/CUDAFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4495430Z copying torch/include/ATen/CompositeExplicitAutogradFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4496560Z copying torch/include/ATen/FunctionalTensorWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4497970Z copying torch/include/ATen/SparseCsrTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4499240Z copying torch/include/ATen/NumericUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4500420Z copying torch/include/ATen/ATen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4501760Z copying torch/include/ATen/TensorNames.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4502970Z copying torch/include/ATen/TensorMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4504340Z copying torch/include/ATen/TensorIndexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4505670Z copying torch/include/ATen/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4506980Z copying torch/include/ATen/SparseTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4508590Z copying torch/include/ATen/SavedTensorHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4509680Z copying torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4511100Z copying torch/include/ATen/StorageUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4512400Z copying torch/include/ATen/WrapDimUtilsMulti.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4513590Z copying torch/include/ATen/code_template.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4514870Z copying torch/include/ATen/TensorOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4516170Z copying torch/include/ATen/CUDAFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4517480Z copying torch/include/ATen/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4518740Z copying torch/include/ATen/cpp_custom_type_hack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4519980Z copying torch/include/ATen/Dispatch_v2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4521460Z copying torch/include/ATen/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4522710Z copying torch/include/ATen/DeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4523990Z copying torch/include/ATen/ParallelNative.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4525240Z copying torch/include/ATen/OpMathType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4526540Z copying torch/include/ATen/PythonTorchFunctionTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4527740Z copying torch/include/ATen/PadNd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4529090Z copying torch/include/ATen/SparseMPSFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4530370Z copying torch/include/ATen/Dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4531800Z copying torch/include/ATen/CPUGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4533040Z copying torch/include/ATen/ParallelFuture.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4534280Z copying torch/include/ATen/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4535850Z copying torch/include/ATen/SparseCsrMPSFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4537310Z copying torch/include/ATen/ParallelOpenMP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4538590Z copying torch/include/ATen/jit_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4539870Z copying torch/include/ATen/CPUApplyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4541120Z copying torch/include/ATen/ThreadLocalState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4542380Z copying torch/include/ATen/ScalarOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4543590Z copying torch/include/ATen/NativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4545120Z copying torch/include/ATen/DynamicLibrary.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4546390Z copying torch/include/ATen/TensorGeometry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4547840Z copying torch/include/ATen/DTensorState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4549110Z copying torch/include/ATen/TensorIterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4550620Z copying torch/include/ATen/NamedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4551810Z copying torch/include/ATen/Dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4553120Z copying torch/include/ATen/ROCmFABackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4554480Z copying torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4555940Z copying torch/include/ATen/autocast_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4557370Z copying torch/include/ATen/Parallel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4558540Z copying torch/include/ATen/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4559790Z copying torch/include/ATen/MetaFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4562030Z copying torch/include/ATen/InferSize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4562370Z copying torch/include/ATen/LegacyVmapTransforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4563790Z copying torch/include/ATen/SmallVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4565010Z copying torch/include/ATen/Tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4566310Z copying torch/include/ATen/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4567570Z copying torch/include/ATen/AccumulateType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4568840Z copying torch/include/ATen/TensorAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4570050Z copying torch/include/ATen/SDPBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4571400Z copying torch/include/ATen/CachedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-09-07T06:13:48.4573000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4573560Z copying torch/include/ATen/core/Dict_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4574820Z copying torch/include/ATen/core/Formatting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4576350Z copying torch/include/ATen/core/TensorBody.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4579210Z copying torch/include/ATen/core/GeneratorForPrivateuseone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4580260Z copying torch/include/ATen/core/jit_type_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4581560Z copying torch/include/ATen/core/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4582900Z copying torch/include/ATen/core/rref_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4584110Z copying torch/include/ATen/core/Range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4585450Z copying torch/include/ATen/core/interned_strings_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4586740Z copying torch/include/ATen/core/operator_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4588070Z copying torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4589310Z copying torch/include/ATen/core/symbol.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4590550Z copying torch/include/ATen/core/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4591910Z copying torch/include/ATen/core/TransformationHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4593070Z copying torch/include/ATen/core/blob.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4594320Z copying torch/include/ATen/core/function_schema.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4595680Z copying torch/include/ATen/core/type_factory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4597050Z copying torch/include/ATen/core/MT19937RNGEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4598210Z copying torch/include/ATen/core/ivalue_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4599620Z copying torch/include/ATen/core/aten_interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4601140Z copying torch/include/ATen/core/dynamic_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4602440Z copying torch/include/ATen/core/class_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4603600Z copying torch/include/ATen/core/LegacyTypeDispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4604930Z copying torch/include/ATen/core/function_schema_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4606170Z copying torch/include/ATen/core/NestedIntSymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4607560Z copying torch/include/ATen/core/qualified_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4608770Z copying torch/include/ATen/core/UndefinedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4610060Z copying torch/include/ATen/core/NamedTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4611170Z copying torch/include/ATen/core/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4612500Z copying torch/include/ATen/core/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4613870Z copying torch/include/ATen/core/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4615270Z copying torch/include/ATen/core/DeprecatedTypeProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4616480Z copying torch/include/ATen/core/interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4617680Z copying torch/include/ATen/core/List.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4618950Z copying torch/include/ATen/core/ATenOpList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4620170Z copying torch/include/ATen/core/Dict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4621390Z copying torch/include/ATen/core/type_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4622650Z copying torch/include/ATen/core/grad_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4623970Z copying torch/include/ATen/core/DistributionsHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4625320Z copying torch/include/ATen/core/VariableHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4626810Z copying torch/include/ATen/core/CheckMemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4628040Z copying torch/include/ATen/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4629400Z copying torch/include/ATen/core/Array.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4630660Z copying torch/include/ATen/core/ATen_fwd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4631900Z copying torch/include/ATen/core/stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4633180Z copying torch/include/ATen/core/ATenGeneral.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4634530Z copying torch/include/ATen/core/custom_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4635700Z copying torch/include/ATen/core/IListRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4637160Z copying torch/include/ATen/core/UnsafeFromTH.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4638470Z copying torch/include/ATen/core/PythonOpRegistrationTrampoline.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4639780Z copying torch/include/ATen/core/TensorBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4641290Z copying torch/include/ATen/core/ATen_pch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4642580Z copying torch/include/ATen/core/QuantizerBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4643850Z copying torch/include/ATen/core/enum_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4645130Z copying torch/include/ATen/core/alias_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4646330Z copying torch/include/ATen/core/List_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4647620Z copying torch/include/ATen/core/TorchDispatchUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4648860Z copying torch/include/ATen/core/enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4650240Z copying torch/include/ATen/core/jit_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4651890Z copying torch/include/ATen/core/IListRef_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4653060Z copying torch/include/ATen/core/ivalue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4654760Z copying torch/include/ATen/core/Dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4655920Z copying torch/include/ATen/core/Vitals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4657230Z copying torch/include/ATen/core/PythonFallbackKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4658400Z copying torch/include/ATen/core/builtin_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4659700Z copying torch/include/ATen/core/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4660920Z copying torch/include/ATen/core/Reduction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4662120Z copying torch/include/ATen/core/Tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4663400Z copying torch/include/ATen/core/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4664630Z copying torch/include/ATen/core/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4665850Z copying torch/include/ATen/core/PhiloxRNGEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4667040Z copying torch/include/ATen/core/TensorAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4668250Z copying torch/include/ATen/core/ivalue_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4670440Z copying torch/include/ATen/core/Variadic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-09-07T06:13:48.4671450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-09-07T06:13:48.4672120Z copying torch/include/ATen/core/op_registration/adaption.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-09-07T06:13:48.4673370Z copying torch/include/ATen/core/op_registration/op_allowlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-09-07T06:13:48.4674620Z copying torch/include/ATen/core/op_registration/op_registration.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-09-07T06:13:48.4676150Z copying torch/include/ATen/core/op_registration/infer_schema.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-09-07T06:13:48.4677270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-09-07T06:13:48.4677900Z copying torch/include/ATen/core/dispatch/OperatorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-09-07T06:13:48.4679270Z copying torch/include/ATen/core/dispatch/RegistrationHandleRAII.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-09-07T06:13:48.4680510Z copying torch/include/ATen/core/dispatch/ObservedOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-09-07T06:13:48.4681930Z copying torch/include/ATen/core/dispatch/DispatchKeyExtractor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-09-07T06:13:48.4683070Z copying torch/include/ATen/core/dispatch/Dispatcher.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-09-07T06:13:48.4684660Z copying torch/include/ATen/core/dispatch/CppSignature.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-09-07T06:13:48.4685900Z copying torch/include/ATen/core/dispatch/OperatorEntry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-09-07T06:13:48.4687090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-09-07T06:13:48.4687710Z copying torch/include/ATen/core/boxing/KernelFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-09-07T06:13:48.4689010Z copying torch/include/ATen/core/boxing/OperatorKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-09-07T06:13:48.4702460Z copying torch/include/ATen/core/boxing/KernelFunction_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-09-07T06:13:48.4702790Z copying torch/include/ATen/core/boxing/BoxedKernel_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-09-07T06:13:48.4703090Z copying torch/include/ATen/core/boxing/BoxedKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-09-07T06:13:48.4703270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-09-07T06:13:48.4703640Z copying torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-09-07T06:13:48.4704040Z copying torch/include/ATen/core/boxing/impl/boxing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-09-07T06:13:48.4704370Z copying torch/include/ATen/core/boxing/impl/test_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-09-07T06:13:48.4704740Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-09-07T06:13:48.4705140Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-09-07T06:13:48.4705290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-09-07T06:13:48.4705530Z copying torch/include/ATen/mps/MPSProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-09-07T06:13:48.4705780Z copying torch/include/ATen/mps/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-09-07T06:13:48.4706030Z copying torch/include/ATen/mps/MPSAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-09-07T06:13:48.4706290Z copying torch/include/ATen/mps/MPSGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-09-07T06:13:48.4707430Z copying torch/include/ATen/mps/MPSHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-09-07T06:13:48.4708700Z copying torch/include/ATen/mps/MPSEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-09-07T06:13:48.4709980Z copying torch/include/ATen/mps/MPSDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-09-07T06:13:48.4711260Z copying torch/include/ATen/mps/MPSStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-09-07T06:13:48.4712520Z copying torch/include/ATen/mps/IndexKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-09-07T06:13:48.4713880Z copying torch/include/ATen/mps/MPSAllocatorInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-09-07T06:13:48.4715130Z copying torch/include/ATen/mps/MPSGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-09-07T06:13:48.4716510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4717290Z copying torch/include/ATen/native/CompositeRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4718500Z copying torch/include/ATen/native/MathBitsFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4719770Z copying torch/include/ATen/native/TensorTransformations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4720960Z copying torch/include/ATen/native/ComplexHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4722330Z copying torch/include/ATen/native/ConvUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4723670Z copying torch/include/ATen/native/Normalization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4725070Z copying torch/include/ATen/native/ReductionType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4726180Z copying torch/include/ATen/native/Repeat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4727480Z copying torch/include/ATen/native/layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4728740Z copying torch/include/ATen/native/GridSampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4729940Z copying torch/include/ATen/native/TriangularOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4731210Z copying torch/include/ATen/native/UnfoldBackward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4732450Z copying torch/include/ATen/native/batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4733770Z copying torch/include/ATen/native/Unfold3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4735080Z copying torch/include/ATen/native/Fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4736310Z copying torch/include/ATen/native/LinearAlgebra.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4737630Z copying torch/include/ATen/native/RangeFactories.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4743840Z copying torch/include/ATen/native/RNN.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4744120Z copying torch/include/ATen/native/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4744370Z copying torch/include/ATen/native/Pool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4744640Z copying torch/include/ATen/native/RangeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4744880Z copying torch/include/ATen/native/Cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4745910Z copying torch/include/ATen/native/im2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4747330Z copying torch/include/ATen/native/TransposeType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4748630Z copying torch/include/ATen/native/DispatchStub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4749910Z copying torch/include/ATen/native/Unfold2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4751140Z copying torch/include/ATen/native/Distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4752500Z copying torch/include/ATen/native/FunctionOfAMatrixUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4753750Z copying torch/include/ATen/native/Distributions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4755220Z copying torch/include/ATen/native/MaxPooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4756580Z copying torch/include/ATen/native/Gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4757810Z copying torch/include/ATen/native/SparseTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4759090Z copying torch/include/ATen/native/CPUFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4760460Z copying torch/include/ATen/native/FusedAdagrad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4761950Z copying torch/include/ATen/native/GridSamplerUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4763080Z copying torch/include/ATen/native/TopKImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4764380Z copying torch/include/ATen/native/TensorAdvancedIndexingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4765620Z copying torch/include/ATen/native/DilatedConvolutionUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4766770Z copying torch/include/ATen/native/ForeachUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4768060Z copying torch/include/ATen/native/SobolEngineOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4769290Z copying torch/include/ATen/native/ReduceAllOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4770490Z copying torch/include/ATen/native/Lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4771770Z copying torch/include/ATen/native/ReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4773060Z copying torch/include/ATen/native/TensorAdvancedIndexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4774310Z copying torch/include/ATen/native/UnaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4775530Z copying torch/include/ATen/native/SortingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4776820Z copying torch/include/ATen/native/MathBitFallThroughLists.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4778070Z copying torch/include/ATen/native/StridedRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4779280Z copying torch/include/ATen/native/TensorShape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4780560Z copying torch/include/ATen/native/IndexingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4781750Z copying torch/include/ATen/native/UpSample.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4783130Z copying torch/include/ATen/native/ResizeCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4784370Z copying torch/include/ATen/native/SharedReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4785580Z copying torch/include/ATen/native/Resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4786740Z copying torch/include/ATen/native/SpectralOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4787990Z copying torch/include/ATen/native/Sorting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4789310Z copying torch/include/ATen/native/NonSymbolicBC.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4790580Z copying torch/include/ATen/native/TensorProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4791820Z copying torch/include/ATen/native/BucketizationUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4792990Z copying torch/include/ATen/native/vol2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4794300Z copying torch/include/ATen/native/LossMulti.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4795870Z copying torch/include/ATen/native/NonEmptyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4796890Z copying torch/include/ATen/native/TensorDimApply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4798110Z copying torch/include/ATen/native/verbose_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4799430Z copying torch/include/ATen/native/AdaptivePooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4800630Z copying torch/include/ATen/native/ConvolutionMM3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4802130Z copying torch/include/ATen/native/group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4803190Z copying torch/include/ATen/native/Histogram.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4804450Z copying torch/include/ATen/native/Activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4805660Z copying torch/include/ATen/native/Math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4807670Z copying torch/include/ATen/native/FusedAdam.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4808890Z copying torch/include/ATen/native/GroupedMMUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4810080Z copying torch/include/ATen/native/ScatterGatherChecks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4811290Z copying torch/include/ATen/native/CPUBlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4812680Z copying torch/include/ATen/native/CompositeRandomAccessorCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4813770Z copying torch/include/ATen/native/BatchLinearAlgebra.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4814950Z copying torch/include/ATen/native/AmpKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4816220Z copying torch/include/ATen/native/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4817590Z copying torch/include/ATen/native/TensorIterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4818920Z copying torch/include/ATen/native/TensorConversions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4820210Z copying torch/include/ATen/native/FractionalMaxPooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4821410Z copying torch/include/ATen/native/ReduceOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4822820Z copying torch/include/ATen/native/TensorFactories.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4824000Z copying torch/include/ATen/native/PointwiseOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4825230Z copying torch/include/ATen/native/BinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4826430Z copying torch/include/ATen/native/Pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4827720Z copying torch/include/ATen/native/EmbeddingBag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4828940Z copying torch/include/ATen/native/im2col_shape_check.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4830150Z copying torch/include/ATen/native/SegmentReduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4831460Z copying torch/include/ATen/native/FusedSGD.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4832600Z copying torch/include/ATen/native/Padding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4833860Z copying torch/include/ATen/native/TensorCompare.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4835100Z copying torch/include/ATen/native/PixelShuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4836360Z copying torch/include/ATen/native/LinearAlgebraUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4837780Z copying torch/include/ATen/native/TypeProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4839060Z copying torch/include/ATen/native/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4840410Z copying torch/include/ATen/native/CanUse32BitIndexMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4841680Z copying torch/include/ATen/native/TensorIteratorDynamicCasting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-09-07T06:13:48.4844000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse 2025-09-07T06:13:48.4844270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized 2025-09-07T06:13:48.4844760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-09-07T06:13:48.4845540Z copying torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-09-07T06:13:48.4847140Z copying torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-09-07T06:13:48.4848420Z copying torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-09-07T06:13:48.4849800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-09-07T06:13:48.4850360Z copying torch/include/ATen/native/mps/MetalShaderLibrary.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-09-07T06:13:48.4851610Z copying torch/include/ATen/native/mps/TensorFactory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-09-07T06:13:48.4852900Z copying torch/include/ATen/native/mps/MPSGraphSonomaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-09-07T06:13:48.4854220Z copying torch/include/ATen/native/mps/MPSGraphVenturaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-09-07T06:13:48.4855470Z copying torch/include/ATen/native/mps/MPSGraphSequoiaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-09-07T06:13:48.4856770Z copying torch/include/ATen/native/mps/OperationUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-09-07T06:13:48.4858130Z copying torch/include/ATen/native/mps/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-09-07T06:13:48.4859560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-09-07T06:13:48.4860260Z copying torch/include/ATen/native/mps/kernels/GridSampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-09-07T06:13:48.4861570Z copying torch/include/ATen/native/mps/kernels/UpSample.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-09-07T06:13:48.4862880Z copying torch/include/ATen/native/mps/kernels/Pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-09-07T06:13:48.4864330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-09-07T06:13:48.4864830Z copying torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-09-07T06:13:48.4866260Z copying torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-09-07T06:13:48.4867520Z copying torch/include/ATen/native/mps/operations/BinaryKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-09-07T06:13:48.4868820Z copying torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-09-07T06:13:48.4870070Z copying torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-09-07T06:13:48.4871340Z copying torch/include/ATen/native/mps/operations/MultiTensorApply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-09-07T06:13:48.4872500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-09-07T06:13:48.4873150Z copying torch/include/ATen/native/metal/MetalConvParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-09-07T06:13:48.4874540Z copying torch/include/ATen/native/metal/MetalTensorImplStorage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-09-07T06:13:48.4875820Z copying torch/include/ATen/native/metal/MetalTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-09-07T06:13:48.4877180Z copying torch/include/ATen/native/metal/MetalContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-09-07T06:13:48.4878460Z copying torch/include/ATen/native/metal/MetalTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-09-07T06:13:48.4879700Z copying torch/include/ATen/native/metal/MetalNeuronType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-09-07T06:13:48.4880960Z copying torch/include/ATen/native/metal/MetalShaders.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-09-07T06:13:48.4882520Z copying torch/include/ATen/native/metal/MetalPrepackOpContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-09-07T06:13:48.4883820Z copying torch/include/ATen/native/metal/MetalCommandBuffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-09-07T06:13:48.4885370Z copying torch/include/ATen/native/metal/MetalDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-09-07T06:13:48.4886370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:48.4887030Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:48.4888350Z copying torch/include/ATen/native/metal/mpscnn/MPSImage+Tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:48.4889630Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNClampOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:48.4890870Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:48.4892220Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNNeuronOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:48.4893470Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNConvOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:48.4894810Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:48.4896010Z copying torch/include/ATen/native/metal/mpscnn/MPSImageUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:48.4897420Z copying torch/include/ATen/native/metal/mpscnn/MPSImageWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:48.4898610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests 2025-09-07T06:13:48.4899260Z copying torch/include/ATen/native/metal/mpscnn/tests/MetalOpTestRunner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests 2025-09-07T06:13:48.4900540Z copying torch/include/ATen/native/metal/mpscnn/tests/MPSCNNTests.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests 2025-09-07T06:13:48.4901790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-09-07T06:13:48.4902600Z copying torch/include/ATen/native/metal/ops/MetalCopy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-09-07T06:13:48.4903900Z copying torch/include/ATen/native/metal/ops/MetalConvolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-09-07T06:13:48.4904900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4905500Z copying torch/include/ATen/native/cpu/IsContiguous.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4906810Z copying torch/include/ATen/native/cpu/zmath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4908020Z copying torch/include/ATen/native/cpu/ReduceUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4909290Z copying torch/include/ATen/native/cpu/mixed_data_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4910790Z copying torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4911960Z copying torch/include/ATen/native/cpu/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4913130Z copying torch/include/ATen/native/cpu/int_mm_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4914430Z copying torch/include/ATen/native/cpu/SampledAddmmKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4915660Z copying torch/include/ATen/native/cpu/Gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4916980Z copying torch/include/ATen/native/cpu/moments_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4918450Z copying torch/include/ATen/native/cpu/ChannelShuffleKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4919720Z copying torch/include/ATen/native/cpu/SpmmReduceKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4920880Z copying torch/include/ATen/native/cpu/GridSamplerKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4922120Z copying torch/include/ATen/native/cpu/SerialStackImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4923370Z copying torch/include/ATen/native/cpu/Intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4924680Z copying torch/include/ATen/native/cpu/LogAddExp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4925940Z copying torch/include/ATen/native/cpu/WeightNormKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4927180Z copying torch/include/ATen/native/cpu/MaxUnpoolKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4928460Z copying torch/include/ATen/native/cpu/SoftmaxKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4929710Z copying torch/include/ATen/native/cpu/AtomicAddFloat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4930940Z copying torch/include/ATen/native/cpu/Elu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4932180Z copying torch/include/ATen/native/cpu/Reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4933450Z copying torch/include/ATen/native/cpu/CatKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4934680Z copying torch/include/ATen/native/cpu/StackKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4935930Z copying torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4939090Z copying torch/include/ATen/native/cpu/DepthwiseConvKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4939520Z copying torch/include/ATen/native/cpu/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4941070Z copying torch/include/ATen/native/cpu/PixelShuffleKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4942790Z copying torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4943970Z copying torch/include/ATen/native/cpu/IndexKernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4945290Z copying torch/include/ATen/native/cpu/avx_mathfun.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4946770Z copying torch/include/ATen/native/cpu/CopyKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4948010Z copying torch/include/ATen/native/cpu/Loops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-09-07T06:13:48.4949400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4950100Z copying torch/include/ATen/native/cuda/CompositeRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4951350Z copying torch/include/ATen/native/cuda/MiscUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4952860Z copying torch/include/ATen/native/cuda/GridSampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4953890Z copying torch/include/ATen/native/cuda/CuFFTPlanCache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4955230Z copying torch/include/ATen/native/cuda/RowwiseScaledMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4956470Z copying torch/include/ATen/native/cuda/ScanKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4957770Z copying torch/include/ATen/native/cuda/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4959000Z copying torch/include/ATen/native/cuda/ScaledGroupMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4960350Z copying torch/include/ATen/native/cuda/Distributions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4961510Z copying torch/include/ATen/native/cuda/BinaryInternal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4962820Z copying torch/include/ATen/native/cuda/GroupMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4964130Z copying torch/include/ATen/native/cuda/CuFFTUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4965750Z copying torch/include/ATen/native/cuda/ReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4966690Z copying torch/include/ATen/native/cuda/TensorTopK.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4967980Z copying torch/include/ATen/native/cuda/TensorModeKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4969590Z copying torch/include/ATen/native/cuda/thread_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4970490Z copying torch/include/ATen/native/cuda/Resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4971710Z copying torch/include/ATen/native/cuda/Sorting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4972990Z copying torch/include/ATen/native/cuda/Activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4974290Z copying torch/include/ATen/native/cuda/Sort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4975600Z copying torch/include/ATen/native/cuda/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4977000Z copying torch/include/ATen/native/cuda/IndexKernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4978220Z copying torch/include/ATen/native/cuda/jit_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4979590Z copying torch/include/ATen/native/cuda/SortStable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4981320Z copying torch/include/ATen/native/cuda/LaunchUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4983400Z copying torch/include/ATen/native/cuda/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:48.4985130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-09-07T06:13:48.4985540Z copying torch/include/ATen/native/quantized/ConvUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-09-07T06:13:48.4986890Z copying torch/include/ATen/native/quantized/AffineQuantizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-09-07T06:13:48.4988640Z copying torch/include/ATen/native/quantized/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-09-07T06:13:48.4989770Z copying torch/include/ATen/native/quantized/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-09-07T06:13:48.4991010Z copying torch/include/ATen/native/quantized/AffineQuantizerBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-09-07T06:13:48.4992240Z copying torch/include/ATen/native/quantized/FakeQuantAffine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-09-07T06:13:48.4993510Z copying torch/include/ATen/native/quantized/PackedParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-09-07T06:13:48.4994770Z copying torch/include/ATen/native/quantized/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-09-07T06:13:48.4996000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.4996620Z copying torch/include/ATen/native/quantized/cpu/XnnpackUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.4997950Z copying torch/include/ATen/native/quantized/cpu/fbgemm_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.4999150Z copying torch/include/ATen/native/quantized/cpu/init_qnnpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.5000540Z copying torch/include/ATen/native/quantized/cpu/ACLUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.5001770Z copying torch/include/ATen/native/quantized/cpu/conv_serialization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.5002990Z copying torch/include/ATen/native/quantized/cpu/qlinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.5004360Z copying torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.5005680Z copying torch/include/ATen/native/quantized/cpu/qembeddingbag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.5006960Z copying torch/include/ATen/native/quantized/cpu/QnnpackUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.5008300Z copying torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.5009550Z copying torch/include/ATen/native/quantized/cpu/OnednnUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.5010800Z copying torch/include/ATen/native/quantized/cpu/QuantUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.5012060Z copying torch/include/ATen/native/quantized/cpu/RuyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.5013310Z copying torch/include/ATen/native/quantized/cpu/qconv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.5014540Z copying torch/include/ATen/native/quantized/cpu/BinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.5015870Z copying torch/include/ATen/native/quantized/cpu/QuantizedOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:48.5017140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cudnn 2025-09-07T06:13:48.5017740Z copying torch/include/ATen/native/quantized/cudnn/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cudnn 2025-09-07T06:13:48.5018940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-09-07T06:13:48.5019530Z copying torch/include/ATen/native/utils/ParamUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-09-07T06:13:48.5020790Z copying torch/include/ATen/native/utils/ParamsHash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-09-07T06:13:48.5022040Z copying torch/include/ATen/native/utils/Factory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-09-07T06:13:48.5023230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-09-07T06:13:48.5024010Z copying torch/include/ATen/native/transformers/sdp_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-09-07T06:13:48.5025220Z copying torch/include/ATen/native/transformers/attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-09-07T06:13:48.5026490Z copying torch/include/ATen/native/transformers/sdp_utils_cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-09-07T06:13:48.5027950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda 2025-09-07T06:13:48.5028450Z copying torch/include/ATen/native/transformers/cuda/sdp_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda 2025-09-07T06:13:48.5029900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-09-07T06:13:48.5030740Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-09-07T06:13:48.5031810Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-09-07T06:13:48.5033110Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-09-07T06:13:48.5034830Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-09-07T06:13:48.5036120Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-09-07T06:13:48.5037800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-09-07T06:13:48.5038540Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-09-07T06:13:48.5040360Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-09-07T06:13:48.5041680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:48.5042380Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:48.5043700Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:48.5044940Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:48.5046410Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:48.5048050Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:48.5049310Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:48.5050650Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:48.5051760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-09-07T06:13:48.5052590Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-09-07T06:13:48.5053960Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-09-07T06:13:48.5055230Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-09-07T06:13:48.5056560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-09-07T06:13:48.5057450Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-09-07T06:13:48.5058560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:48.5059280Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:48.5060740Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:48.5062400Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:48.5063840Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:48.5065150Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:48.5066400Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:48.5067820Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:48.5069260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn 2025-09-07T06:13:48.5069900Z copying torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn 2025-09-07T06:13:48.5071240Z copying torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn 2025-09-07T06:13:48.5072440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip 2025-09-07T06:13:48.5073220Z copying torch/include/ATen/native/transformers/hip/aotriton_versions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip 2025-09-07T06:13:48.5074420Z copying torch/include/ATen/native/transformers/hip/gemm_kernel_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip 2025-09-07T06:13:48.5075700Z copying torch/include/ATen/native/transformers/hip/aotriton_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip 2025-09-07T06:13:48.5076880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn 2025-09-07T06:13:48.5077550Z copying torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn 2025-09-07T06:13:48.5079090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-09-07T06:13:48.5080100Z copying torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-09-07T06:13:48.5080810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-09-07T06:13:48.5081430Z copying torch/include/ATen/native/hip/ck_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-09-07T06:13:48.5082790Z copying torch/include/ATen/native/hip/ck_bgemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-09-07T06:13:48.5084500Z copying torch/include/ATen/native/hip/ck_gemm_template.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-09-07T06:13:48.5085800Z copying torch/include/ATen/native/hip/ck_gemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-09-07T06:13:48.5087270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels 2025-09-07T06:13:48.5087960Z copying torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels 2025-09-07T06:13:48.5089560Z copying torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels 2025-09-07T06:13:48.5090600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mtia 2025-09-07T06:13:48.5091290Z copying torch/include/ATen/native/mtia/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mtia 2025-09-07T06:13:48.5092750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-09-07T06:13:48.5093210Z copying torch/include/ATen/native/kleidiai/kai_pack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-09-07T06:13:48.5094650Z copying torch/include/ATen/native/kleidiai/kai_ukernel_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-09-07T06:13:48.5095790Z copying torch/include/ATen/native/kleidiai/kai_kernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-09-07T06:13:48.5097410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-09-07T06:13:48.5097860Z copying torch/include/ATen/native/nested/NestedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-09-07T06:13:48.5099150Z copying torch/include/ATen/native/nested/NestedTensorTransformerUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-09-07T06:13:48.5100410Z copying torch/include/ATen/native/nested/NestedTensorMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-09-07T06:13:48.5101770Z copying torch/include/ATen/native/nested/NestedTensorBinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-09-07T06:13:48.5103100Z copying torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-09-07T06:13:48.5104330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn 2025-09-07T06:13:48.5104900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-09-07T06:13:48.5105470Z copying torch/include/ATen/native/mkldnn/xpu/FusionUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-09-07T06:13:48.5106810Z copying torch/include/ATen/native/mkldnn/xpu/qlinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-09-07T06:13:48.5108050Z copying torch/include/ATen/native/mkldnn/xpu/qconv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-09-07T06:13:48.5109360Z copying torch/include/ATen/native/mkldnn/xpu/Conv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-09-07T06:13:48.5110610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-09-07T06:13:48.5111230Z copying torch/include/ATen/native/mkldnn/xpu/detail/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-09-07T06:13:48.5112440Z copying torch/include/ATen/native/mkldnn/xpu/detail/Attr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-09-07T06:13:48.5114010Z copying torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-09-07T06:13:48.5115360Z copying torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-09-07T06:13:48.5116680Z copying torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-09-07T06:13:48.5117900Z copying torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-09-07T06:13:48.5119170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/metal 2025-09-07T06:13:48.5119740Z copying torch/include/ATen/metal/Context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/metal 2025-09-07T06:13:48.5121100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-09-07T06:13:48.5122390Z copying torch/include/ATen/cpu/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-09-07T06:13:48.5123160Z copying torch/include/ATen/cpu/FlushDenormal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-09-07T06:13:48.5124410Z copying torch/include/ATen/cpu/vml.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-09-07T06:13:48.5125810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-09-07T06:13:48.5126320Z copying torch/include/ATen/cpu/vec/vec_quant.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-09-07T06:13:48.5127560Z copying torch/include/ATen/cpu/vec/vec_half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-09-07T06:13:48.5128810Z copying torch/include/ATen/cpu/vec/vec_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-09-07T06:13:48.5129990Z copying torch/include/ATen/cpu/vec/vec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-09-07T06:13:48.5131220Z copying torch/include/ATen/cpu/vec/vec_convert.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-09-07T06:13:48.5132780Z copying torch/include/ATen/cpu/vec/intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-09-07T06:13:48.5133880Z copying torch/include/ATen/cpu/vec/functional_bfloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-09-07T06:13:48.5135200Z copying torch/include/ATen/cpu/vec/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-09-07T06:13:48.5136380Z copying torch/include/ATen/cpu/vec/vec_n.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-09-07T06:13:48.5137690Z copying torch/include/ATen/cpu/vec/functional_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-09-07T06:13:48.5138880Z copying torch/include/ATen/cpu/vec/vec_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-09-07T06:13:48.5140840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-09-07T06:13:48.5141160Z copying torch/include/ATen/cpu/vec/vec128/vec128_convert.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-09-07T06:13:48.5142460Z copying torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-09-07T06:13:48.5143650Z copying torch/include/ATen/cpu/vec/vec128/vec128.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-09-07T06:13:48.5144960Z copying torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-09-07T06:13:48.5146400Z copying torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-09-07T06:13:48.5148290Z copying torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-09-07T06:13:48.5149970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:48.5150500Z copying torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:48.5151710Z copying torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:48.5153730Z copying torch/include/ATen/cpu/vec/vec256/vec256_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:48.5155170Z copying torch/include/ATen/cpu/vec/vec256/vec256_half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:48.5156440Z copying torch/include/ATen/cpu/vec/vec256/vec256_qint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:48.5157980Z copying torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:48.5159350Z copying torch/include/ATen/cpu/vec/vec256/vec256_double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:48.5160720Z copying torch/include/ATen/cpu/vec/vec256/vec256_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:48.5162160Z copying torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:48.5163400Z copying torch/include/ATen/cpu/vec/vec256/vec256.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:48.5164680Z copying torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:48.5166050Z copying torch/include/ATen/cpu/vec/vec256/vec256_convert.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:48.5167310Z copying torch/include/ATen/cpu/vec/vec256/vec256_int.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:48.5169060Z copying torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:48.5170430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/zarch 2025-09-07T06:13:48.5171080Z copying torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/zarch 2025-09-07T06:13:48.5173170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:48.5173570Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:48.5174740Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:48.5176030Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:48.5177350Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:48.5178540Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:48.5179940Z copying torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:48.5181320Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:48.5182730Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:48.5184060Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:48.5185470Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:48.5186770Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:48.5188280Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:48.5189620Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:48.5190840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:48.5191450Z copying torch/include/ATen/cpu/vec/vec512/vec512_int.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:48.5193120Z copying torch/include/ATen/cpu/vec/vec512/vec512_convert.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:48.5194270Z copying torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:48.5195970Z copying torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:48.5197310Z copying torch/include/ATen/cpu/vec/vec512/vec512_float8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:48.5198660Z copying torch/include/ATen/cpu/vec/vec512/vec512_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:48.5199890Z copying torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:48.5201430Z copying torch/include/ATen/cpu/vec/vec512/vec512_double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:48.5202690Z copying torch/include/ATen/cpu/vec/vec512/vec512_qint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:48.5204210Z copying torch/include/ATen/cpu/vec/vec512/vec512_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:48.5205570Z copying torch/include/ATen/cpu/vec/vec512/vec512.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:48.5206870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:48.5207420Z copying torch/include/ATen/cpu/vec/sve/vec_bfloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:48.5209000Z copying torch/include/ATen/cpu/vec/sve/vec_qint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:48.5210350Z copying torch/include/ATen/cpu/vec/sve/vec_double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:48.5213040Z copying torch/include/ATen/cpu/vec/sve/vec_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:48.5213350Z copying torch/include/ATen/cpu/vec/sve/vec_common_sve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:48.5214450Z copying torch/include/ATen/cpu/vec/sve/sve_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:48.5215710Z copying torch/include/ATen/cpu/vec/sve/vec_int.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:48.5217170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5217740Z copying torch/include/ATen/cuda/CUDADevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5219390Z copying torch/include/ATen/cuda/CUDAUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5220410Z copying torch/include/ATen/cuda/CUDABlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5221730Z copying torch/include/ATen/cuda/CUDAGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5222910Z copying torch/include/ATen/cuda/Sleep.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5224210Z copying torch/include/ATen/cuda/PinnedMemoryAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5225440Z copying torch/include/ATen/cuda/jiterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5226930Z copying torch/include/ATen/cuda/CUDASparseDescriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5228090Z copying torch/include/ATen/cuda/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5229410Z copying torch/include/ATen/cuda/PeerToPeerAccess.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5230640Z copying torch/include/ATen/cuda/CUDAEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5231970Z copying torch/include/ATen/cuda/CUDAContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5233230Z copying torch/include/ATen/cuda/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5234560Z copying torch/include/ATen/cuda/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5235770Z copying torch/include/ATen/cuda/CUDADataType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5237220Z copying torch/include/ATen/cuda/cub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5238460Z copying torch/include/ATen/cuda/CUDAContextLight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5239680Z copying torch/include/ATen/cuda/CUDAGraph.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5241050Z copying torch/include/ATen/cuda/ThrustAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5242290Z copying torch/include/ATen/cuda/llvm_jit_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5243520Z copying torch/include/ATen/cuda/CUDASparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5244820Z copying torch/include/ATen/cuda/PhiloxCudaState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5246160Z copying torch/include/ATen/cuda/jiterator_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5247460Z copying torch/include/ATen/cuda/ATenCUDAGeneral.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5248750Z copying torch/include/ATen/cuda/CUDASparseBlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:48.5249990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-09-07T06:13:48.5250600Z copying torch/include/ATen/cuda/detail/CUDAHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-09-07T06:13:48.5251920Z copying torch/include/ATen/cuda/detail/KernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-09-07T06:13:48.5253290Z copying torch/include/ATen/cuda/detail/LazyNVRTC.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-09-07T06:13:48.5254470Z copying torch/include/ATen/cuda/detail/DeviceThreadHandles.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-09-07T06:13:48.5255640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-09-07T06:13:48.5256270Z copying torch/include/ATen/cuda/tunable/TunableOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-09-07T06:13:48.5257540Z copying torch/include/ATen/cuda/tunable/StreamTimer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-09-07T06:13:48.5258840Z copying torch/include/ATen/cuda/tunable/TunableGemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-09-07T06:13:48.5260050Z copying torch/include/ATen/cuda/tunable/GemmCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-09-07T06:13:48.5261480Z copying torch/include/ATen/cuda/tunable/GemmHipblaslt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-09-07T06:13:48.5262830Z copying torch/include/ATen/cuda/tunable/GemmRocblas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-09-07T06:13:48.5264130Z copying torch/include/ATen/cuda/tunable/Tunable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-09-07T06:13:48.5265400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-09-07T06:13:48.5266010Z copying torch/include/ATen/quantized/QTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-09-07T06:13:48.5267300Z copying torch/include/ATen/quantized/Quantizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-09-07T06:13:48.5268530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-09-07T06:13:48.5269350Z copying torch/include/ATen/xpu/XPUEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-09-07T06:13:48.5270450Z copying torch/include/ATen/xpu/XPUDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-09-07T06:13:48.5271670Z copying torch/include/ATen/xpu/PinnedMemoryAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-09-07T06:13:48.5273050Z copying torch/include/ATen/xpu/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-09-07T06:13:48.5274280Z copying torch/include/ATen/xpu/XPUGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-09-07T06:13:48.5275530Z copying torch/include/ATen/xpu/XPUContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-09-07T06:13:48.5276890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/detail 2025-09-07T06:13:48.5277430Z copying torch/include/ATen/xpu/detail/XPUHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/detail 2025-09-07T06:13:48.5279010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-09-07T06:13:48.5279460Z copying torch/include/ATen/miopen/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-09-07T06:13:48.5280720Z copying torch/include/ATen/miopen/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-09-07T06:13:48.5282050Z copying torch/include/ATen/miopen/Descriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-09-07T06:13:48.5283360Z copying torch/include/ATen/miopen/miopen-wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-09-07T06:13:48.5284620Z copying torch/include/ATen/miopen/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-09-07T06:13:48.5285870Z copying torch/include/ATen/miopen/Handle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-09-07T06:13:48.5287180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-09-07T06:13:48.5287820Z copying torch/include/ATen/detail/PrivateUse1HooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-09-07T06:13:48.5289210Z copying torch/include/ATen/detail/AcceleratorHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-09-07T06:13:48.5290440Z copying torch/include/ATen/detail/CUDAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-09-07T06:13:48.5291740Z copying torch/include/ATen/detail/MAIAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-09-07T06:13:48.5292960Z copying torch/include/ATen/detail/XPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-09-07T06:13:48.5294340Z copying torch/include/ATen/detail/FunctionTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-09-07T06:13:48.5295640Z copying torch/include/ATen/detail/HIPHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-09-07T06:13:48.5296890Z copying torch/include/ATen/detail/MPSHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-09-07T06:13:48.5298240Z copying torch/include/ATen/detail/MTIAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-09-07T06:13:48.5299590Z copying torch/include/ATen/detail/HPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-09-07T06:13:48.5300840Z copying torch/include/ATen/detail/IPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-09-07T06:13:48.5302160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip 2025-09-07T06:13:48.5302860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-09-07T06:13:48.5303360Z copying torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-09-07T06:13:48.5304780Z copying torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-09-07T06:13:48.5305980Z copying torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-09-07T06:13:48.5307210Z copying torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-09-07T06:13:48.5308390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5309130Z copying torch/include/ATen/ops/is_vulkan_available.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5310380Z copying torch/include/ATen/ops/_foreach_atan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5311880Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5313090Z copying torch/include/ATen/ops/sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5314650Z copying torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5316390Z copying torch/include/ATen/ops/mode_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5317930Z copying torch/include/ATen/ops/index_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5319630Z copying torch/include/ATen/ops/new_ones.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5321020Z copying torch/include/ATen/ops/pixel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5322290Z copying torch/include/ATen/ops/clamp_min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5323730Z copying torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5325190Z copying torch/include/ATen/ops/acosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5326830Z copying torch/include/ATen/ops/frexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5327920Z copying torch/include/ATen/ops/erf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5329170Z copying torch/include/ATen/ops/repeat_interleave_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5330470Z copying torch/include/ATen/ops/special_i0e_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5331800Z copying torch/include/ATen/ops/pixel_unshuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5333180Z copying torch/include/ATen/ops/upsample_trilinear3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5334540Z copying torch/include/ATen/ops/cummin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5335930Z copying torch/include/ATen/ops/choose_qparams_optimized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5337240Z copying torch/include/ATen/ops/nonzero_static_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5338460Z copying torch/include/ATen/ops/where_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5340300Z copying torch/include/ATen/ops/slice_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5341120Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5342450Z copying torch/include/ATen/ops/isfinite_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5343650Z copying torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5344860Z copying torch/include/ATen/ops/leaky_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5346220Z copying torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5347470Z copying torch/include/ATen/ops/erfinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5348850Z copying torch/include/ATen/ops/linalg_vecdot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5350210Z copying torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5351500Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5358340Z copying torch/include/ATen/ops/bitwise_and_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5359200Z copying torch/include/ATen/ops/empty_strided_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5359890Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5360590Z copying torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5361190Z copying torch/include/ATen/ops/result_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5361860Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5362450Z copying torch/include/ATen/ops/min_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5363050Z copying torch/include/ATen/ops/isposinf_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5363910Z copying torch/include/ATen/ops/cumulative_trapezoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5365270Z copying torch/include/ATen/ops/nll_loss2d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5366480Z copying torch/include/ATen/ops/soft_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5367770Z copying torch/include/ATen/ops/hardswish_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5369160Z copying torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5370390Z copying torch/include/ATen/ops/pow_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5371980Z copying torch/include/ATen/ops/atan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5373640Z copying torch/include/ATen/ops/binomial_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5374840Z copying torch/include/ATen/ops/to_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5376150Z copying torch/include/ATen/ops/cosine_embedding_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5377430Z copying torch/include/ATen/ops/_test_ambiguous_defaults_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5378660Z copying torch/include/ATen/ops/gelu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5380050Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5381250Z copying torch/include/ATen/ops/max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5382660Z copying torch/include/ATen/ops/threshold_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5383790Z copying torch/include/ATen/ops/signbit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5385120Z copying torch/include/ATen/ops/_propagate_xla_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5386390Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5387810Z copying torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5389040Z copying torch/include/ATen/ops/multilabel_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5390480Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5391650Z copying torch/include/ATen/ops/cumprod_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5392910Z copying torch/include/ATen/ops/_remove_batch_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5394210Z copying torch/include/ATen/ops/constant_pad_nd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5395680Z copying torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5396920Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5398260Z copying torch/include/ATen/ops/_lstm_mps_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5399540Z copying torch/include/ATen/ops/_values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5400860Z copying torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5402110Z copying torch/include/ATen/ops/nan_to_num_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5403490Z copying torch/include/ATen/ops/_histogramdd_bin_edges_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5404730Z copying torch/include/ATen/ops/_int_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5406030Z copying torch/include/ATen/ops/i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5407310Z copying torch/include/ATen/ops/inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5408760Z copying torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5410250Z copying torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5411760Z copying torch/include/ATen/ops/index_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5413100Z copying torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5414300Z copying torch/include/ATen/ops/_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5415580Z copying torch/include/ATen/ops/quantized_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5416890Z copying torch/include/ATen/ops/_fused_rms_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5418300Z copying torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5419490Z copying torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5420740Z copying torch/include/ATen/ops/floor_divide_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5422030Z copying torch/include/ATen/ops/_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5423370Z copying torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5424650Z copying torch/include/ATen/ops/special_modified_bessel_k1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5425950Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5427220Z copying torch/include/ATen/ops/huber_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5428620Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5429850Z copying torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5431230Z copying torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5432560Z copying torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5433770Z copying torch/include/ATen/ops/fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5435050Z copying torch/include/ATen/ops/special_hermite_polynomial_he_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5436300Z copying torch/include/ATen/ops/dist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5437690Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5439090Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5440260Z copying torch/include/ATen/ops/index_copy_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5441580Z copying torch/include/ATen/ops/quantized_lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5442840Z copying torch/include/ATen/ops/_foreach_log10_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5444320Z copying torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5445470Z copying torch/include/ATen/ops/sub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5446810Z copying torch/include/ATen/ops/mkldnn_linear_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5448080Z copying torch/include/ATen/ops/trace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5449380Z copying torch/include/ATen/ops/adaptive_avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5450720Z copying torch/include/ATen/ops/_efficientzerotensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5452040Z copying torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5453280Z copying torch/include/ATen/ops/_efficient_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5455050Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5456350Z copying torch/include/ATen/ops/sinc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5457720Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5459340Z copying torch/include/ATen/ops/special_bessel_y1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5460910Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5461890Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5463130Z copying torch/include/ATen/ops/polygamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5464480Z copying torch/include/ATen/ops/logical_xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5465800Z copying torch/include/ATen/ops/nextafter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5467190Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5468410Z copying torch/include/ATen/ops/log_sigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5469680Z copying torch/include/ATen/ops/special_bessel_y0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5470920Z copying torch/include/ATen/ops/_cast_Long_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5472260Z copying torch/include/ATen/ops/_foreach_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5473460Z copying torch/include/ATen/ops/pdist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5474760Z copying torch/include/ATen/ops/_sobol_engine_ff_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5476060Z copying torch/include/ATen/ops/_wrapped_linear_prepack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5477290Z copying torch/include/ATen/ops/softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5478590Z copying torch/include/ATen/ops/arctan2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5479870Z copying torch/include/ATen/ops/quantized_gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5481160Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5482470Z copying torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5483820Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5485120Z copying torch/include/ATen/ops/absolute_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5487050Z copying torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5488350Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5489950Z copying torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5491170Z copying torch/include/ATen/ops/logaddexp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5493330Z copying torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5494850Z copying torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5496130Z copying torch/include/ATen/ops/max_pool3d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5497470Z copying torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5498760Z copying torch/include/ATen/ops/special_zeta_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5500050Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5501400Z copying torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5502600Z copying torch/include/ATen/ops/addmv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5503960Z copying torch/include/ATen/ops/bilinear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5505290Z copying torch/include/ATen/ops/topk_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5506620Z copying torch/include/ATen/ops/adaptive_avg_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5507840Z copying torch/include/ATen/ops/linalg_eig_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5509110Z copying torch/include/ATen/ops/matrix_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5510530Z copying torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5511770Z copying torch/include/ATen/ops/mkldnn_rnn_layer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5513050Z copying torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5514360Z copying torch/include/ATen/ops/softshrink_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5515590Z copying torch/include/ATen/ops/concatenate_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5516840Z copying torch/include/ATen/ops/view_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5518150Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5520330Z copying torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5521110Z copying torch/include/ATen/ops/linalg_ldl_factor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5522280Z copying torch/include/ATen/ops/glu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5523550Z copying torch/include/ATen/ops/is_inference_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5524960Z copying torch/include/ATen/ops/special_i1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5526290Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5527490Z copying torch/include/ATen/ops/hstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5528830Z copying torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5530070Z copying torch/include/ATen/ops/_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5531380Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5532660Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5533950Z copying torch/include/ATen/ops/miopen_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5535230Z copying torch/include/ATen/ops/is_nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5536460Z copying torch/include/ATen/ops/slice_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5537660Z copying torch/include/ATen/ops/dot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5538940Z copying torch/include/ATen/ops/positive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5540270Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5541630Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5542840Z copying torch/include/ATen/ops/_cast_Float_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5544430Z copying torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5545550Z copying torch/include/ATen/ops/igammac_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5546750Z copying torch/include/ATen/ops/lu_unpack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5548030Z copying torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5549530Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5550740Z copying torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5551950Z copying torch/include/ATen/ops/narrow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5553250Z copying torch/include/ATen/ops/atan2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5554640Z copying torch/include/ATen/ops/rnn_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5555850Z copying torch/include/ATen/ops/lu_unpack_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5557130Z copying torch/include/ATen/ops/_mixed_dtypes_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5558380Z copying torch/include/ATen/ops/_nested_get_max_seqlen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5559600Z copying torch/include/ATen/ops/_linalg_slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5560870Z copying torch/include/ATen/ops/size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5562330Z copying torch/include/ATen/ops/scatter_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5564000Z copying torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5565040Z copying torch/include/ATen/ops/bernoulli_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5566360Z copying torch/include/ATen/ops/glu_jvp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5567620Z copying torch/include/ATen/ops/special_i1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5568820Z copying torch/include/ATen/ops/matrix_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5570080Z copying torch/include/ATen/ops/miopen_rnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5571290Z copying torch/include/ATen/ops/_linalg_slogdet_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5572570Z copying torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5573730Z copying torch/include/ATen/ops/log_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5575080Z copying torch/include/ATen/ops/hann_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5576310Z copying torch/include/ATen/ops/rrelu_with_noise.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5577600Z copying torch/include/ATen/ops/miopen_convolution_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5578750Z copying torch/include/ATen/ops/atan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5580060Z copying torch/include/ATen/ops/coalesce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5581350Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5582630Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5584030Z copying torch/include/ATen/ops/where_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5585210Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5586540Z copying torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5587830Z copying torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5589110Z copying torch/include/ATen/ops/unfold_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5590580Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5591790Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5593110Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5594420Z copying torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5595720Z copying torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5596930Z copying torch/include/ATen/ops/linalg_lu_factor_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5598140Z copying torch/include/ATen/ops/_linalg_svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5599470Z copying torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5600810Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5602010Z copying torch/include/ATen/ops/arctan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5603350Z copying torch/include/ATen/ops/_efficient_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5604670Z copying torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5605870Z copying torch/include/ATen/ops/view_as_real_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5607130Z copying torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5608380Z copying torch/include/ATen/ops/neg_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5609630Z copying torch/include/ATen/ops/nan_to_num_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5610850Z copying torch/include/ATen/ops/argmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5612150Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5613490Z copying torch/include/ATen/ops/special_spherical_bessel_j0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5614710Z copying torch/include/ATen/ops/erfinv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5615960Z copying torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5617260Z copying torch/include/ATen/ops/chain_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5618640Z copying torch/include/ATen/ops/sign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5619820Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5621060Z copying torch/include/ATen/ops/affine_grid_generator_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5622400Z copying torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5623660Z copying torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5624850Z copying torch/include/ATen/ops/vdot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5626110Z copying torch/include/ATen/ops/sparse_resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5627300Z copying torch/include/ATen/ops/_foreach_abs_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5629430Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5630880Z copying torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5632090Z copying torch/include/ATen/ops/abs_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5633640Z copying torch/include/ATen/ops/col_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5635450Z copying torch/include/ATen/ops/logical_xor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5636790Z copying torch/include/ATen/ops/native_group_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5638020Z copying torch/include/ATen/ops/_fft_c2c_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5639480Z copying torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5641340Z copying torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5642160Z copying torch/include/ATen/ops/cat_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5643500Z copying torch/include/ATen/ops/conj_physical_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5644670Z copying torch/include/ATen/ops/argmin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5646090Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5647540Z copying torch/include/ATen/ops/adaptive_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5649020Z copying torch/include/ATen/ops/logspace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5650390Z copying torch/include/ATen/ops/avg_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5651590Z copying torch/include/ATen/ops/is_same_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5653040Z copying torch/include/ATen/ops/igammac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5654560Z copying torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5655710Z copying torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5656830Z copying torch/include/ATen/ops/_cast_Double_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5658090Z copying torch/include/ATen/ops/prod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5659380Z copying torch/include/ATen/ops/ceil_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5660690Z copying torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5661940Z copying torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5663310Z copying torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5664610Z copying torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5665970Z copying torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5667100Z copying torch/include/ATen/ops/and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5668440Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5669790Z copying torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5671200Z copying torch/include/ATen/ops/batch_norm_backward_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5672470Z copying torch/include/ATen/ops/as_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5673680Z copying torch/include/ATen/ops/linalg_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5675060Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5676190Z copying torch/include/ATen/ops/sqrt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5677510Z copying torch/include/ATen/ops/nan_to_num_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5678710Z copying torch/include/ATen/ops/vstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5679970Z copying torch/include/ATen/ops/fft_rfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5681330Z copying torch/include/ATen/ops/normal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5682520Z copying torch/include/ATen/ops/_sparse_csr_sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5683790Z copying torch/include/ATen/ops/linalg_inv_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5685090Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5686420Z copying torch/include/ATen/ops/leaky_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5687670Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5688870Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5690110Z copying torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5691500Z copying torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5692750Z copying torch/include/ATen/ops/linalg_lu_factor_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5693930Z copying torch/include/ATen/ops/_fused_sgd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5695300Z copying torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5696460Z copying torch/include/ATen/ops/_linalg_eigh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5697850Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5699070Z copying torch/include/ATen/ops/dequantize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5700350Z copying torch/include/ATen/ops/_fft_c2c_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5701550Z copying torch/include/ATen/ops/align_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5702890Z copying torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5704110Z copying torch/include/ATen/ops/replication_pad3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5705420Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5706610Z copying torch/include/ATen/ops/acosh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5708250Z copying torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5709400Z copying torch/include/ATen/ops/_assert_scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5710640Z copying torch/include/ATen/ops/index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5711910Z copying torch/include/ATen/ops/min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5713280Z copying torch/include/ATen/ops/glu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5714730Z copying torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5716010Z copying torch/include/ATen/ops/index_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5717420Z copying torch/include/ATen/ops/_mkldnn_reshape_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5718830Z copying torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5720140Z copying torch/include/ATen/ops/std_mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5721400Z copying torch/include/ATen/ops/softshrink_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5722710Z copying torch/include/ATen/ops/index_fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5724110Z copying torch/include/ATen/ops/repeat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5730990Z copying torch/include/ATen/ops/_foreach_floor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5731600Z copying torch/include/ATen/ops/_nested_tensor_from_mask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5732300Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5733000Z copying torch/include/ATen/ops/embedding_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5733590Z copying torch/include/ATen/ops/dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5734120Z copying torch/include/ATen/ops/matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5734650Z copying torch/include/ATen/ops/floor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5735240Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5735840Z copying torch/include/ATen/ops/_unsafe_view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5737050Z copying torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5738340Z copying torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5739790Z copying torch/include/ATen/ops/_test_check_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5741170Z copying torch/include/ATen/ops/rot90_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5742410Z copying torch/include/ATen/ops/signbit_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5743760Z copying torch/include/ATen/ops/reciprocal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5745030Z copying torch/include/ATen/ops/clamp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5746290Z copying torch/include/ATen/ops/selu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5747650Z copying torch/include/ATen/ops/reflection_pad1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5749130Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5750640Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5751910Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5753140Z copying torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5754610Z copying torch/include/ATen/ops/special_spherical_bessel_j0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5755810Z copying torch/include/ATen/ops/minimum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5757160Z copying torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5758420Z copying torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5759880Z copying torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5761090Z copying torch/include/ATen/ops/values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5762280Z copying torch/include/ATen/ops/col2im_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5763530Z copying torch/include/ATen/ops/ge_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5765010Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5766250Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5767870Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5768930Z copying torch/include/ATen/ops/cosh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5770270Z copying torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5771600Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5773040Z copying torch/include/ATen/ops/hardtanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5774360Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5775700Z copying torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5776940Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5778420Z copying torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5779730Z copying torch/include/ATen/ops/atan2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5781080Z copying torch/include/ATen/ops/sub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5782410Z copying torch/include/ATen/ops/view_as_real_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5783690Z copying torch/include/ATen/ops/sign_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5785020Z copying torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5786350Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5787570Z copying torch/include/ATen/ops/glu_jvp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5789180Z copying torch/include/ATen/ops/_sobol_engine_scramble.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5790330Z copying torch/include/ATen/ops/mish_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5791740Z copying torch/include/ATen/ops/fft_rfftfreq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5793100Z copying torch/include/ATen/ops/elu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5794330Z copying torch/include/ATen/ops/nanmean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5795670Z copying torch/include/ATen/ops/miopen_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5796890Z copying torch/include/ATen/ops/linalg_cross_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5798290Z copying torch/include/ATen/ops/_fused_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5799680Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5801230Z copying torch/include/ATen/ops/addbmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5802460Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5803770Z copying torch/include/ATen/ops/gt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5805180Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5806360Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5807630Z copying torch/include/ATen/ops/miopen_rnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5808940Z copying torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5810100Z copying torch/include/ATen/ops/detach_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5811460Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5812770Z copying torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5814050Z copying torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5815330Z copying torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5816580Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5817930Z copying torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5819220Z copying torch/include/ATen/ops/conv_depthwise3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5820460Z copying torch/include/ATen/ops/norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5821740Z copying torch/include/ATen/ops/masked_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5823140Z copying torch/include/ATen/ops/exponential_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5824310Z copying torch/include/ATen/ops/special_i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5825630Z copying torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5826780Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5828060Z copying torch/include/ATen/ops/_autocast_to_full_precision_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5829410Z copying torch/include/ATen/ops/erfinv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5830590Z copying torch/include/ATen/ops/lcm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5831940Z copying torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5833190Z copying torch/include/ATen/ops/upsample_nearest2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5834580Z copying torch/include/ATen/ops/cross_entropy_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5835920Z copying torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5837260Z copying torch/include/ATen/ops/unsqueeze_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5838550Z copying torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5839850Z copying torch/include/ATen/ops/rsub_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5841160Z copying torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5842640Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5843840Z copying torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5845080Z copying torch/include/ATen/ops/linalg_cross_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5846460Z copying torch/include/ATen/ops/gelu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5847810Z copying torch/include/ATen/ops/_weight_int8pack_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5849110Z copying torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5850620Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5851830Z copying torch/include/ATen/ops/permute.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5853160Z copying torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5854530Z copying torch/include/ATen/ops/_upsample_nearest_exact1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5855900Z copying torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5857240Z copying torch/include/ATen/ops/_sparse_semi_structured_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5858420Z copying torch/include/ATen/ops/native_group_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5859690Z copying torch/include/ATen/ops/split_with_sizes_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5861010Z copying torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5862260Z copying torch/include/ATen/ops/_functional_assert_scalar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5863530Z copying torch/include/ATen/ops/mse_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5864810Z copying torch/include/ATen/ops/ceil_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5866170Z copying torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5867480Z copying torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5868600Z copying torch/include/ATen/ops/roll.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5870020Z copying torch/include/ATen/ops/linalg_svdvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5871240Z copying torch/include/ATen/ops/orgqr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5872530Z copying torch/include/ATen/ops/sigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5873810Z copying torch/include/ATen/ops/conv_transpose2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5875170Z copying torch/include/ATen/ops/layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5876630Z copying torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5877830Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5879120Z copying torch/include/ATen/ops/std_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5880530Z copying torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5881820Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5883010Z copying torch/include/ATen/ops/take.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5884280Z copying torch/include/ATen/ops/igammac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5885550Z copying torch/include/ATen/ops/isin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5886910Z copying torch/include/ATen/ops/record_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5888160Z copying torch/include/ATen/ops/resize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5889570Z copying torch/include/ATen/ops/bitwise_and_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5890930Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5892210Z copying torch/include/ATen/ops/native_group_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5893440Z copying torch/include/ATen/ops/view_as_complex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5894790Z copying torch/include/ATen/ops/fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5896100Z copying torch/include/ATen/ops/linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5897580Z copying torch/include/ATen/ops/isinf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5898760Z copying torch/include/ATen/ops/expand_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5900190Z copying torch/include/ATen/ops/_batch_norm_with_update_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5901420Z copying torch/include/ATen/ops/_nested_get_min_seqlen_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5902920Z copying torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5904160Z copying torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5905630Z copying torch/include/ATen/ops/native_dropout_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5907100Z copying torch/include/ATen/ops/hash_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5908530Z copying torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5909790Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5911160Z copying torch/include/ATen/ops/multinomial.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5912430Z copying torch/include/ATen/ops/alias_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5913870Z copying torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5915050Z copying torch/include/ATen/ops/allclose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5916450Z copying torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5917900Z copying torch/include/ATen/ops/nuclear_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5918950Z copying torch/include/ATen/ops/_slow_conv2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5920260Z copying torch/include/ATen/ops/multilabel_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5921510Z copying torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5922860Z copying torch/include/ATen/ops/pairwise_distance_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5924150Z copying torch/include/ATen/ops/broadcast_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5925450Z copying torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5926740Z copying torch/include/ATen/ops/_nested_get_lengths_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5928100Z copying torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5929280Z copying torch/include/ATen/ops/_foreach_log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5930680Z copying torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5931930Z copying torch/include/ATen/ops/nextafter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5933480Z copying torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5934630Z copying torch/include/ATen/ops/_aminmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5935990Z copying torch/include/ATen/ops/complex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5937260Z copying torch/include/ATen/ops/hardswish_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5938540Z copying torch/include/ATen/ops/digamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5939920Z copying torch/include/ATen/ops/mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5941320Z copying torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5942670Z copying torch/include/ATen/ops/empty_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5944010Z copying torch/include/ATen/ops/triangular_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5945170Z copying torch/include/ATen/ops/_pdist_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5946480Z copying torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5947980Z copying torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5949250Z copying torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5950510Z copying torch/include/ATen/ops/adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5951770Z copying torch/include/ATen/ops/bitwise_or_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5953250Z copying torch/include/ATen/ops/geometric_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5954500Z copying torch/include/ATen/ops/_values_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5955910Z copying torch/include/ATen/ops/slow_conv_transpose2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5957300Z copying torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5958490Z copying torch/include/ATen/ops/cumprod_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5959920Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5961420Z copying torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5962500Z copying torch/include/ATen/ops/ldexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5964960Z copying torch/include/ATen/ops/arccosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5965540Z copying torch/include/ATen/ops/linalg_matrix_rank.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5966280Z copying torch/include/ATen/ops/_copy_from_and_resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5967700Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5968950Z copying torch/include/ATen/ops/all_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5970140Z copying torch/include/ATen/ops/linalg_matrix_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5971690Z copying torch/include/ATen/ops/is_set_to_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5972680Z copying torch/include/ATen/ops/bitwise_left_shift_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5973930Z copying torch/include/ATen/ops/randn_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5975160Z copying torch/include/ATen/ops/rnn_relu_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5976470Z copying torch/include/ATen/ops/max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5977830Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5979290Z copying torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5980620Z copying torch/include/ATen/ops/_pack_padded_sequence_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5981740Z copying torch/include/ATen/ops/nonzero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5983060Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5984510Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5985740Z copying torch/include/ATen/ops/mse_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5987160Z copying torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5988290Z copying torch/include/ATen/ops/eye_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5989740Z copying torch/include/ATen/ops/special_exp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5991010Z copying torch/include/ATen/ops/_fused_adamw.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5992550Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5993590Z copying torch/include/ATen/ops/grid_sampler_3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5995090Z copying torch/include/ATen/ops/index_copy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5996350Z copying torch/include/ATen/ops/frac_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5997650Z copying torch/include/ATen/ops/gelu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.5998970Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6000360Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6001720Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6003160Z copying torch/include/ATen/ops/_pdist_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6004270Z copying torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6005590Z copying torch/include/ATen/ops/broadcast_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6006910Z copying torch/include/ATen/ops/slow_conv3d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6008090Z copying torch/include/ATen/ops/lt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6009500Z copying torch/include/ATen/ops/_chunk_cat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6011030Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6012490Z copying torch/include/ATen/ops/is_distributed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6013760Z copying torch/include/ATen/ops/nll_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6015040Z copying torch/include/ATen/ops/_masked_softmax_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6016520Z copying torch/include/ATen/ops/fft_irfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6017900Z copying torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6019200Z copying torch/include/ATen/ops/slice_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6020610Z copying torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6021880Z copying torch/include/ATen/ops/fft_fftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6023040Z copying torch/include/ATen/ops/_fused_adagrad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6024490Z copying torch/include/ATen/ops/all_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6026370Z copying torch/include/ATen/ops/quantized_gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6027720Z copying torch/include/ATen/ops/eye_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6028960Z copying torch/include/ATen/ops/hypot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6030510Z copying torch/include/ATen/ops/sqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6031850Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6033040Z copying torch/include/ATen/ops/set_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6034300Z copying torch/include/ATen/ops/linalg_vecdot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6035800Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6037100Z copying torch/include/ATen/ops/acosh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6038380Z copying torch/include/ATen/ops/_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6039750Z copying torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6040990Z copying torch/include/ATen/ops/sparse_csr_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6042260Z copying torch/include/ATen/ops/_foreach_sinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6043580Z copying torch/include/ATen/ops/moveaxis_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6045000Z copying torch/include/ATen/ops/positive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6046140Z copying torch/include/ATen/ops/sum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6047430Z copying torch/include/ATen/ops/asin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6048720Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6050040Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6051280Z copying torch/include/ATen/ops/new_empty.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6052600Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6053880Z copying torch/include/ATen/ops/any_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6055300Z copying torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6056670Z copying torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6057900Z copying torch/include/ATen/ops/_propagate_xla_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6059180Z copying torch/include/ATen/ops/cudnn_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6060490Z copying torch/include/ATen/ops/_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6061750Z copying torch/include/ATen/ops/_foreach_round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6063120Z copying torch/include/ATen/ops/_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6064310Z copying torch/include/ATen/ops/is_coalesced_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6065590Z copying torch/include/ATen/ops/flatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6066910Z copying torch/include/ATen/ops/_to_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6068170Z copying torch/include/ATen/ops/bitwise_or_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6069450Z copying torch/include/ATen/ops/bincount_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6070680Z copying torch/include/ATen/ops/dot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6072050Z copying torch/include/ATen/ops/sparse_resize_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6073590Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6074760Z copying torch/include/ATen/ops/linspace_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6076020Z copying torch/include/ATen/ops/lerp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6077250Z copying torch/include/ATen/ops/nanmedian.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6078610Z copying torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6079870Z copying torch/include/ATen/ops/diagonal_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6081150Z copying torch/include/ATen/ops/sgn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6082430Z copying torch/include/ATen/ops/_gather_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6083620Z copying torch/include/ATen/ops/topk_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6084880Z copying torch/include/ATen/ops/flip_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6086170Z copying torch/include/ATen/ops/any_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6087540Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6088840Z copying torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6090110Z copying torch/include/ATen/ops/special_entr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6091510Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6092750Z copying torch/include/ATen/ops/where_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6094060Z copying torch/include/ATen/ops/_sparse_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6095730Z copying torch/include/ATen/ops/igamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6096890Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6098160Z copying torch/include/ATen/ops/_choose_qparams_per_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6099630Z copying torch/include/ATen/ops/fft_ihfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6100630Z copying torch/include/ATen/ops/kl_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6102080Z copying torch/include/ATen/ops/special_legendre_polynomial_p_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6103400Z copying torch/include/ATen/ops/_mps_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6105210Z copying torch/include/ATen/ops/hardsigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6106620Z copying torch/include/ATen/ops/values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6107930Z copying torch/include/ATen/ops/resize_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6109260Z copying torch/include/ATen/ops/bucketize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6110720Z copying torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6112010Z copying torch/include/ATen/ops/_linalg_svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6113500Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6114880Z copying torch/include/ATen/ops/argmin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6116220Z copying torch/include/ATen/ops/any_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6117520Z copying torch/include/ATen/ops/vsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6118830Z copying torch/include/ATen/ops/_softmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6119990Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6121390Z copying torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6122560Z copying torch/include/ATen/ops/_mps_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6123990Z copying torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6125260Z copying torch/include/ATen/ops/value_selecting_reduction_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6127130Z copying torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6128510Z copying torch/include/ATen/ops/special_log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6129920Z copying torch/include/ATen/ops/special_bessel_j0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6131230Z copying torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6132780Z copying torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6134150Z copying torch/include/ATen/ops/put_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6135420Z copying torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6136730Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6138100Z copying torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6139430Z copying torch/include/ATen/ops/glu_jvp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6140600Z copying torch/include/ATen/ops/atan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6141950Z copying torch/include/ATen/ops/acos_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6143320Z copying torch/include/ATen/ops/log10_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6144350Z copying torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6145670Z copying torch/include/ATen/ops/_mixed_dtypes_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6146950Z copying torch/include/ATen/ops/mkldnn_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6148150Z copying torch/include/ATen/ops/binomial.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6149490Z copying torch/include/ATen/ops/quantized_max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6150740Z copying torch/include/ATen/ops/linalg_qr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6151970Z copying torch/include/ATen/ops/ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6153440Z copying torch/include/ATen/ops/_propagate_xla_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6154640Z copying torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6155950Z copying torch/include/ATen/ops/index_add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6157240Z copying torch/include/ATen/ops/norm_except_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6158550Z copying torch/include/ATen/ops/log_normal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6159850Z copying torch/include/ATen/ops/miopen_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6161140Z copying torch/include/ATen/ops/max_pool3d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6162430Z copying torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6163690Z copying torch/include/ATen/ops/transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6164950Z copying torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6166450Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6167680Z copying torch/include/ATen/ops/smooth_l1_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6168990Z copying torch/include/ATen/ops/cholesky_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6170330Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6171640Z copying torch/include/ATen/ops/embedding_renorm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6173010Z copying torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6174230Z copying torch/include/ATen/ops/hardsigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6175580Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6176820Z copying torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6178440Z copying torch/include/ATen/ops/signbit_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6179530Z copying torch/include/ATen/ops/remainder_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6180910Z copying torch/include/ATen/ops/_weight_norm_interface_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6182120Z copying torch/include/ATen/ops/deg2rad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6183490Z copying torch/include/ATen/ops/glu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6184790Z copying torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6186070Z copying torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6187410Z copying torch/include/ATen/ops/zero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6188620Z copying torch/include/ATen/ops/is_complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6195640Z copying torch/include/ATen/ops/floor_divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6196370Z copying torch/include/ATen/ops/soft_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6196700Z copying torch/include/ATen/ops/addr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6197040Z copying torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6197310Z copying torch/include/ATen/ops/upsample_bicubic2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6197570Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6197920Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6198910Z copying torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6200130Z copying torch/include/ATen/ops/corrcoef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6201460Z copying torch/include/ATen/ops/linalg_tensorsolve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6202830Z copying torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6203990Z copying torch/include/ATen/ops/special_gammaln_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6284470Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6285640Z copying torch/include/ATen/ops/erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6286800Z copying torch/include/ATen/ops/ccol_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6857340Z copying torch/include/ATen/ops/reflection_pad1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6858480Z copying torch/include/ATen/ops/_foreach_asin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6860060Z copying torch/include/ATen/ops/_fused_adam.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6860990Z copying torch/include/ATen/ops/zeros_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6862450Z copying torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6863550Z copying torch/include/ATen/ops/reshape_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6864740Z copying torch/include/ATen/ops/_foreach_cosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6866100Z copying torch/include/ATen/ops/lt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6867280Z copying torch/include/ATen/ops/slow_conv_transpose3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6868840Z copying torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6869760Z copying torch/include/ATen/ops/gt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6871080Z copying torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6872370Z copying torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6873550Z copying torch/include/ATen/ops/replication_pad3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6874950Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6877060Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6878340Z copying torch/include/ATen/ops/unbind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6879650Z copying torch/include/ATen/ops/scatter_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6881170Z copying torch/include/ATen/ops/unique_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6882520Z copying torch/include/ATen/ops/triangular_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6883740Z copying torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6884960Z copying torch/include/ATen/ops/baddbmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6886190Z copying torch/include/ATen/ops/linear_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6887570Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6888930Z copying torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6889910Z copying torch/include/ATen/ops/geometric_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6891180Z copying torch/include/ATen/ops/multilabel_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6892400Z copying torch/include/ATen/ops/lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6893560Z copying torch/include/ATen/ops/_foreach_cos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6894900Z copying torch/include/ATen/ops/max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6896000Z copying torch/include/ATen/ops/outer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6897300Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6898500Z copying torch/include/ATen/ops/vdot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6899940Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6901130Z copying torch/include/ATen/ops/_fused_rms_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6902410Z copying torch/include/ATen/ops/topk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6903630Z copying torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6905070Z copying torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6906530Z copying torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6907580Z copying torch/include/ATen/ops/_cast_Short_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6908820Z copying torch/include/ATen/ops/batch_norm_gather_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6910200Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6911500Z copying torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6912650Z copying torch/include/ATen/ops/batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6913800Z copying torch/include/ATen/ops/_to_sparse_bsc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6915220Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6916460Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6917750Z copying torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6918910Z copying torch/include/ATen/ops/empty_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6920210Z copying torch/include/ATen/ops/q_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6921450Z copying torch/include/ATen/ops/lgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6922680Z copying torch/include/ATen/ops/stft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6923910Z copying torch/include/ATen/ops/_sparse_mask_projection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6925190Z copying torch/include/ATen/ops/aminmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6926370Z copying torch/include/ATen/ops/_trilinear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6927510Z copying torch/include/ATen/ops/mse_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6928860Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6929940Z copying torch/include/ATen/ops/affine_grid_generator_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6931070Z copying torch/include/ATen/ops/sinc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6932430Z copying torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6933530Z copying torch/include/ATen/ops/unique_dim_consecutive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6934800Z copying torch/include/ATen/ops/nll_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6936110Z copying torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6937340Z copying torch/include/ATen/ops/quantize_per_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6938490Z copying torch/include/ATen/ops/avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6939700Z copying torch/include/ATen/ops/unsqueeze_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6940900Z copying torch/include/ATen/ops/random_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6942140Z copying torch/include/ATen/ops/repeat_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6943350Z copying torch/include/ATen/ops/fractional_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6944510Z copying torch/include/ATen/ops/linalg_matrix_rank_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6945810Z copying torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6946860Z copying torch/include/ATen/ops/output_nr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6948040Z copying torch/include/ATen/ops/slow_conv3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6949190Z copying torch/include/ATen/ops/not_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6950420Z copying torch/include/ATen/ops/cholesky_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6951570Z copying torch/include/ATen/ops/meshgrid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6952800Z copying torch/include/ATen/ops/_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6954070Z copying torch/include/ATen/ops/sym_storage_offset_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6955260Z copying torch/include/ATen/ops/isneginf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6956470Z copying torch/include/ATen/ops/hardsigmoid_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6957660Z copying torch/include/ATen/ops/unsqueeze_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6958780Z copying torch/include/ATen/ops/rand_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6960360Z copying torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6961520Z copying torch/include/ATen/ops/mse_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6962890Z copying torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6964190Z copying torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6965410Z copying torch/include/ATen/ops/grid_sampler_2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6966660Z copying torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6967870Z copying torch/include/ATen/ops/float_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6969170Z copying torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6970470Z copying torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6971630Z copying torch/include/ATen/ops/slow_conv_dilated3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6972920Z copying torch/include/ATen/ops/maximum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6974260Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6975570Z copying torch/include/ATen/ops/multi_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6976790Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6978260Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6979420Z copying torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6980610Z copying torch/include/ATen/ops/cudnn_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6981730Z copying torch/include/ATen/ops/cosh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6983130Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6984290Z copying torch/include/ATen/ops/asinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6985650Z copying torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6986780Z copying torch/include/ATen/ops/tanh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6988060Z copying torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6989180Z copying torch/include/ATen/ops/_masked_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6990550Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6991810Z copying torch/include/ATen/ops/frac_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6993000Z copying torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6994140Z copying torch/include/ATen/ops/diff_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6995330Z copying torch/include/ATen/ops/fmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6996590Z copying torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6997890Z copying torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.6999060Z copying torch/include/ATen/ops/eye_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7000410Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7001580Z copying torch/include/ATen/ops/reflection_pad2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7002750Z copying torch/include/ATen/ops/ceil_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7004170Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7005360Z copying torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7006520Z copying torch/include/ATen/ops/sym_storage_offset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7007800Z copying torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7008910Z copying torch/include/ATen/ops/fmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7010290Z copying torch/include/ATen/ops/pixel_unshuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7011600Z copying torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7012720Z copying torch/include/ATen/ops/_log_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7013910Z copying torch/include/ATen/ops/abs_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7015140Z copying torch/include/ATen/ops/_masked_softmax_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7016300Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7017820Z copying torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7018780Z copying torch/include/ATen/ops/and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7020240Z copying torch/include/ATen/ops/slow_conv_dilated2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7021230Z copying torch/include/ATen/ops/_sparse_csr_sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7022460Z copying torch/include/ATen/ops/replication_pad3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7023720Z copying torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7024930Z copying torch/include/ATen/ops/gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7026170Z copying torch/include/ATen/ops/logaddexp2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7027450Z copying torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7028760Z copying torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7029910Z copying torch/include/ATen/ops/searchsorted_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7031120Z copying torch/include/ATen/ops/addmv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7032500Z copying torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7033620Z copying torch/include/ATen/ops/masked_scatter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7034910Z copying torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7036170Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7037330Z copying torch/include/ATen/ops/clamp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7038620Z copying torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7039770Z copying torch/include/ATen/ops/hann_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7041000Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7042430Z copying torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7043670Z copying torch/include/ATen/ops/log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7044860Z copying torch/include/ATen/ops/_cast_Int.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7046170Z copying torch/include/ATen/ops/nextafter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7047510Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7048620Z copying torch/include/ATen/ops/erf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7049930Z copying torch/include/ATen/ops/as_strided_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7051030Z copying torch/include/ATen/ops/_flash_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7052210Z copying torch/include/ATen/ops/mkldnn_rnn_layer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7053510Z copying torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7054730Z copying torch/include/ATen/ops/isneginf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7055890Z copying torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7057110Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7058270Z copying torch/include/ATen/ops/concatenate_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7059530Z copying torch/include/ATen/ops/bitwise_or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7060830Z copying torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7062000Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7063220Z copying torch/include/ATen/ops/clamp_min_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7064540Z copying torch/include/ATen/ops/argmin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7065670Z copying torch/include/ATen/ops/_index_put_impl_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7066910Z copying torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7068060Z copying torch/include/ATen/ops/erfc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7069440Z copying torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7070570Z copying torch/include/ATen/ops/lstm_mps_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7071700Z copying torch/include/ATen/ops/range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7072900Z copying torch/include/ATen/ops/select_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7074130Z copying torch/include/ATen/ops/_foreach_erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7075320Z copying torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7076510Z copying torch/include/ATen/ops/sparse_resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7077700Z copying torch/include/ATen/ops/mkldnn_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7078840Z copying torch/include/ATen/ops/sinc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7080040Z copying torch/include/ATen/ops/_conj_physical.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7081220Z copying torch/include/ATen/ops/square_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7082540Z copying torch/include/ATen/ops/copysign_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7083690Z copying torch/include/ATen/ops/amin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7085030Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7086150Z copying torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7087330Z copying torch/include/ATen/ops/margin_ranking_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7088530Z copying torch/include/ATen/ops/special_psi_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7089730Z copying torch/include/ATen/ops/special_ndtri_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7090800Z copying torch/include/ATen/ops/to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7092020Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7093130Z copying torch/include/ATen/ops/_foreach_erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7094380Z copying torch/include/ATen/ops/selu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7095510Z copying torch/include/ATen/ops/_cdist_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7096830Z copying torch/include/ATen/ops/sparse_dim_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7098050Z copying torch/include/ATen/ops/log_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7099310Z copying torch/include/ATen/ops/range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7100500Z copying torch/include/ATen/ops/aminmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7101730Z copying torch/include/ATen/ops/linalg_solve_triangular.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7103090Z copying torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7104270Z copying torch/include/ATen/ops/cov.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7105610Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7106770Z copying torch/include/ATen/ops/relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7107970Z copying torch/include/ATen/ops/unique_dim_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7109340Z copying torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7110470Z copying torch/include/ATen/ops/min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7111700Z copying torch/include/ATen/ops/chain_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7112840Z copying torch/include/ATen/ops/tile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7114040Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7115260Z copying torch/include/ATen/ops/_foreach_reciprocal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7116410Z copying torch/include/ATen/ops/hardshrink_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7117650Z copying torch/include/ATen/ops/unique_dim_consecutive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7118830Z copying torch/include/ATen/ops/is_nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7120090Z copying torch/include/ATen/ops/_prelu_kernel_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7121320Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7122590Z copying torch/include/ATen/ops/kthvalue_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7123790Z copying torch/include/ATen/ops/linspace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7125070Z copying torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7126230Z copying torch/include/ATen/ops/slice_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7127450Z copying torch/include/ATen/ops/_test_parallel_materialize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7128700Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7130000Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7131230Z copying torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7132390Z copying torch/include/ATen/ops/conj_physical_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7133560Z copying torch/include/ATen/ops/int_repr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7134790Z copying torch/include/ATen/ops/ne_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7136050Z copying torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7137280Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7138490Z copying torch/include/ATen/ops/upsample_nearest2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7139610Z copying torch/include/ATen/ops/_foreach_mul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7140870Z copying torch/include/ATen/ops/upsample_linear1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7141990Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7143170Z copying torch/include/ATen/ops/_int_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7144380Z copying torch/include/ATen/ops/upsample_linear1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7145620Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7146890Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7147960Z copying torch/include/ATen/ops/fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7149150Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7150400Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7151780Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7153000Z copying torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7154150Z copying torch/include/ATen/ops/log1p_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7155750Z copying torch/include/ATen/ops/triplet_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7156560Z copying torch/include/ATen/ops/lcm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7157780Z copying torch/include/ATen/ops/argwhere_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7159090Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7160290Z copying torch/include/ATen/ops/_foreach_frac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7161460Z copying torch/include/ATen/ops/orgqr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7162610Z copying torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7163850Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7165000Z copying torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7166180Z copying torch/include/ATen/ops/sgn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7167400Z copying torch/include/ATen/ops/nanmedian_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7168640Z copying torch/include/ATen/ops/crow_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7169850Z copying torch/include/ATen/ops/fft_ihfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7170980Z copying torch/include/ATen/ops/put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7172210Z copying torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7173420Z copying torch/include/ATen/ops/std_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7174810Z copying torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7176090Z copying torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7177220Z copying torch/include/ATen/ops/lerp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7178390Z copying torch/include/ATen/ops/clamp_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7179570Z copying torch/include/ATen/ops/_int_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7180780Z copying torch/include/ATen/ops/var_mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7182040Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7183120Z copying torch/include/ATen/ops/arctan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7184490Z copying torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7185610Z copying torch/include/ATen/ops/div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7186850Z copying torch/include/ATen/ops/round_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7188120Z copying torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7189340Z copying torch/include/ATen/ops/hypot_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7190530Z copying torch/include/ATen/ops/nll_loss2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7191750Z copying torch/include/ATen/ops/to_mkldnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7193030Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7194200Z copying torch/include/ATen/ops/empty_permuted_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7195600Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7196790Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7197930Z copying torch/include/ATen/ops/lt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7199170Z copying torch/include/ATen/ops/linalg_householder_product_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7200300Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7201660Z copying torch/include/ATen/ops/cudnn_grid_sampler_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7202910Z copying torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7204090Z copying torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7205260Z copying torch/include/ATen/ops/slice_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7206510Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7207740Z copying torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7208920Z copying torch/include/ATen/ops/_nnz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7210200Z copying torch/include/ATen/ops/grid_sampler_2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7211410Z copying torch/include/ATen/ops/isneginf_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7212690Z copying torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7213930Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7215190Z copying torch/include/ATen/ops/sparse_compressed_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7216620Z copying torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7218010Z copying torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7219240Z copying torch/include/ATen/ops/hamming_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7220500Z copying torch/include/ATen/ops/nll_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7221690Z copying torch/include/ATen/ops/zeros_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7223090Z copying torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7224260Z copying torch/include/ATen/ops/special_modified_bessel_k0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7225470Z copying torch/include/ATen/ops/_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7226760Z copying torch/include/ATen/ops/special_bessel_j1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7227930Z copying torch/include/ATen/ops/conv3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7229190Z copying torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7230490Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7231840Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7233050Z copying torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7234170Z copying torch/include/ATen/ops/chunk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7235630Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7236840Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7238070Z copying torch/include/ATen/ops/special_modified_bessel_k1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7239320Z copying torch/include/ATen/ops/sgn_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7240520Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7241870Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7242920Z copying torch/include/ATen/ops/split_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7244140Z copying torch/include/ATen/ops/linalg_cholesky_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7245360Z copying torch/include/ATen/ops/topk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7246660Z copying torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7247780Z copying torch/include/ATen/ops/sym_numel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7248980Z copying torch/include/ATen/ops/leaky_relu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7250230Z copying torch/include/ATen/ops/mish_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7251380Z copying torch/include/ATen/ops/_values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7252710Z copying torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7253940Z copying torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7255130Z copying torch/include/ATen/ops/_coalesced_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7256240Z copying torch/include/ATen/ops/bitwise_or_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7257360Z copying torch/include/ATen/ops/sym_numel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7258740Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7259890Z copying torch/include/ATen/ops/log_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7261050Z copying torch/include/ATen/ops/_to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7262370Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7263500Z copying torch/include/ATen/ops/_logcumsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7264690Z copying torch/include/ATen/ops/pow_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7265960Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7267190Z copying torch/include/ATen/ops/_fused_adagrad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7268290Z copying torch/include/ATen/ops/_foreach_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7269620Z copying torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7270810Z copying torch/include/ATen/ops/linalg_solve_triangular_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7272290Z copying torch/include/ATen/ops/conj_physical_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7273250Z copying torch/include/ATen/ops/silu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7274500Z copying torch/include/ATen/ops/asin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7275720Z copying torch/include/ATen/ops/multinomial_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7277140Z copying torch/include/ATen/ops/_spsolve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7278530Z copying torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7279780Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7281120Z copying torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7282270Z copying torch/include/ATen/ops/sspaddmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7283510Z copying torch/include/ATen/ops/maximum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7284720Z copying torch/include/ATen/ops/_batch_norm_impl_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7285910Z copying torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7287130Z copying torch/include/ATen/ops/linalg_eigh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7288360Z copying torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7289550Z copying torch/include/ATen/ops/quantized_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7290780Z copying torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7293010Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7293260Z copying torch/include/ATen/ops/_cummax_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7294390Z copying torch/include/ATen/ops/special_i1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7295720Z copying torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7296830Z copying torch/include/ATen/ops/sparse_compressed_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7298150Z copying torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7299330Z copying torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7300550Z copying torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7301620Z copying torch/include/ATen/ops/_cast_Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7302990Z copying torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7304270Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7305580Z copying torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7306710Z copying torch/include/ATen/ops/elu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7307860Z copying torch/include/ATen/ops/fmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7309030Z copying torch/include/ATen/ops/_to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7310190Z copying torch/include/ATen/ops/addr_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7311390Z copying torch/include/ATen/ops/threshold_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7312550Z copying torch/include/ATen/ops/not_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7313840Z copying torch/include/ATen/ops/xlogy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7315010Z copying torch/include/ATen/ops/special_exp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7316450Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7317540Z copying torch/include/ATen/ops/special_bessel_j0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7318760Z copying torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7319980Z copying torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7321170Z copying torch/include/ATen/ops/view_as_complex_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7322330Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7323580Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7324810Z copying torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7326200Z copying torch/include/ATen/ops/special_bessel_j1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7327360Z copying torch/include/ATen/ops/_unsafe_index_put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7328600Z copying torch/include/ATen/ops/row_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7329870Z copying torch/include/ATen/ops/multiply_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7331160Z copying torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7332250Z copying torch/include/ATen/ops/_dim_arange_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7333460Z copying torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7334630Z copying torch/include/ATen/ops/to_sparse_csc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7335860Z copying torch/include/ATen/ops/indices_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7337090Z copying torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7338330Z copying torch/include/ATen/ops/upsample_nearest2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7339480Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7340700Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7341960Z copying torch/include/ATen/ops/equal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7343210Z copying torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7344320Z copying torch/include/ATen/ops/xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7345530Z copying torch/include/ATen/ops/_nnz_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7346610Z copying torch/include/ATen/ops/special_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7347760Z copying torch/include/ATen/ops/scatter_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7348970Z copying torch/include/ATen/ops/slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7350300Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7351380Z copying torch/include/ATen/ops/std_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7352660Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7353820Z copying torch/include/ATen/ops/_foreach_log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7355020Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7356370Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7357610Z copying torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7358780Z copying torch/include/ATen/ops/fractional_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7359930Z copying torch/include/ATen/ops/hspmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7361220Z copying torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7362240Z copying torch/include/ATen/ops/take_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7363550Z copying torch/include/ATen/ops/segment_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7364780Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7365950Z copying torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7367090Z copying torch/include/ATen/ops/squeeze_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7368400Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7369560Z copying torch/include/ATen/ops/less_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7370690Z copying torch/include/ATen/ops/_shape_as_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7371840Z copying torch/include/ATen/ops/mv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7373090Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7374360Z copying torch/include/ATen/ops/special_legendre_polynomial_p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7375590Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7376710Z copying torch/include/ATen/ops/threshold_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7377910Z copying torch/include/ATen/ops/clamp_min_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7379520Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7380370Z copying torch/include/ATen/ops/mkldnn_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7381610Z copying torch/include/ATen/ops/_mps_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7382740Z copying torch/include/ATen/ops/cat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7384170Z copying torch/include/ATen/ops/swapdims_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7385170Z copying torch/include/ATen/ops/rrelu_with_noise_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7386340Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7387520Z copying torch/include/ATen/ops/_to_sparse_csc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7388690Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7389910Z copying torch/include/ATen/ops/rnn_tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7391240Z copying torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7392300Z copying torch/include/ATen/ops/special_multigammaln_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7393520Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7394680Z copying torch/include/ATen/ops/amax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7395980Z copying torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7397120Z copying torch/include/ATen/ops/to_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7398320Z copying torch/include/ATen/ops/reflection_pad3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7399640Z copying torch/include/ATen/ops/nan_to_num_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7400680Z copying torch/include/ATen/ops/_cummin_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7401940Z copying torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7403230Z copying torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7404390Z copying torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7405540Z copying torch/include/ATen/ops/log10_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7406700Z copying torch/include/ATen/ops/_test_parallel_materialize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7408010Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7409110Z copying torch/include/ATen/ops/bitwise_left_shift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7410480Z copying torch/include/ATen/ops/_pad_circular_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7411660Z copying torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7412770Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7414030Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7415190Z copying torch/include/ATen/ops/frobenius_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7416400Z copying torch/include/ATen/ops/count_nonzero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7417550Z copying torch/include/ATen/ops/rsub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7418730Z copying torch/include/ATen/ops/linalg_qr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7419920Z copying torch/include/ATen/ops/slow_conv_transpose2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7421210Z copying torch/include/ATen/ops/_linalg_det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7422310Z copying torch/include/ATen/ops/tanh_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7423450Z copying torch/include/ATen/ops/_foreach_lgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7424590Z copying torch/include/ATen/ops/isin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7425900Z copying torch/include/ATen/ops/ne_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7426990Z copying torch/include/ATen/ops/_linalg_slogdet_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7428180Z copying torch/include/ATen/ops/multinomial_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7429340Z copying torch/include/ATen/ops/_foreach_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7430530Z copying torch/include/ATen/ops/tan_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7431970Z copying torch/include/ATen/ops/multinomial_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7433010Z copying torch/include/ATen/ops/new_empty_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7434270Z copying torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7435510Z copying torch/include/ATen/ops/all_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7436940Z copying torch/include/ATen/ops/rms_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7438220Z copying torch/include/ATen/ops/to_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7439480Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7440670Z copying torch/include/ATen/ops/flip_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7441870Z copying torch/include/ATen/ops/svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7442990Z copying torch/include/ATen/ops/mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7444240Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7445480Z copying torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7446780Z copying torch/include/ATen/ops/special_polygamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7447810Z copying torch/include/ATen/ops/rshift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7448970Z copying torch/include/ATen/ops/log2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7450160Z copying torch/include/ATen/ops/special_i1e_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7451470Z copying torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7452650Z copying torch/include/ATen/ops/squeeze_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7453920Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7455060Z copying torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7456190Z copying torch/include/ATen/ops/is_leaf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7457390Z copying torch/include/ATen/ops/maximum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7458620Z copying torch/include/ATen/ops/asinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7459760Z copying torch/include/ATen/ops/broadcast_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7460940Z copying torch/include/ATen/ops/_nested_get_lengths_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7462160Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7463300Z copying torch/include/ATen/ops/tril_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7464550Z copying torch/include/ATen/ops/sqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7465730Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7466930Z copying torch/include/ATen/ops/randint_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7468100Z copying torch/include/ATen/ops/slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7469410Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7470700Z copying torch/include/ATen/ops/_foreach_erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7471930Z copying torch/include/ATen/ops/_functional_assert_scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7473100Z copying torch/include/ATen/ops/_lazy_clone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7474360Z copying torch/include/ATen/ops/mps_convolution_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7475620Z copying torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7477070Z copying torch/include/ATen/ops/equal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7477960Z copying torch/include/ATen/ops/empty_quantized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7479190Z copying torch/include/ATen/ops/special_digamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7480410Z copying torch/include/ATen/ops/fractional_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7481550Z copying torch/include/ATen/ops/unfold_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7482740Z copying torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7483950Z copying torch/include/ATen/ops/all_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7485130Z copying torch/include/ATen/ops/cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7486410Z copying torch/include/ATen/ops/_convolution_double_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7487590Z copying torch/include/ATen/ops/gelu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7488850Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7490090Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7491300Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7492380Z copying torch/include/ATen/ops/fmin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7493590Z copying torch/include/ATen/ops/log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7494650Z copying torch/include/ATen/ops/less.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7495840Z copying torch/include/ATen/ops/tensordot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7497140Z copying torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7498260Z copying torch/include/ATen/ops/_sample_dirichlet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7505110Z copying torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7505390Z copying torch/include/ATen/ops/log2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7505710Z copying torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7505980Z copying torch/include/ATen/ops/linalg_cholesky_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7506230Z copying torch/include/ATen/ops/div_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7506600Z copying torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7507410Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7508680Z copying torch/include/ATen/ops/nll_loss_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7509930Z copying torch/include/ATen/ops/bitwise_not_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7511120Z copying torch/include/ATen/ops/_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7512390Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7513550Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7514740Z copying torch/include/ATen/ops/slow_conv_dilated2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7515930Z copying torch/include/ATen/ops/_foreach_acos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7517110Z copying torch/include/ATen/ops/gradient_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7518310Z copying torch/include/ATen/ops/conv_transpose1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7519390Z copying torch/include/ATen/ops/or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7520670Z copying torch/include/ATen/ops/smooth_l1_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7521930Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7523140Z copying torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7524500Z copying torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7525670Z copying torch/include/ATen/ops/median_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7526950Z copying torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7528130Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7529300Z copying torch/include/ATen/ops/atleast_3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7530540Z copying torch/include/ATen/ops/_chunk_cat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7531710Z copying torch/include/ATen/ops/_functional_sym_constrain_range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7532860Z copying torch/include/ATen/ops/im2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7534080Z copying torch/include/ATen/ops/upsample_nearest3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7535310Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7536630Z copying torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7537780Z copying torch/include/ATen/ops/_mps_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7538970Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7540150Z copying torch/include/ATen/ops/retains_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7541420Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7542600Z copying torch/include/ATen/ops/sign_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7543780Z copying torch/include/ATen/ops/empty_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7545110Z copying torch/include/ATen/ops/gelu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7546320Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7547580Z copying torch/include/ATen/ops/elu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7548840Z copying torch/include/ATen/ops/output_nr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7550000Z copying torch/include/ATen/ops/sqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7551140Z copying torch/include/ATen/ops/linalg_lstsq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7552300Z copying torch/include/ATen/ops/count_nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7553440Z copying torch/include/ATen/ops/feature_alpha_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7554730Z copying torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7555860Z copying torch/include/ATen/ops/softplus_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7557030Z copying torch/include/ATen/ops/trunc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7558200Z copying torch/include/ATen/ops/_cummin_helper_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7559560Z copying torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7560750Z copying torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7562260Z copying torch/include/ATen/ops/as_strided_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7563170Z copying torch/include/ATen/ops/special_i0e_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7564330Z copying torch/include/ATen/ops/norm_except_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7565540Z copying torch/include/ATen/ops/sort_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7566680Z copying torch/include/ATen/ops/logit_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7567930Z copying torch/include/ATen/ops/_stack_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7569040Z copying torch/include/ATen/ops/fft_hfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7570290Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7571510Z copying torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7572680Z copying torch/include/ATen/ops/view_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7573800Z copying torch/include/ATen/ops/grid_sampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7575030Z copying torch/include/ATen/ops/linalg_lu_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7576250Z copying torch/include/ATen/ops/divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7577310Z copying torch/include/ATen/ops/_unsafe_masked_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7578600Z copying torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7579790Z copying torch/include/ATen/ops/is_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7580960Z copying torch/include/ATen/ops/replication_pad2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7582130Z copying torch/include/ATen/ops/_resize_output_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7583330Z copying torch/include/ATen/ops/_fused_adamw_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7584490Z copying torch/include/ATen/ops/slice_inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7585700Z copying torch/include/ATen/ops/hardswish_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7586850Z copying torch/include/ATen/ops/fft_ihfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7588070Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7589170Z copying torch/include/ATen/ops/values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7590340Z copying torch/include/ATen/ops/feature_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7591520Z copying torch/include/ATen/ops/resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7593080Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7594220Z copying torch/include/ATen/ops/gt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7595600Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7596680Z copying torch/include/ATen/ops/special_xlog1py_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7597920Z copying torch/include/ATen/ops/linalg_inv_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7599190Z copying torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7600340Z copying torch/include/ATen/ops/tril_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7601520Z copying torch/include/ATen/ops/threshold_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7602700Z copying torch/include/ATen/ops/sparse_bsr_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7603870Z copying torch/include/ATen/ops/max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7605110Z copying torch/include/ATen/ops/tensor_split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7606450Z copying torch/include/ATen/ops/diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7607970Z copying torch/include/ATen/ops/std_mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7609270Z copying torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7610600Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7612150Z copying torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7613270Z copying torch/include/ATen/ops/expand_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7614440Z copying torch/include/ATen/ops/adaptive_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7615620Z copying torch/include/ATen/ops/le_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7616870Z copying torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7618090Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7619390Z copying torch/include/ATen/ops/hardshrink_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7620540Z copying torch/include/ATen/ops/addmv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7621710Z copying torch/include/ATen/ops/to_sparse_bsc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7623040Z copying torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7624180Z copying torch/include/ATen/ops/_sobol_engine_scramble_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7625380Z copying torch/include/ATen/ops/slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7626640Z copying torch/include/ATen/ops/native_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7627850Z copying torch/include/ATen/ops/hardswish_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7628940Z copying torch/include/ATen/ops/lshift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7630090Z copying torch/include/ATen/ops/set_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7631260Z copying torch/include/ATen/ops/_linalg_det_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7632550Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7633720Z copying torch/include/ATen/ops/tril_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7634950Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7636180Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7637380Z copying torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7638660Z copying torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7639850Z copying torch/include/ATen/ops/sinh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7641030Z copying torch/include/ATen/ops/sub_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7642220Z copying torch/include/ATen/ops/glu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7643320Z copying torch/include/ATen/ops/fmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7645420Z copying torch/include/ATen/ops/_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7646780Z copying torch/include/ATen/ops/cudnn_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7652470Z copying torch/include/ATen/ops/lcm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7653910Z copying torch/include/ATen/ops/atan_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7660190Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7661160Z copying torch/include/ATen/ops/_unique2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7662710Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7668900Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7670130Z copying torch/include/ATen/ops/new_full_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7676240Z copying torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7677840Z copying torch/include/ATen/ops/logspace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7684820Z copying torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7685840Z copying torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7687130Z copying torch/include/ATen/ops/to_mkldnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7692520Z copying torch/include/ATen/ops/linalg_eigvalsh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7694030Z copying torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7700600Z copying torch/include/ATen/ops/linalg_inv_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7701630Z copying torch/include/ATen/ops/unsqueeze.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7702840Z copying torch/include/ATen/ops/isinf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7709790Z copying torch/include/ATen/ops/_foreach_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7717780Z copying torch/include/ATen/ops/floor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7718760Z copying torch/include/ATen/ops/where_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7725870Z copying torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7726720Z copying torch/include/ATen/ops/special_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7728010Z copying torch/include/ATen/ops/_addmm_activation_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7733730Z copying torch/include/ATen/ops/clamp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7734600Z copying torch/include/ATen/ops/special_hermite_polynomial_h.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7741680Z copying torch/include/ATen/ops/set_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7742630Z copying torch/include/ATen/ops/bucketize_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7743810Z copying torch/include/ATen/ops/asinh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7749900Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7750720Z copying torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7757480Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7758230Z copying torch/include/ATen/ops/_conj_physical_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7759440Z copying torch/include/ATen/ops/_sparse_sum_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7765520Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7766490Z copying torch/include/ATen/ops/alias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7772670Z copying torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7774210Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7781050Z copying torch/include/ATen/ops/fft_fft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7782100Z copying torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7789580Z copying torch/include/ATen/ops/special_i1e_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7790630Z copying torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7796580Z copying torch/include/ATen/ops/poisson.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7798540Z copying torch/include/ATen/ops/special_hermite_polynomial_h_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7804180Z copying torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7804880Z copying torch/include/ATen/ops/replication_pad1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7807610Z copying torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7812730Z copying torch/include/ATen/ops/nan_to_num_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7813780Z copying torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7816790Z copying torch/include/ATen/ops/logspace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7822190Z copying torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7825500Z copying torch/include/ATen/ops/conj_physical_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7829670Z copying torch/include/ATen/ops/heaviside.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7830590Z copying torch/include/ATen/ops/arccosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7834770Z copying torch/include/ATen/ops/_mkldnn_reshape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7838770Z copying torch/include/ATen/ops/linalg_slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7839830Z copying torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7844770Z copying torch/include/ATen/ops/special_bessel_j1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7848090Z copying torch/include/ATen/ops/addcdiv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7852810Z copying torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7853680Z copying torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7858210Z copying torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7861840Z copying torch/include/ATen/ops/aminmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7865680Z copying torch/include/ATen/ops/hash_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7866720Z copying torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7870980Z copying torch/include/ATen/ops/_linalg_det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7874480Z copying torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7878730Z copying torch/include/ATen/ops/_coalesce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7879730Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7883420Z copying torch/include/ATen/ops/batch_norm_backward_elemt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7888040Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7892380Z copying torch/include/ATen/ops/log_sigmoid_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7896230Z copying torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7897220Z copying torch/include/ATen/ops/special_i1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7901740Z copying torch/include/ATen/ops/index_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7903410Z copying torch/include/ATen/ops/equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7909100Z copying torch/include/ATen/ops/_unique2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7910140Z copying torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7916940Z copying torch/include/ATen/ops/acos_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7917830Z copying torch/include/ATen/ops/heaviside_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7922990Z copying torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7925510Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7931860Z copying torch/include/ATen/ops/heaviside_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7932940Z copying torch/include/ATen/ops/_nested_view_from_jagged_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7938680Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7946590Z copying torch/include/ATen/ops/_fw_primal_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7947620Z copying torch/include/ATen/ops/_nested_tensor_from_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7954630Z copying torch/include/ATen/ops/sparse_bsr_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7955430Z copying torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7956590Z copying torch/include/ATen/ops/sum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7963060Z copying torch/include/ATen/ops/searchsorted.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7964250Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7970160Z copying torch/include/ATen/ops/linalg_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7972920Z copying torch/include/ATen/ops/linalg_solve_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7977890Z copying torch/include/ATen/ops/bitwise_and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7978820Z copying torch/include/ATen/ops/instance_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7980250Z copying torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7986310Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7987280Z copying torch/include/ATen/ops/_slow_conv2d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7990280Z copying torch/include/ATen/ops/embedding_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7995700Z copying torch/include/ATen/ops/geqrf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.7998640Z copying torch/include/ATen/ops/tile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8003680Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8004700Z copying torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8006490Z copying torch/include/ATen/ops/_foreach_clamp_min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8012550Z copying torch/include/ATen/ops/nanmean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8014290Z copying torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8020350Z copying torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8021380Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8023790Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8030410Z copying torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8031230Z copying torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8038620Z copying torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8039590Z copying torch/include/ATen/ops/topk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8040760Z copying torch/include/ATen/ops/tanh_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8045750Z copying torch/include/ATen/ops/xlogy_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8046960Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8053640Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8054760Z copying torch/include/ATen/ops/softplus_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8056130Z copying torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8063010Z copying torch/include/ATen/ops/scalar_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8063800Z copying torch/include/ATen/ops/embedding_bag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8070480Z copying torch/include/ATen/ops/rnn_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8071420Z copying torch/include/ATen/ops/special_i1e_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8078170Z copying torch/include/ATen/ops/adaptive_avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8079060Z copying torch/include/ATen/ops/as_strided_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8080270Z copying torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8086220Z copying torch/include/ATen/ops/ones_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8087230Z copying torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8094450Z copying torch/include/ATen/ops/cholesky_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8095180Z copying torch/include/ATen/ops/triu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8096400Z copying torch/include/ATen/ops/count_nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8101880Z copying torch/include/ATen/ops/eq_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8103060Z copying torch/include/ATen/ops/fft_rfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8109450Z copying torch/include/ATen/ops/reflection_pad2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8110800Z copying torch/include/ATen/ops/hypot_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8118650Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8119510Z copying torch/include/ATen/ops/feature_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8125720Z copying torch/include/ATen/ops/gelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8127160Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8133880Z copying torch/include/ATen/ops/q_per_channel_zero_points.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8141540Z copying torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8142490Z copying torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8143670Z copying torch/include/ATen/ops/isclose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8149760Z copying torch/include/ATen/ops/view_as_complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8150530Z copying torch/include/ATen/ops/lstm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8157470Z copying torch/include/ATen/ops/_linalg_eigvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8158440Z copying torch/include/ATen/ops/expm1_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8165300Z copying torch/include/ATen/ops/_mps_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8166270Z copying torch/include/ATen/ops/kthvalue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8167520Z copying torch/include/ATen/ops/_euclidean_dist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8173020Z copying torch/include/ATen/ops/replication_pad1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8175390Z copying torch/include/ATen/ops/sin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8180860Z copying torch/include/ATen/ops/unsafe_chunk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8181620Z copying torch/include/ATen/ops/_foreach_minimum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8183460Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8188780Z copying torch/include/ATen/ops/select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8189890Z copying torch/include/ATen/ops/clamp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8196880Z copying torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8198150Z copying torch/include/ATen/ops/_foreach_maximum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8205070Z copying torch/include/ATen/ops/linalg_cholesky_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8206100Z copying torch/include/ATen/ops/hamming_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8207290Z copying torch/include/ATen/ops/flatten_dense_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8213120Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8214010Z copying torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8220870Z copying torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8221710Z copying torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8222920Z copying torch/include/ATen/ops/max_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8229210Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8231120Z copying torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8237460Z copying torch/include/ATen/ops/linalg_lu_factor_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8238720Z copying torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8239830Z copying torch/include/ATen/ops/unique_consecutive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8247030Z copying torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8248030Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8255280Z copying torch/include/ATen/ops/_neg_view_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8256230Z copying torch/include/ATen/ops/trapezoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8262850Z copying torch/include/ATen/ops/bitwise_xor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8263770Z copying torch/include/ATen/ops/tanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8264990Z copying torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8270800Z copying torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8271620Z copying torch/include/ATen/ops/logical_not_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8278310Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8279340Z copying torch/include/ATen/ops/avg_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8280570Z copying torch/include/ATen/ops/tril_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8287130Z copying torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8294670Z copying torch/include/ATen/ops/dsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8295900Z copying torch/include/ATen/ops/is_vulkan_available_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8302550Z copying torch/include/ATen/ops/resolve_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8303690Z copying torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8304850Z copying torch/include/ATen/ops/rad2deg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8310280Z copying torch/include/ATen/ops/_mps_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8311510Z copying torch/include/ATen/ops/_segment_reduce_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8318300Z copying torch/include/ATen/ops/special_logit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8319380Z copying torch/include/ATen/ops/_cummin_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8320770Z copying torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8326640Z copying torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8327410Z copying torch/include/ATen/ops/_foreach_addcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8334020Z copying torch/include/ATen/ops/split_with_sizes_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8335280Z copying torch/include/ATen/ops/nll_loss_nd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8336690Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8343540Z copying torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8351430Z copying torch/include/ATen/ops/type_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8352430Z copying torch/include/ATen/ops/dot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8358450Z copying torch/include/ATen/ops/hardswish_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8359490Z copying torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8360670Z copying torch/include/ATen/ops/leaky_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8366550Z copying torch/include/ATen/ops/_masked_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8367890Z copying torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8374420Z copying torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8375790Z copying torch/include/ATen/ops/sign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8377140Z copying torch/include/ATen/ops/linalg_tensorsolve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8383440Z copying torch/include/ATen/ops/argwhere_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8384410Z copying torch/include/ATen/ops/erfinv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8391490Z copying torch/include/ATen/ops/resolve_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8392550Z copying torch/include/ATen/ops/scatter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8399490Z copying torch/include/ATen/ops/_triton_multi_head_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8400600Z copying torch/include/ATen/ops/alpha_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8401950Z copying torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8407580Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8408350Z copying torch/include/ATen/ops/stride_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8415290Z copying torch/include/ATen/ops/soft_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8416250Z copying torch/include/ATen/ops/col2im_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8417380Z copying torch/include/ATen/ops/lift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8422870Z copying torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8423730Z copying torch/include/ATen/ops/atan2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8426370Z copying torch/include/ATen/ops/_sparse_broadcast_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8432840Z copying torch/include/ATen/ops/_foreach_floor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8434510Z copying torch/include/ATen/ops/acos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8439970Z copying torch/include/ATen/ops/_fused_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8440870Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8443690Z copying torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8449840Z copying torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8457330Z copying torch/include/ATen/ops/stride.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8458070Z copying torch/include/ATen/ops/addmv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8465400Z copying torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8466200Z copying torch/include/ATen/ops/log_normal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8467410Z copying torch/include/ATen/ops/align_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8473130Z copying torch/include/ATen/ops/relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8474140Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8481010Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8481830Z copying torch/include/ATen/ops/_sample_dirichlet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8483080Z copying torch/include/ATen/ops/special_ndtr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8489650Z copying torch/include/ATen/ops/special_airy_ai_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8490490Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8497420Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8498520Z copying torch/include/ATen/ops/clone_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8505350Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8506270Z copying torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8507430Z copying torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8512880Z copying torch/include/ATen/ops/_to_cpu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8513830Z copying torch/include/ATen/ops/adaptive_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8521010Z copying torch/include/ATen/ops/_nested_view_from_jagged.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8522090Z copying torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8529230Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8530380Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8531490Z copying torch/include/ATen/ops/_unique2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8536900Z copying torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8537950Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8544760Z copying torch/include/ATen/ops/trunc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8545640Z copying torch/include/ATen/ops/retain_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8546910Z copying torch/include/ATen/ops/max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8553290Z copying torch/include/ATen/ops/histogramdd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8554410Z copying torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8560380Z copying torch/include/ATen/ops/tanh_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8568330Z copying torch/include/ATen/ops/nanquantile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8569370Z copying torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8570550Z copying torch/include/ATen/ops/cumsum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8576540Z copying torch/include/ATen/ops/instance_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8577400Z copying torch/include/ATen/ops/scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8584490Z copying torch/include/ATen/ops/_mixed_dtypes_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8585720Z copying torch/include/ATen/ops/index_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8587090Z copying torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8592690Z copying torch/include/ATen/ops/refine_names_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8594060Z copying torch/include/ATen/ops/_remove_batch_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8601090Z copying torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8601970Z copying torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8603190Z copying torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8610220Z copying torch/include/ATen/ops/acos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8618950Z copying torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8626160Z copying torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8627360Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8633540Z copying torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8634750Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8641800Z copying torch/include/ATen/ops/chunk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8642750Z copying torch/include/ATen/ops/_functional_assert_async.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8643960Z copying torch/include/ATen/ops/arange_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8649500Z copying torch/include/ATen/ops/log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8650640Z copying torch/include/ATen/ops/unsqueeze_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8657440Z copying torch/include/ATen/ops/triangular_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8658520Z copying torch/include/ATen/ops/view_as_real_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8659800Z copying torch/include/ATen/ops/native_layer_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8667560Z copying torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8668460Z copying torch/include/ATen/ops/renorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8674600Z copying torch/include/ATen/ops/_local_scalar_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8675910Z copying torch/include/ATen/ops/absolute.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8682220Z copying torch/include/ATen/ops/_assert_async_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8683060Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8684360Z copying torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8690400Z copying torch/include/ATen/ops/mT_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8691430Z copying torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8697670Z copying torch/include/ATen/ops/_amp_update_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8699150Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8700540Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8706390Z copying torch/include/ATen/ops/index_copy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8707300Z copying torch/include/ATen/ops/_test_ambiguous_defaults_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8713830Z copying torch/include/ATen/ops/mul_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8714930Z copying torch/include/ATen/ops/conv_transpose3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8721600Z copying torch/include/ATen/ops/rrelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8722290Z copying torch/include/ATen/ops/logical_or_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8723450Z copying torch/include/ATen/ops/unsqueeze_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8729710Z copying torch/include/ATen/ops/huber_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8730460Z copying torch/include/ATen/ops/renorm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8737710Z copying torch/include/ATen/ops/record_stream_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8738550Z copying torch/include/ATen/ops/promote_types_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8745620Z copying torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8746700Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8748060Z copying torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8753370Z copying torch/include/ATen/ops/linalg_vecdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8755250Z copying torch/include/ATen/ops/_sample_dirichlet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8761280Z copying torch/include/ATen/ops/rand_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8762190Z copying torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8763510Z copying torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8770060Z copying torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8771450Z copying torch/include/ATen/ops/special_bessel_y1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8772490Z copying torch/include/ATen/ops/masked_scatter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8780570Z copying torch/include/ATen/ops/to_sparse_csc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8782130Z copying torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8787530Z copying torch/include/ATen/ops/_cummin_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8789090Z copying torch/include/ATen/ops/replication_pad2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8795210Z copying torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8796690Z copying torch/include/ATen/ops/detach_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8803640Z copying torch/include/ATen/ops/cauchy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8804850Z copying torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8811540Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8812370Z copying torch/include/ATen/ops/row_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8813540Z copying torch/include/ATen/ops/add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8819410Z copying torch/include/ATen/ops/unfold_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8820300Z copying torch/include/ATen/ops/gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8827020Z copying torch/include/ATen/ops/linalg_svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8834670Z copying torch/include/ATen/ops/_fused_sdp_choice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8835960Z copying torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8837210Z copying torch/include/ATen/ops/log2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8843100Z copying torch/include/ATen/ops/selu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8843860Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8850620Z copying torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8851590Z copying torch/include/ATen/ops/_foreach_frac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8852780Z copying torch/include/ATen/ops/vander_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8860130Z copying torch/include/ATen/ops/segment_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8861040Z copying torch/include/ATen/ops/_conv_depthwise2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8868410Z copying torch/include/ATen/ops/linalg_diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8869190Z copying torch/include/ATen/ops/set_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8876700Z copying torch/include/ATen/ops/alpha_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8877840Z copying torch/include/ATen/ops/take_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8879070Z copying torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8884630Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8885320Z copying torch/include/ATen/ops/adjoint_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8892820Z copying torch/include/ATen/ops/scatter_reduce_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8893800Z copying torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8895050Z copying torch/include/ATen/ops/_cudnn_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8900290Z copying torch/include/ATen/ops/convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8902310Z copying torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8908590Z copying torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8909490Z copying torch/include/ATen/ops/multi_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8910640Z copying torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8916710Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8917700Z copying torch/include/ATen/ops/special_sinc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8920160Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8927190Z copying torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8928330Z copying torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8934790Z copying torch/include/ATen/ops/_foreach_maximum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8936010Z copying torch/include/ATen/ops/_sparse_csr_prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8936950Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8943590Z copying torch/include/ATen/ops/special_gammaln_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8951300Z copying torch/include/ATen/ops/embedding_bag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8952090Z copying torch/include/ATen/ops/silu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8958950Z copying torch/include/ATen/ops/greater_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8960000Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8961260Z copying torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8966760Z copying torch/include/ATen/ops/sort_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8967740Z copying torch/include/ATen/ops/fill_diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8974910Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8975990Z copying torch/include/ATen/ops/_to_sparse_csc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8977230Z copying torch/include/ATen/ops/zeros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8982730Z copying torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8983720Z copying torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8991810Z copying torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.8992640Z copying torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9005750Z copying torch/include/ATen/ops/fmod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9008660Z copying torch/include/ATen/ops/sigmoid_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9010770Z copying torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9015370Z copying torch/include/ATen/ops/_sobol_engine_draw_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9020180Z copying torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9021690Z copying torch/include/ATen/ops/tril_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9022920Z copying torch/include/ATen/ops/bitwise_left_shift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9024740Z copying torch/include/ATen/ops/arctanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9029820Z copying torch/include/ATen/ops/triu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9030720Z copying torch/include/ATen/ops/reciprocal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9034660Z copying torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9035440Z copying torch/include/ATen/ops/_nnz_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9042220Z copying torch/include/ATen/ops/unfold_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9043490Z copying torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9050570Z copying torch/include/ATen/ops/exp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9051010Z copying torch/include/ATen/ops/_lstm_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9053340Z copying torch/include/ATen/ops/hardsigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9059460Z copying torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9060450Z copying torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9067660Z copying torch/include/ATen/ops/_spsolve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9068390Z copying torch/include/ATen/ops/is_set_to_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9076200Z copying torch/include/ATen/ops/log10_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9077280Z copying torch/include/ATen/ops/flip.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9078790Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9084840Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9086480Z copying torch/include/ATen/ops/roll_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9092950Z copying torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9093790Z copying torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9095010Z copying torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9100490Z copying torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9101700Z copying torch/include/ATen/ops/linalg_lu_factor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9107780Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9115010Z copying torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9115290Z copying torch/include/ATen/ops/round_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9115780Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9124340Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9125240Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9132510Z copying torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9133340Z copying torch/include/ATen/ops/as_strided_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9134530Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9139600Z copying torch/include/ATen/ops/_standard_gamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9140870Z copying torch/include/ATen/ops/neg_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9146840Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9148680Z copying torch/include/ATen/ops/pinverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9149970Z copying torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9156760Z copying torch/include/ATen/ops/select_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9157800Z copying torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9164370Z copying torch/include/ATen/ops/conv1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9165450Z copying torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9172940Z copying torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9173920Z copying torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9175040Z copying torch/include/ATen/ops/arccosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9180280Z copying torch/include/ATen/ops/gelu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9182160Z copying torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9188460Z copying torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9189420Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9190650Z copying torch/include/ATen/ops/fft_fftfreq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9196330Z copying torch/include/ATen/ops/im2col_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9197100Z copying torch/include/ATen/ops/_sparse_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9202350Z copying torch/include/ATen/ops/narrow_copy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9205330Z copying torch/include/ATen/ops/not_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9209810Z copying torch/include/ATen/ops/prod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9210940Z copying torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9212000Z copying torch/include/ATen/ops/index_select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9218560Z copying torch/include/ATen/ops/special_ndtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9226360Z copying torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9227080Z copying torch/include/ATen/ops/mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9230760Z copying torch/include/ATen/ops/addcmul_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9235510Z copying torch/include/ATen/ops/special_hermite_polynomial_h_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9236870Z copying torch/include/ATen/ops/_convolution_mode_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9240170Z copying torch/include/ATen/ops/embedding_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9244840Z copying torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9248600Z copying torch/include/ATen/ops/mps_convolution_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9253470Z copying torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9254470Z copying torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9258020Z copying torch/include/ATen/ops/special_erfcx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9261810Z copying torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9265520Z copying torch/include/ATen/ops/ge_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9266390Z copying torch/include/ATen/ops/polar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9270860Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9274710Z copying torch/include/ATen/ops/copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9279190Z copying torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9284080Z copying torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9287550Z copying torch/include/ATen/ops/data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9292020Z copying torch/include/ATen/ops/adaptive_avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9292820Z copying torch/include/ATen/ops/randn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9296980Z copying torch/include/ATen/ops/nll_loss2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9301270Z copying torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9305490Z copying torch/include/ATen/ops/unbind_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9308820Z copying torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9309800Z copying torch/include/ATen/ops/eq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9315210Z copying torch/include/ATen/ops/set_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9317760Z copying torch/include/ATen/ops/_native_multi_head_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9323390Z copying torch/include/ATen/ops/_test_functorch_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9324570Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9326000Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9332870Z copying torch/include/ATen/ops/_cufft_clear_plan_cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9333680Z copying torch/include/ATen/ops/_fused_adagrad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9340210Z copying torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9371270Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9371600Z copying torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9371930Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9372160Z copying torch/include/ATen/ops/ger_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9372470Z copying torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9372940Z copying torch/include/ATen/ops/_values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9378490Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9379660Z copying torch/include/ATen/ops/set_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9387130Z copying torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9387980Z copying torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9394830Z copying torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9395720Z copying torch/include/ATen/ops/max_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9396940Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9406970Z copying torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9407860Z copying torch/include/ATen/ops/_linalg_det_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9411670Z copying torch/include/ATen/ops/triangular_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9414970Z copying torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9415860Z copying torch/include/ATen/ops/sparse_resize_and_clear_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9421470Z copying torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9423910Z copying torch/include/ATen/ops/lshift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9425560Z copying torch/include/ATen/ops/empty_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9430060Z copying torch/include/ATen/ops/cudnn_grid_sampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9432140Z copying torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9433250Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9441070Z copying torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9448140Z copying torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9449050Z copying torch/include/ATen/ops/logical_and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9450390Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9455740Z copying torch/include/ATen/ops/roll_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9456980Z copying torch/include/ATen/ops/remainder_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9463200Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9464350Z copying torch/include/ATen/ops/log10_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9466210Z copying torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9472660Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9473930Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9480580Z copying torch/include/ATen/ops/convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9482230Z copying torch/include/ATen/ops/kl_div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9488740Z copying torch/include/ATen/ops/roll_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9490010Z copying torch/include/ATen/ops/upsample_bicubic2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9491270Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9496390Z copying torch/include/ATen/ops/amax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9498370Z copying torch/include/ATen/ops/multinomial_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9503560Z copying torch/include/ATen/ops/special_log_ndtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9505050Z copying torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9506270Z copying torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9512760Z copying torch/include/ATen/ops/addmv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9513640Z copying torch/include/ATen/ops/clamp_max_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9520900Z copying torch/include/ATen/ops/_values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9521650Z copying torch/include/ATen/ops/clone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9529000Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9529960Z copying torch/include/ATen/ops/avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9531350Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9536200Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9537720Z copying torch/include/ATen/ops/reciprocal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9543910Z copying torch/include/ATen/ops/special_bessel_y0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9545170Z copying torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9546370Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9553340Z copying torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9554270Z copying torch/include/ATen/ops/logical_or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9561090Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9561870Z copying torch/include/ATen/ops/values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9568730Z copying torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9569690Z copying torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9570870Z copying torch/include/ATen/ops/swapdims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9576910Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9577790Z copying torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9584920Z copying torch/include/ATen/ops/cauchy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9585970Z copying torch/include/ATen/ops/reflection_pad1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9587370Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9594470Z copying torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9595310Z copying torch/include/ATen/ops/huber_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9614650Z copying torch/include/ATen/ops/permute_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9617990Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9622600Z copying torch/include/ATen/ops/sub_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9624100Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9625300Z copying torch/include/ATen/ops/mm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9626530Z copying torch/include/ATen/ops/sinh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9627770Z copying torch/include/ATen/ops/log2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9628920Z copying torch/include/ATen/ops/glu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9630330Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9631910Z copying torch/include/ATen/ops/linalg_solve_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9632840Z copying torch/include/ATen/ops/logsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9633980Z copying torch/include/ATen/ops/all.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9638260Z copying torch/include/ATen/ops/_foobar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9641940Z copying torch/include/ATen/ops/cudnn_grid_sampler_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9643040Z copying torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9644370Z copying torch/include/ATen/ops/log_normal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9647300Z copying torch/include/ATen/ops/quantized_lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9651620Z copying torch/include/ATen/ops/mvlgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9660050Z copying torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9660960Z copying torch/include/ATen/ops/glu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9668600Z copying torch/include/ATen/ops/mish_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9670060Z copying torch/include/ATen/ops/_rowwise_prune_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9671380Z copying torch/include/ATen/ops/_foreach_acos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9677230Z copying torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9678210Z copying torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9685460Z copying torch/include/ATen/ops/size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9686610Z copying torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9687710Z copying torch/include/ATen/ops/special_erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9693550Z copying torch/include/ATen/ops/amax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9694580Z copying torch/include/ATen/ops/_foreach_lerp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9701660Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9702520Z copying torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9703800Z copying torch/include/ATen/ops/nll_loss_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9709550Z copying torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9711350Z copying torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9718300Z copying torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9719190Z copying torch/include/ATen/ops/movedim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9720530Z copying torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9726540Z copying torch/include/ATen/ops/arccos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9727500Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9734350Z copying torch/include/ATen/ops/linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9735440Z copying torch/include/ATen/ops/bucketize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9736780Z copying torch/include/ATen/ops/asinh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9742710Z copying torch/include/ATen/ops/_dim_arange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9743530Z copying torch/include/ATen/ops/special_erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9750470Z copying torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9751720Z copying torch/include/ATen/ops/nll_loss_nd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9758070Z copying torch/include/ATen/ops/tan_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9758950Z copying torch/include/ATen/ops/_cdist_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9760150Z copying torch/include/ATen/ops/hardtanh_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9766480Z copying torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9767350Z copying torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9774130Z copying torch/include/ATen/ops/_prelu_kernel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9774990Z copying torch/include/ATen/ops/gather.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9781960Z copying torch/include/ATen/ops/_reshape_alias_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9783030Z copying torch/include/ATen/ops/logaddexp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9784370Z copying torch/include/ATen/ops/multi_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9788730Z copying torch/include/ATen/ops/_foreach_sin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9791490Z copying torch/include/ATen/ops/fft_rfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9796500Z copying torch/include/ATen/ops/slow_conv3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9797720Z copying torch/include/ATen/ops/leaky_relu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9800950Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9805580Z copying torch/include/ATen/ops/acosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9806950Z copying torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9810280Z copying torch/include/ATen/ops/addcdiv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9816160Z copying torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9818160Z copying torch/include/ATen/ops/to_sparse_csr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9823320Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9824790Z copying torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9826710Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9832620Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9834790Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9839580Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9841230Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9844830Z copying torch/include/ATen/ops/sym_constrain_range_for_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9848620Z copying torch/include/ATen/ops/data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9852100Z copying torch/include/ATen/ops/matrix_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9853250Z copying torch/include/ATen/ops/cudnn_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9857810Z copying torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9862140Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9863130Z copying torch/include/ATen/ops/gather_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9867050Z copying torch/include/ATen/ops/_cast_Long.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9875760Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9879410Z copying torch/include/ATen/ops/hardshrink_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9880600Z copying torch/include/ATen/ops/hstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9885510Z copying torch/include/ATen/ops/miopen_convolution_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9887490Z copying torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9893400Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9894450Z copying torch/include/ATen/ops/gelu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9896320Z copying torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9902840Z copying torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9903920Z copying torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9910430Z copying torch/include/ATen/ops/div_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9911500Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9912670Z copying torch/include/ATen/ops/deg2rad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9918970Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9920140Z copying torch/include/ATen/ops/native_group_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9926750Z copying torch/include/ATen/ops/triu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9927620Z copying torch/include/ATen/ops/rename_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9930640Z copying torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9936630Z copying torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9940170Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9946060Z copying torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9947510Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9953940Z copying torch/include/ATen/ops/tan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9954790Z copying torch/include/ATen/ops/softshrink_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9956130Z copying torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9963700Z copying torch/include/ATen/ops/linalg_lu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9964650Z copying torch/include/ATen/ops/_rowwise_prune.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9971150Z copying torch/include/ATen/ops/rshift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9972310Z copying torch/include/ATen/ops/miopen_depthwise_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9979140Z copying torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9980070Z copying torch/include/ATen/ops/arctan2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9981380Z copying torch/include/ATen/ops/dequantize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9986330Z copying torch/include/ATen/ops/_nested_tensor_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9988240Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9994020Z copying torch/include/ATen/ops/_local_scalar_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9994900Z copying torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:48.9996620Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0002820Z copying torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0003710Z copying torch/include/ATen/ops/unfold_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0010970Z copying torch/include/ATen/ops/fft_rfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0011790Z copying torch/include/ATen/ops/gru.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0018730Z copying torch/include/ATen/ops/sign_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0019490Z copying torch/include/ATen/ops/atleast_1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0020690Z copying torch/include/ATen/ops/masked_fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0026480Z copying torch/include/ATen/ops/fft_ifft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0027470Z copying torch/include/ATen/ops/isneginf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0034660Z copying torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0035420Z copying torch/include/ATen/ops/nanquantile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0036640Z copying torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0042570Z copying torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0043420Z copying torch/include/ATen/ops/zeros_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0050360Z copying torch/include/ATen/ops/_nested_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0051310Z copying torch/include/ATen/ops/nested_to_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0056990Z copying torch/include/ATen/ops/hardtanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0059490Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0061290Z copying torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0066350Z copying torch/include/ATen/ops/linalg_lu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0067330Z copying torch/include/ATen/ops/fft_irfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0073660Z copying torch/include/ATen/ops/miopen_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0074600Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0075890Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0080110Z copying torch/include/ATen/ops/scatter_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0089390Z copying torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0091810Z copying torch/include/ATen/ops/_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0092750Z copying torch/include/ATen/ops/adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0098080Z copying torch/include/ATen/ops/relu_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0100570Z copying torch/include/ATen/ops/embedding_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0106510Z copying torch/include/ATen/ops/special_psi_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0109910Z copying torch/include/ATen/ops/hardswish_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0115530Z copying torch/include/ATen/ops/_indices_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0118290Z copying torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0122980Z copying torch/include/ATen/ops/std_mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0123900Z copying torch/include/ATen/ops/softplus_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0127610Z copying torch/include/ATen/ops/special_expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0131940Z copying torch/include/ATen/ops/elu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0136360Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0137470Z copying torch/include/ATen/ops/_foreach_trunc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0141510Z copying torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0145380Z copying torch/include/ATen/ops/bitwise_not.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0146450Z copying torch/include/ATen/ops/_foreach_mul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0149790Z copying torch/include/ATen/ops/bartlett_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0154150Z copying torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0158300Z copying torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0162390Z copying torch/include/ATen/ops/log_sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0163430Z copying torch/include/ATen/ops/minimum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0167740Z copying torch/include/ATen/ops/ccol_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0171070Z copying torch/include/ATen/ops/scatter_add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0175600Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0176680Z copying torch/include/ATen/ops/std_mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0181260Z copying torch/include/ATen/ops/reciprocal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0183710Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0188550Z copying torch/include/ATen/ops/cdist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0189690Z copying torch/include/ATen/ops/sparse_sampled_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0196170Z copying torch/include/ATen/ops/_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0197340Z copying torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0203520Z copying torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0204390Z copying torch/include/ATen/ops/randperm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0206410Z copying torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0212780Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0213730Z copying torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0219670Z copying torch/include/ATen/ops/_nested_sum_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0221520Z copying torch/include/ATen/ops/i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0227330Z copying torch/include/ATen/ops/_foreach_sinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0228310Z copying torch/include/ATen/ops/native_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0230740Z copying torch/include/ATen/ops/_test_functorch_fallback_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0235450Z copying torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0236260Z copying torch/include/ATen/ops/flipud_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0240550Z copying torch/include/ATen/ops/_ctc_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0245060Z copying torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0249970Z copying torch/include/ATen/ops/_int_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0251980Z copying torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0253240Z copying torch/include/ATen/ops/erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0259130Z copying torch/include/ATen/ops/igammac_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0259960Z copying torch/include/ATen/ops/linalg_qr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0266190Z copying torch/include/ATen/ops/_foreach_erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0267180Z copying torch/include/ATen/ops/max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0273700Z copying torch/include/ATen/ops/_cast_Char_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0281720Z copying torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0282670Z copying torch/include/ATen/ops/diag_embed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0283840Z copying torch/include/ATen/ops/_spdiags_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0289290Z copying torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0290700Z copying torch/include/ATen/ops/clone_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0294970Z copying torch/include/ATen/ops/cov_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0300060Z copying torch/include/ATen/ops/q_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0304290Z copying torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0307920Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0312020Z copying torch/include/ATen/ops/var.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0312980Z copying torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0314500Z copying torch/include/ATen/ops/bitwise_not_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0321440Z copying torch/include/ATen/ops/index_put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0322720Z copying torch/include/ATen/ops/dequantize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0329210Z copying torch/include/ATen/ops/convolution_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0330920Z copying torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0336410Z copying torch/include/ATen/ops/grid_sampler_2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0337810Z copying torch/include/ATen/ops/special_i0e.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0344010Z copying torch/include/ATen/ops/special_log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0345160Z copying torch/include/ATen/ops/logaddexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0347340Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0351180Z copying torch/include/ATen/ops/arange_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0352560Z copying torch/include/ATen/ops/logaddexp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0359540Z copying torch/include/ATen/ops/upsample_nearest3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0360810Z copying torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0366500Z copying torch/include/ATen/ops/index_fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0367640Z copying torch/include/ATen/ops/remainder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0369280Z copying torch/include/ATen/ops/batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0375710Z copying torch/include/ATen/ops/repeat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0377610Z copying torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0384400Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0386020Z copying torch/include/ATen/ops/avg_pool3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0391620Z copying torch/include/ATen/ops/_foreach_lerp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0392710Z copying torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0394470Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0399010Z copying torch/include/ATen/ops/indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0399830Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0406070Z copying torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0407890Z copying torch/include/ATen/ops/_cudnn_rnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0413810Z copying torch/include/ATen/ops/amax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0414770Z copying torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0415930Z copying torch/include/ATen/ops/nll_loss2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0422660Z copying torch/include/ATen/ops/linalg_matrix_rank_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0423840Z copying torch/include/ATen/ops/_masked_scale_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0429990Z copying torch/include/ATen/ops/_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0431010Z copying torch/include/ATen/ops/histc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0437710Z copying torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0439450Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0445130Z copying torch/include/ATen/ops/tanh_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0446080Z copying torch/include/ATen/ops/fft_hfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0453580Z copying torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0454370Z copying torch/include/ATen/ops/to_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0463040Z copying torch/include/ATen/ops/fft_fft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0463650Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0464310Z copying torch/include/ATen/ops/requires_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0469110Z copying torch/include/ATen/ops/gradient.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0470120Z copying torch/include/ATen/ops/fft_ihfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0477850Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0478700Z copying torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0481580Z copying torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0484900Z copying torch/include/ATen/ops/view_as_real_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0486130Z copying torch/include/ATen/ops/copysign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0490640Z copying torch/include/ATen/ops/values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0494280Z copying torch/include/ATen/ops/_prelu_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0498760Z copying torch/include/ATen/ops/fractional_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0499820Z copying torch/include/ATen/ops/upsample_linear1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0503800Z copying torch/include/ATen/ops/abs_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0506990Z copying torch/include/ATen/ops/_add_batch_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0513890Z copying torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0520210Z copying torch/include/ATen/ops/mH_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0521290Z copying torch/include/ATen/ops/lift_fresh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0522720Z copying torch/include/ATen/ops/ne_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0529750Z copying torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0530830Z copying torch/include/ATen/ops/multinomial_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0536880Z copying torch/include/ATen/ops/special_modified_bessel_k0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0538320Z copying torch/include/ATen/ops/atan2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0543950Z copying torch/include/ATen/ops/_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0545200Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0546570Z copying torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0552820Z copying torch/include/ATen/ops/unsafe_chunk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0553720Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0560030Z copying torch/include/ATen/ops/native_channel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0560980Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0567720Z copying torch/include/ATen/ops/addmv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0568430Z copying torch/include/ATen/ops/rshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0569720Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0575470Z copying torch/include/ATen/ops/special_erfinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0576460Z copying torch/include/ATen/ops/_fused_sdp_choice_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0582940Z copying torch/include/ATen/ops/_copy_from_and_resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0584220Z copying torch/include/ATen/ops/_sparse_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0590990Z copying torch/include/ATen/ops/select_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0592040Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0593260Z copying torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0599480Z copying torch/include/ATen/ops/huber_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0600220Z copying torch/include/ATen/ops/count_nonzero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0607730Z copying torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0615550Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0616680Z copying torch/include/ATen/ops/true_divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0617970Z copying torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0622840Z copying torch/include/ATen/ops/upsample_bilinear2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0623850Z copying torch/include/ATen/ops/ccol_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0629350Z copying torch/include/ATen/ops/addcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0631360Z copying torch/include/ATen/ops/_fused_adagrad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0633120Z copying torch/include/ATen/ops/erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0639840Z copying torch/include/ATen/ops/slow_conv_transpose3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0640720Z copying torch/include/ATen/ops/resolve_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0646480Z copying torch/include/ATen/ops/quantized_gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0648360Z copying torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0654080Z copying torch/include/ATen/ops/_foreach_erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0655110Z copying torch/include/ATen/ops/glu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0656350Z copying torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0662050Z copying torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0663240Z copying torch/include/ATen/ops/cosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0670210Z copying torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0671600Z copying torch/include/ATen/ops/nll_loss_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0677720Z copying torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0679240Z copying torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0680360Z copying torch/include/ATen/ops/addcmul_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0684840Z copying torch/include/ATen/ops/avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0686990Z copying torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0693460Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0694260Z copying torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0701260Z copying torch/include/ATen/ops/fmod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0702610Z copying torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0703800Z copying torch/include/ATen/ops/inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0708910Z copying torch/include/ATen/ops/_foreach_round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0710520Z copying torch/include/ATen/ops/to_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0717030Z copying torch/include/ATen/ops/rshift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0718200Z copying torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0719430Z copying torch/include/ATen/ops/item.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0723390Z copying torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0728930Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0736790Z copying torch/include/ATen/ops/hypot_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0738120Z copying torch/include/ATen/ops/_foreach_zero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0740930Z copying torch/include/ATen/ops/zeros_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0745310Z copying torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0748540Z copying torch/include/ATen/ops/index_select_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0749550Z copying torch/include/ATen/ops/to_sparse_bsr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0755480Z copying torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0757350Z copying torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0763870Z copying torch/include/ATen/ops/nll_loss_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0765010Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0766930Z copying torch/include/ATen/ops/linalg_eig_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0773470Z copying torch/include/ATen/ops/sgn_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0777150Z copying torch/include/ATen/ops/replication_pad1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0782080Z copying torch/include/ATen/ops/linalg_eigh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0783980Z copying torch/include/ATen/ops/linalg_matrix_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0789530Z copying torch/include/ATen/ops/lu_unpack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0790820Z copying torch/include/ATen/ops/fmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0792430Z copying torch/include/ATen/ops/special_modified_bessel_k0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0798860Z copying torch/include/ATen/ops/linalg_vector_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0800160Z copying torch/include/ATen/ops/native_layer_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0807840Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0808950Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0814980Z copying torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0816090Z copying torch/include/ATen/ops/quantized_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0817370Z copying torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0823250Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0824250Z copying torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0830460Z copying torch/include/ATen/ops/matrix_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0831860Z copying torch/include/ATen/ops/sgn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0838860Z copying torch/include/ATen/ops/ne_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0839840Z copying torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0841050Z copying torch/include/ATen/ops/split_with_sizes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0846360Z copying torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0847720Z copying torch/include/ATen/ops/conj_physical_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0849410Z copying torch/include/ATen/ops/silu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0856250Z copying torch/include/ATen/ops/linalg_matrix_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0857060Z copying torch/include/ATen/ops/unsafe_split_with_sizes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0863460Z copying torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0864570Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0865980Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0872160Z copying torch/include/ATen/ops/frac_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0873110Z copying torch/include/ATen/ops/less_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0879630Z copying torch/include/ATen/ops/rrelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0881110Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0887330Z copying torch/include/ATen/ops/rnn_tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0888250Z copying torch/include/ATen/ops/upsample_nearest1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0889550Z copying torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0895430Z copying torch/include/ATen/ops/mean_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0896270Z copying torch/include/ATen/ops/new_empty_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0903300Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0904470Z copying torch/include/ATen/ops/pow_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0910980Z copying torch/include/ATen/ops/channel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0912180Z copying torch/include/ATen/ops/log_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0913550Z copying torch/include/ATen/ops/unique_consecutive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0919410Z copying torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0920540Z copying torch/include/ATen/ops/alpha_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0927760Z copying torch/include/ATen/ops/_foreach_abs_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0928820Z copying torch/include/ATen/ops/replication_pad2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0935490Z copying torch/include/ATen/ops/kaiser_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0936560Z copying torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0943240Z copying torch/include/ATen/ops/nansum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0950740Z copying torch/include/ATen/ops/threshold_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0951740Z copying torch/include/ATen/ops/soft_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0958410Z copying torch/include/ATen/ops/det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0959320Z copying torch/include/ATen/ops/_foreach_sin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0960490Z copying torch/include/ATen/ops/addr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0966340Z copying torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0967270Z copying torch/include/ATen/ops/split_with_sizes_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0974290Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0975100Z copying torch/include/ATen/ops/log_sigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0976160Z copying torch/include/ATen/ops/_foreach_div_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0979160Z copying torch/include/ATen/ops/prelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0985070Z copying torch/include/ATen/ops/maximum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0989250Z copying torch/include/ATen/ops/grid_sampler_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0993160Z copying torch/include/ATen/ops/_cslt_compress_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0994080Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.0998500Z copying torch/include/ATen/ops/_foreach_ceil_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1001700Z copying torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1005920Z copying torch/include/ATen/ops/fmod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1006990Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1011360Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1014850Z copying torch/include/ATen/ops/_unsafe_index_put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1019420Z copying torch/include/ATen/ops/logical_not_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1020450Z copying torch/include/ATen/ops/crow_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1024620Z copying torch/include/ATen/ops/logspace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1028650Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1032260Z copying torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1033080Z copying torch/include/ATen/ops/_fused_sgd_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1037860Z copying torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1041320Z copying torch/include/ATen/ops/lift_fresh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1045840Z copying torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1047180Z copying torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1050870Z copying torch/include/ATen/ops/sym_stride_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1055390Z copying torch/include/ATen/ops/isreal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1058280Z copying torch/include/ATen/ops/unbind_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1059820Z copying torch/include/ATen/ops/_spdiags_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1064980Z copying torch/include/ATen/ops/_pad_enum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1066840Z copying torch/include/ATen/ops/equal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1073240Z copying torch/include/ATen/ops/_autocast_to_reduced_precision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1074040Z copying torch/include/ATen/ops/mse_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1076260Z copying torch/include/ATen/ops/_addmm_activation_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1082470Z copying torch/include/ATen/ops/pin_memory_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1083170Z copying torch/include/ATen/ops/max_unpool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1089370Z copying torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1090450Z copying torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1096820Z copying torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1097580Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1098800Z copying torch/include/ATen/ops/einsum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1105790Z copying torch/include/ATen/ops/_ctc_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1113130Z copying torch/include/ATen/ops/xlogy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1114160Z copying torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1120680Z copying torch/include/ATen/ops/is_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1121670Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1122990Z copying torch/include/ATen/ops/miopen_convolution_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1130040Z copying torch/include/ATen/ops/permute_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1130760Z copying torch/include/ATen/ops/multiply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1137820Z copying torch/include/ATen/ops/batch_norm_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1139120Z copying torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1146370Z copying torch/include/ATen/ops/silu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1148190Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1151170Z copying torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1152970Z copying torch/include/ATen/ops/trapezoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1158710Z copying torch/include/ATen/ops/prelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1160120Z copying torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1166030Z copying torch/include/ATen/ops/_nested_tensor_strides_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1167470Z copying torch/include/ATen/ops/q_zero_point.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1173090Z copying torch/include/ATen/ops/_resize_output_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1174470Z copying torch/include/ATen/ops/isfinite_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1175750Z copying torch/include/ATen/ops/masked_fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1182250Z copying torch/include/ATen/ops/sparse_resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1183060Z copying torch/include/ATen/ops/unfold_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1189740Z copying torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1191080Z copying torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1197200Z copying torch/include/ATen/ops/addcdiv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1198170Z copying torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1199360Z copying torch/include/ATen/ops/_sparse_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1205500Z copying torch/include/ATen/ops/mkldnn_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1206620Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1213350Z copying torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1214340Z copying torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1221190Z copying torch/include/ATen/ops/_nested_from_padded_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1222180Z copying torch/include/ATen/ops/isin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1223530Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1228720Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1230930Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1237240Z copying torch/include/ATen/ops/linalg_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1238140Z copying torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1239320Z copying torch/include/ATen/ops/special_bessel_y1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1246130Z copying torch/include/ATen/ops/reciprocal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1247090Z copying torch/include/ATen/ops/tril_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1254060Z copying torch/include/ATen/ops/isposinf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1254810Z copying torch/include/ATen/ops/_nested_get_max_seqlen_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1262060Z copying torch/include/ATen/ops/gcd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1262920Z copying torch/include/ATen/ops/_convolution_double_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1264280Z copying torch/include/ATen/ops/softshrink_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1269420Z copying torch/include/ATen/ops/_sparse_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1270710Z copying torch/include/ATen/ops/_cudnn_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1278370Z copying torch/include/ATen/ops/_foreach_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1279780Z copying torch/include/ATen/ops/leaky_relu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1286490Z copying torch/include/ATen/ops/nested_to_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1287420Z copying torch/include/ATen/ops/_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1293910Z copying torch/include/ATen/ops/round_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1294690Z copying torch/include/ATen/ops/resolve_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1296120Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1303160Z copying torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1303820Z copying torch/include/ATen/ops/ones_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1310400Z copying torch/include/ATen/ops/_foreach_clamp_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1311160Z copying torch/include/ATen/ops/log_sigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1312390Z copying torch/include/ATen/ops/_slow_conv2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1318910Z copying torch/include/ATen/ops/neg_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1319940Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1327510Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1328440Z copying torch/include/ATen/ops/replication_pad2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1334950Z copying torch/include/ATen/ops/lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1335950Z copying torch/include/ATen/ops/exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1337160Z copying torch/include/ATen/ops/is_set_to_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1342680Z copying torch/include/ATen/ops/logsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1344430Z copying torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1352040Z copying torch/include/ATen/ops/_pad_packed_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1352940Z copying torch/include/ATen/ops/round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1359650Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1361030Z copying torch/include/ATen/ops/roll_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1368040Z copying torch/include/ATen/ops/i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1368780Z copying torch/include/ATen/ops/alias_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1369950Z copying torch/include/ATen/ops/mish_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1375740Z copying torch/include/ATen/ops/replication_pad2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1376500Z copying torch/include/ATen/ops/addcmul_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1383460Z copying torch/include/ATen/ops/std_mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1384510Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1392640Z copying torch/include/ATen/ops/prod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1393600Z copying torch/include/ATen/ops/pow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1394800Z copying torch/include/ATen/ops/resize_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1400390Z copying torch/include/ATen/ops/gcd_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1401830Z copying torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1408360Z copying torch/include/ATen/ops/_to_sparse_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1409280Z copying torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1410400Z copying torch/include/ATen/ops/_foreach_log10.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1416560Z copying torch/include/ATen/ops/select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1417550Z copying torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1424530Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1431550Z copying torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1432310Z copying torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1433040Z copying torch/include/ATen/ops/scalar_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1433940Z copying torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1440620Z copying torch/include/ATen/ops/nonzero_static.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1441520Z copying torch/include/ATen/ops/im2col_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1449910Z copying torch/include/ATen/ops/special_spherical_bessel_j0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1458280Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1463920Z copying torch/include/ATen/ops/im2col_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1465370Z copying torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1466670Z copying torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1473880Z copying torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1474840Z copying torch/include/ATen/ops/copysign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1481320Z copying torch/include/ATen/ops/_reshape_from_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1482390Z copying torch/include/ATen/ops/_fw_primal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1484980Z copying torch/include/ATen/ops/qscheme_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1488590Z copying torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1489560Z copying torch/include/ATen/ops/_print.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1494850Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1496830Z copying torch/include/ATen/ops/set_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1502790Z copying torch/include/ATen/ops/is_coalesced_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1503600Z copying torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1506840Z copying torch/include/ATen/ops/_cudnn_init_dropout_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1512260Z copying torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1515480Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1519630Z copying torch/include/ATen/ops/polygamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1520880Z copying torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1524240Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1528990Z copying torch/include/ATen/ops/upsample_bilinear2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1532950Z copying torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1533770Z copying torch/include/ATen/ops/swapaxes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1539160Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1540710Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1546470Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1547770Z copying torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1549240Z copying torch/include/ATen/ops/quantile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1555850Z copying torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1557670Z copying torch/include/ATen/ops/_linalg_solve_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1563340Z copying torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1566310Z copying torch/include/ATen/ops/convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1572470Z copying torch/include/ATen/ops/masked_scatter_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1573170Z copying torch/include/ATen/ops/_nnpack_available.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1580330Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1581580Z copying torch/include/ATen/ops/new_zeros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1588010Z copying torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1588920Z copying torch/include/ATen/ops/replication_pad1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1590170Z copying torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1596960Z copying torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1597890Z copying torch/include/ATen/ops/uniform_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1604610Z copying torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1606020Z copying torch/include/ATen/ops/_log_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1612340Z copying torch/include/ATen/ops/_foreach_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1613330Z copying torch/include/ATen/ops/mT_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1614540Z copying torch/include/ATen/ops/nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1620360Z copying torch/include/ATen/ops/_pack_padded_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1621200Z copying torch/include/ATen/ops/_foreach_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1627710Z copying torch/include/ATen/ops/linalg_multi_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1628860Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1630220Z copying torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1635090Z copying torch/include/ATen/ops/arange_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1636730Z copying torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1643090Z copying torch/include/ATen/ops/ne.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1644160Z copying torch/include/ATen/ops/threshold_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1651240Z copying torch/include/ATen/ops/rrelu_with_noise_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1652180Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1659940Z copying torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1660890Z copying torch/include/ATen/ops/lu_unpack_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1666860Z copying torch/include/ATen/ops/special_erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1668150Z copying torch/include/ATen/ops/_nested_sum_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1674860Z copying torch/include/ATen/ops/quantized_max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1675870Z copying torch/include/ATen/ops/linalg_lstsq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1677130Z copying torch/include/ATen/ops/ormqr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1683390Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1684240Z copying torch/include/ATen/ops/is_nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1691510Z copying torch/include/ATen/ops/glu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1692430Z copying torch/include/ATen/ops/_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1698920Z copying torch/include/ATen/ops/bitwise_xor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1699930Z copying torch/include/ATen/ops/sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1701080Z copying torch/include/ATen/ops/_foreach_cos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1706560Z copying torch/include/ATen/ops/randn_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1707530Z copying torch/include/ATen/ops/_slow_conv2d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1713870Z copying torch/include/ATen/ops/subtract_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1715020Z copying torch/include/ATen/ops/sparse_compressed_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1716240Z copying torch/include/ATen/ops/_foreach_ceil_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1723190Z copying torch/include/ATen/ops/div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1724200Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1731390Z copying torch/include/ATen/ops/_foreach_div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1732420Z copying torch/include/ATen/ops/logical_or_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1739200Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1740010Z copying torch/include/ATen/ops/mul_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1741350Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1746790Z copying torch/include/ATen/ops/swapaxes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1748030Z copying torch/include/ATen/ops/divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1755040Z copying torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1755780Z copying torch/include/ATen/ops/sub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1757100Z copying torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1761920Z copying torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1769890Z copying torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1779430Z copying torch/include/ATen/ops/rrelu_with_noise_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1794790Z copying torch/include/ATen/ops/_fft_r2c_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1797890Z copying torch/include/ATen/ops/special_entr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1798950Z copying torch/include/ATen/ops/conv1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1803020Z copying torch/include/ATen/ops/view_as_real_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1804180Z copying torch/include/ATen/ops/linalg_svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1805330Z copying torch/include/ATen/ops/native_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1806570Z copying torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1807790Z copying torch/include/ATen/ops/constant_pad_nd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1809640Z copying torch/include/ATen/ops/index_copy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1810970Z copying torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1812680Z copying torch/include/ATen/ops/quantized_lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1819720Z copying torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1820680Z copying torch/include/ATen/ops/linalg_lu_factor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1828200Z copying torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1829090Z copying torch/include/ATen/ops/is_leaf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1836140Z copying torch/include/ATen/ops/binomial_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1837350Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1838630Z copying torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1844030Z copying torch/include/ATen/ops/log2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1844930Z copying torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1851760Z copying torch/include/ATen/ops/resolve_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1852660Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1853760Z copying torch/include/ATen/ops/row_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1859210Z copying torch/include/ATen/ops/_foreach_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1860380Z copying torch/include/ATen/ops/layer_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1867260Z copying torch/include/ATen/ops/sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1868290Z copying torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1875120Z copying torch/include/ATen/ops/_sparse_mask_projection_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1876420Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1877700Z copying torch/include/ATen/ops/special_zeta_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1882210Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1884060Z copying torch/include/ATen/ops/special_log_ndtr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1889660Z copying torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1890780Z copying torch/include/ATen/ops/copy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1893780Z copying torch/include/ATen/ops/linalg_lu_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1899950Z copying torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1900840Z copying torch/include/ATen/ops/linalg_eigvalsh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1907180Z copying torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1908330Z copying torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1914930Z copying torch/include/ATen/ops/argmin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1916140Z copying torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1917350Z copying torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1923380Z copying torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1924340Z copying torch/include/ATen/ops/special_zeta_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1932680Z copying torch/include/ATen/ops/is_complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1933760Z copying torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1940750Z copying torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1941680Z copying torch/include/ATen/ops/add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1942930Z copying torch/include/ATen/ops/diagonal_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1948050Z copying torch/include/ATen/ops/_linalg_check_errors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1948840Z copying torch/include/ATen/ops/angle_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1950350Z copying torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1956860Z copying torch/include/ATen/ops/_nested_get_min_seqlen_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1964460Z copying torch/include/ATen/ops/_nested_get_values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1965550Z copying torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1968550Z copying torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1972920Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1978750Z copying torch/include/ATen/ops/sort_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1979840Z copying torch/include/ATen/ops/_lazy_clone_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1986610Z copying torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1987420Z copying torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1994420Z copying torch/include/ATen/ops/thnn_conv2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1995360Z copying torch/include/ATen/ops/baddbmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.1996700Z copying torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2001780Z copying torch/include/ATen/ops/embedding_renorm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2003880Z copying torch/include/ATen/ops/avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2009210Z copying torch/include/ATen/ops/multilabel_margin_loss_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2010820Z copying torch/include/ATen/ops/reciprocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2013760Z copying torch/include/ATen/ops/contiguous_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2018870Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2019880Z copying torch/include/ATen/ops/sparse_mask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2026430Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2028540Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2034210Z copying torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2035160Z copying torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2036310Z copying torch/include/ATen/ops/tril_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2041820Z copying torch/include/ATen/ops/logical_not_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2042650Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2049880Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2051230Z copying torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2057470Z copying torch/include/ATen/ops/arcsin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2058590Z copying torch/include/ATen/ops/qr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2059860Z copying torch/include/ATen/ops/view_as_real_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2065760Z copying torch/include/ATen/ops/copy_sparse_to_sparse_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2066540Z copying torch/include/ATen/ops/softshrink_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2073660Z copying torch/include/ATen/ops/frac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2074870Z copying torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2081450Z copying torch/include/ATen/ops/miopen_rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2082310Z copying torch/include/ATen/ops/_native_multi_head_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2083480Z copying torch/include/ATen/ops/_segment_reduce_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2089110Z copying torch/include/ATen/ops/_linalg_eigvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2090000Z copying torch/include/ATen/ops/_test_string_default_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2096680Z copying torch/include/ATen/ops/sparse_csr_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2098080Z copying torch/include/ATen/ops/logaddexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2104400Z copying torch/include/ATen/ops/grid_sampler_2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2106470Z copying torch/include/ATen/ops/pairwise_distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2184940Z copying torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2185820Z copying torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2186980Z copying torch/include/ATen/ops/_cast_Long_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2188180Z copying torch/include/ATen/ops/nll_loss2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2189420Z copying torch/include/ATen/ops/fft_ifftshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2190770Z copying torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2192000Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2193140Z copying torch/include/ATen/ops/cos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2327830Z copying torch/include/ATen/ops/adaptive_max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2328710Z copying torch/include/ATen/ops/_mkldnn_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2329990Z copying torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2331410Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2332580Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2333730Z copying torch/include/ATen/ops/cudnn_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2335010Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2336150Z copying torch/include/ATen/ops/atleast_2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2337380Z copying torch/include/ATen/ops/choose_qparams_optimized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2338530Z copying torch/include/ATen/ops/_linalg_slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2339730Z copying torch/include/ATen/ops/_slow_conv2d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2341050Z copying torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2342190Z copying torch/include/ATen/ops/special_bessel_y1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2358810Z copying torch/include/ATen/ops/slice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2359700Z copying torch/include/ATen/ops/_nested_tensor_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2360890Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2362040Z copying torch/include/ATen/ops/_spdiags.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2363220Z copying torch/include/ATen/ops/linalg_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2364550Z copying torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2365720Z copying torch/include/ATen/ops/_neg_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2366900Z copying torch/include/ATen/ops/unsafe_split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2368040Z copying torch/include/ATen/ops/sign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2369350Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2370620Z copying torch/include/ATen/ops/logaddexp2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2371780Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2372920Z copying torch/include/ATen/ops/div_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2374170Z copying torch/include/ATen/ops/trace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2454160Z copying torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2455020Z copying torch/include/ATen/ops/fft_hfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2456340Z copying torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2457750Z copying torch/include/ATen/ops/linear_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2458760Z copying torch/include/ATen/ops/nll_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2460070Z copying torch/include/ATen/ops/_nested_tensor_strides_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2461250Z copying torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2462430Z copying torch/include/ATen/ops/fft_ifft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2463710Z copying torch/include/ATen/ops/value_selecting_reduction_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2464910Z copying torch/include/ATen/ops/triplet_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2466070Z copying torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2467380Z copying torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2468630Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2469960Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2471050Z copying torch/include/ATen/ops/col2im_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2482170Z copying torch/include/ATen/ops/_fft_c2r_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2483040Z copying torch/include/ATen/ops/arcsinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2484250Z copying torch/include/ATen/ops/type_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2485600Z copying torch/include/ATen/ops/linalg_eigvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2487150Z copying torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2488440Z copying torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2489570Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2490770Z copying torch/include/ATen/ops/_safe_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2492060Z copying torch/include/ATen/ops/_copy_from_and_resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2493260Z copying torch/include/ATen/ops/linalg_ldl_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2494480Z copying torch/include/ATen/ops/logdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2495750Z copying torch/include/ATen/ops/align_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2497080Z copying torch/include/ATen/ops/tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2498450Z copying torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2499840Z copying torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2518740Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2519700Z copying torch/include/ATen/ops/tanh_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2520820Z copying torch/include/ATen/ops/_unsafe_masked_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2522010Z copying torch/include/ATen/ops/trunc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2523180Z copying torch/include/ATen/ops/_cholesky_solve_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2524420Z copying torch/include/ATen/ops/special_laguerre_polynomial_l.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2525560Z copying torch/include/ATen/ops/mv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2526720Z copying torch/include/ATen/ops/logit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2527850Z copying torch/include/ATen/ops/min_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2571820Z copying torch/include/ATen/ops/isnan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2572740Z copying torch/include/ATen/ops/_unique2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2574090Z copying torch/include/ATen/ops/_mkldnn_reshape_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2575290Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2576430Z copying torch/include/ATen/ops/_pack_padded_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2577740Z copying torch/include/ATen/ops/upsample_trilinear3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2579000Z copying torch/include/ATen/ops/normal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2580280Z copying torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2581490Z copying torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2582610Z copying torch/include/ATen/ops/smm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2583860Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2585010Z copying torch/include/ATen/ops/less_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2586160Z copying torch/include/ATen/ops/new_ones_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2587400Z copying torch/include/ATen/ops/nonzero_static_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2588610Z copying torch/include/ATen/ops/sinc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2590060Z copying torch/include/ATen/ops/binary_cross_entropy_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2591100Z copying torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2592260Z copying torch/include/ATen/ops/expand_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2593400Z copying torch/include/ATen/ops/complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2594620Z copying torch/include/ATen/ops/_weight_norm_interface_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2595950Z copying torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2597260Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2598520Z copying torch/include/ATen/ops/isin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2599700Z copying torch/include/ATen/ops/special_i1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2600900Z copying torch/include/ATen/ops/pinverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2602130Z copying torch/include/ATen/ops/_foreach_atan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2603280Z copying torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2604620Z copying torch/include/ATen/ops/lstm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2605820Z copying torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2606970Z copying torch/include/ATen/ops/xlogy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2608140Z copying torch/include/ATen/ops/expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2609320Z copying torch/include/ATen/ops/dist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2610660Z copying torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2611950Z copying torch/include/ATen/ops/maximum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2613060Z copying torch/include/ATen/ops/remainder_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2614510Z copying torch/include/ATen/ops/ones.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2615730Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2616780Z copying torch/include/ATen/ops/_foreach_maximum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2618330Z copying torch/include/ATen/ops/slow_conv3d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2619270Z copying torch/include/ATen/ops/aminmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2620540Z copying torch/include/ATen/ops/special_modified_bessel_i1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2621880Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2622980Z copying torch/include/ATen/ops/mse_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2624260Z copying torch/include/ATen/ops/_cummax_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2625390Z copying torch/include/ATen/ops/pad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2626600Z copying torch/include/ATen/ops/linalg_cross_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2627770Z copying torch/include/ATen/ops/_resize_output_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2628930Z copying torch/include/ATen/ops/gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2630230Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2631390Z copying torch/include/ATen/ops/std_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2632670Z copying torch/include/ATen/ops/round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2634060Z copying torch/include/ATen/ops/_to_cpu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2635040Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2636190Z copying torch/include/ATen/ops/fft_irfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2637350Z copying torch/include/ATen/ops/block_diag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2638530Z copying torch/include/ATen/ops/_nested_get_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2639930Z copying torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2641020Z copying torch/include/ATen/ops/atanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2642340Z copying torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2643480Z copying torch/include/ATen/ops/to_sparse_bsc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2644830Z copying torch/include/ATen/ops/exponential_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2646000Z copying torch/include/ATen/ops/miopen_depthwise_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2647250Z copying torch/include/ATen/ops/gather_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2648600Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2649840Z copying torch/include/ATen/ops/geqrf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2728590Z copying torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2729600Z copying torch/include/ATen/ops/bitwise_xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2730800Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2732150Z copying torch/include/ATen/ops/_fused_rms_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2733440Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2734640Z copying torch/include/ATen/ops/_aminmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2735790Z copying torch/include/ATen/ops/native_layer_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2736990Z copying torch/include/ATen/ops/sym_constrain_range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2738260Z copying torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2739390Z copying torch/include/ATen/ops/frexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2740650Z copying torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2742010Z copying torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2743120Z copying torch/include/ATen/ops/linalg_vander_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2744440Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2745830Z copying torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2747050Z copying torch/include/ATen/ops/split_with_sizes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2748290Z copying torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2749400Z copying torch/include/ATen/ops/special_i1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2750600Z copying torch/include/ATen/ops/sum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2837280Z copying torch/include/ATen/ops/vdot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2838380Z copying torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2838720Z copying torch/include/ATen/ops/pinverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2840060Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2841440Z copying torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2842720Z copying torch/include/ATen/ops/add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2844000Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2845180Z copying torch/include/ATen/ops/_cummax_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2846520Z copying torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2847870Z copying torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2849120Z copying torch/include/ATen/ops/eq_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2856520Z copying torch/include/ATen/ops/_batch_norm_impl_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2856890Z copying torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2857160Z copying torch/include/ATen/ops/cholesky_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2857470Z copying torch/include/ATen/ops/upsample_nearest1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2857940Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2858180Z copying torch/include/ATen/ops/sort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2858750Z copying torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2860240Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2861480Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2862770Z copying torch/include/ATen/ops/upsample_nearest3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2864160Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2865400Z copying torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2866960Z copying torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2868070Z copying torch/include/ATen/ops/max_pool1d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2869170Z copying torch/include/ATen/ops/special_erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2870520Z copying torch/include/ATen/ops/avg_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2871800Z copying torch/include/ATen/ops/upsample_nearest1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2872970Z copying torch/include/ATen/ops/sin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2874230Z copying torch/include/ATen/ops/sum_to_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2875480Z copying torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2876760Z copying torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2878050Z copying torch/include/ATen/ops/special_hermite_polynomial_he_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2879080Z copying torch/include/ATen/ops/gradient_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2880510Z copying torch/include/ATen/ops/_cslt_compress.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2881930Z copying torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2882800Z copying torch/include/ATen/ops/fractional_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2884050Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2885320Z copying torch/include/ATen/ops/_test_optional_intlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2886440Z copying torch/include/ATen/ops/log_normal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2887650Z copying torch/include/ATen/ops/hypot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2888840Z copying torch/include/ATen/ops/hypot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2890070Z copying torch/include/ATen/ops/nll_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2891360Z copying torch/include/ATen/ops/_nested_tensor_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2892540Z copying torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2893890Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2895000Z copying torch/include/ATen/ops/linalg_qr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2896280Z copying torch/include/ATen/ops/_nnz_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2898510Z copying torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2898900Z copying torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2900290Z copying torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2901460Z copying torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2902790Z copying torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2904120Z copying torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2905480Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2907000Z copying torch/include/ATen/ops/linalg_cross_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2907730Z copying torch/include/ATen/ops/special_bessel_j0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2908890Z copying torch/include/ATen/ops/rsub_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2910180Z copying torch/include/ATen/ops/sort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2911450Z copying torch/include/ATen/ops/sparse_resize_and_clear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2913000Z copying torch/include/ATen/ops/_grouped_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2914410Z copying torch/include/ATen/ops/put_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.2915540Z copying torch/include/ATen/ops/eq_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3106810Z copying torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3108060Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3109480Z copying torch/include/ATen/ops/_foreach_floor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3110890Z copying torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3112180Z copying torch/include/ATen/ops/signbit_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3113410Z copying torch/include/ATen/ops/erfinv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3114670Z copying torch/include/ATen/ops/diag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3116050Z copying torch/include/ATen/ops/_functional_sym_constrain_range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3117310Z copying torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3118550Z copying torch/include/ATen/ops/_logcumsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3119770Z copying torch/include/ATen/ops/fractional_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3120970Z copying torch/include/ATen/ops/logical_or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3122270Z copying torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3123510Z copying torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3124700Z copying torch/include/ATen/ops/_pdist_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3125940Z copying torch/include/ATen/ops/empty_permuted_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3127130Z copying torch/include/ATen/ops/topk_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3128490Z copying torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3129730Z copying torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3130950Z copying torch/include/ATen/ops/bincount_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3132190Z copying torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3133400Z copying torch/include/ATen/ops/i0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3134680Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3135800Z copying torch/include/ATen/ops/asinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3137110Z copying torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3138310Z copying torch/include/ATen/ops/resize_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3139550Z copying torch/include/ATen/ops/logcumsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3140600Z copying torch/include/ATen/ops/ravel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3141930Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3143170Z copying torch/include/ATen/ops/bitwise_and_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3144490Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3145630Z copying torch/include/ATen/ops/_index_put_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3146870Z copying torch/include/ATen/ops/isin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3148260Z copying torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3149440Z copying torch/include/ATen/ops/_cast_Short.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3150660Z copying torch/include/ATen/ops/_sparse_broadcast_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3151970Z copying torch/include/ATen/ops/select_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3153130Z copying torch/include/ATen/ops/fmod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3154350Z copying torch/include/ATen/ops/masked_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3155680Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3156840Z copying torch/include/ATen/ops/hardtanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3158190Z copying torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3159340Z copying torch/include/ATen/ops/index_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3160570Z copying torch/include/ATen/ops/_linalg_solve_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3161920Z copying torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3163170Z copying torch/include/ATen/ops/std_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3164420Z copying torch/include/ATen/ops/vsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3165800Z copying torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3167000Z copying torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3168240Z copying torch/include/ATen/ops/linalg_lu_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3169410Z copying torch/include/ATen/ops/_sparse_csr_sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3170610Z copying torch/include/ATen/ops/view_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3171890Z copying torch/include/ATen/ops/ccol_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3173070Z copying torch/include/ATen/ops/resize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3174350Z copying torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3175500Z copying torch/include/ATen/ops/constant_pad_nd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3176820Z copying torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3177960Z copying torch/include/ATen/ops/silu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3179180Z copying torch/include/ATen/ops/choose_qparams_optimized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3180390Z copying torch/include/ATen/ops/log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3193730Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3194530Z copying torch/include/ATen/ops/_foreach_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3195720Z copying torch/include/ATen/ops/_version_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3196960Z copying torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3198200Z copying torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3199350Z copying torch/include/ATen/ops/corrcoef_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3200710Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3201870Z copying torch/include/ATen/ops/_to_sparse_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3336820Z copying torch/include/ATen/ops/sin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3337720Z copying torch/include/ATen/ops/_cast_Half_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3338990Z copying torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3382770Z copying torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3383580Z copying torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3384790Z copying torch/include/ATen/ops/hardswish_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3386010Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3387420Z copying torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3388650Z copying torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3389800Z copying torch/include/ATen/ops/_flash_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3391190Z copying torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3392340Z copying torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3393570Z copying torch/include/ATen/ops/hardsigmoid_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3394760Z copying torch/include/ATen/ops/linalg_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3395980Z copying torch/include/ATen/ops/_to_sparse_bsr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3397290Z copying torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3398420Z copying torch/include/ATen/ops/_pad_circular.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3399700Z copying torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3400960Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3402210Z copying torch/include/ATen/ops/_foreach_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3403470Z copying torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3404770Z copying torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3405980Z copying torch/include/ATen/ops/to_sparse_bsr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3407260Z copying torch/include/ATen/ops/bmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3408430Z copying torch/include/ATen/ops/conv3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3409720Z copying torch/include/ATen/ops/addcdiv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3410920Z copying torch/include/ATen/ops/add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3412340Z copying torch/include/ATen/ops/multi_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3413520Z copying torch/include/ATen/ops/bitwise_xor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3414870Z copying torch/include/ATen/ops/exp2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3416090Z copying torch/include/ATen/ops/_nested_from_padded.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3417300Z copying torch/include/ATen/ops/sparse_bsr_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3418460Z copying torch/include/ATen/ops/combinations_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3419740Z copying torch/include/ATen/ops/fmod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3421060Z copying torch/include/ATen/ops/broadcast_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3422480Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3423750Z copying torch/include/ATen/ops/hardswish_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3425160Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3426560Z copying torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3427510Z copying torch/include/ATen/ops/linalg_lu_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3428730Z copying torch/include/ATen/ops/bitwise_or_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3430020Z copying torch/include/ATen/ops/special_i0e_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3431340Z copying torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3446950Z copying torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3448110Z copying torch/include/ATen/ops/vdot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3449350Z copying torch/include/ATen/ops/_conj_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3450590Z copying torch/include/ATen/ops/gt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3451840Z copying torch/include/ATen/ops/diag_embed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3453040Z copying torch/include/ATen/ops/sqrt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3454270Z copying torch/include/ATen/ops/nan_to_num_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3455550Z copying torch/include/ATen/ops/conv2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3456800Z copying torch/include/ATen/ops/_batch_norm_with_update.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3457960Z copying torch/include/ATen/ops/_foreach_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3459290Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3460530Z copying torch/include/ATen/ops/hardshrink_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3461760Z copying torch/include/ATen/ops/heaviside_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3462790Z copying torch/include/ATen/ops/pdist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3464140Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3465370Z copying torch/include/ATen/ops/cholesky_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3466580Z copying torch/include/ATen/ops/is_signed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3467910Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3469080Z copying torch/include/ATen/ops/ne_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3470310Z copying torch/include/ATen/ops/index_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3471460Z copying torch/include/ATen/ops/logit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3472790Z copying torch/include/ATen/ops/linalg_multi_dot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3474140Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3533380Z copying torch/include/ATen/ops/rad2deg_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3534210Z copying torch/include/ATen/ops/linalg_eig_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3535360Z copying torch/include/ATen/ops/special_i1e_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3536600Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3537790Z copying torch/include/ATen/ops/_conj_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3538960Z copying torch/include/ATen/ops/randperm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3540380Z copying torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3541570Z copying torch/include/ATen/ops/_fused_adamw_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3545050Z copying torch/include/ATen/ops/rand_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3545390Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3545690Z copying torch/include/ATen/ops/_foreach_cosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3546630Z copying torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3547760Z copying torch/include/ATen/ops/rename_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3549120Z copying torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3550290Z copying torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3551500Z copying torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3552720Z copying torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3553930Z copying torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3555200Z copying torch/include/ATen/ops/_is_zerotensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3556390Z copying torch/include/ATen/ops/exp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3557660Z copying torch/include/ATen/ops/multilabel_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3558820Z copying torch/include/ATen/ops/_test_check_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3639960Z copying torch/include/ATen/ops/embedding_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3640740Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3641870Z copying torch/include/ATen/ops/_cast_Float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3643040Z copying torch/include/ATen/ops/_neg_view_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3644190Z copying torch/include/ATen/ops/acosh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3645490Z copying torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3646780Z copying torch/include/ATen/ops/_assert_tensor_metadata_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3648020Z copying torch/include/ATen/ops/sigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3649240Z copying torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3650440Z copying torch/include/ATen/ops/index_fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3651600Z copying torch/include/ATen/ops/pad_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3652790Z copying torch/include/ATen/ops/unsafe_split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3654260Z copying torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3655260Z copying torch/include/ATen/ops/mish_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3656570Z copying torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3657810Z copying torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3658940Z copying torch/include/ATen/ops/addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3660210Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3661370Z copying torch/include/ATen/ops/_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3662610Z copying torch/include/ATen/ops/atan2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3663830Z copying torch/include/ATen/ops/bucketize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3665000Z copying torch/include/ATen/ops/native_layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3666150Z copying torch/include/ATen/ops/tan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3667400Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3668710Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3728340Z copying torch/include/ATen/ops/ge_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3729700Z copying torch/include/ATen/ops/_logcumsumexp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3731260Z copying torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3732730Z copying torch/include/ATen/ops/lu_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3734060Z copying torch/include/ATen/ops/conv_tbc_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3735420Z copying torch/include/ATen/ops/_log_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3825430Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3826440Z copying torch/include/ATen/ops/_sobol_engine_draw_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3831680Z copying torch/include/ATen/ops/hardtanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3832650Z copying torch/include/ATen/ops/bitwise_and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3834030Z copying torch/include/ATen/ops/masked_select_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3835360Z copying torch/include/ATen/ops/lerp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3836640Z copying torch/include/ATen/ops/matrix_exp_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3837920Z copying torch/include/ATen/ops/special_erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3839510Z copying torch/include/ATen/ops/cosh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3840460Z copying torch/include/ATen/ops/linalg_cross_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3842010Z copying torch/include/ATen/ops/index_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3842850Z copying torch/include/ATen/ops/linalg_multi_dot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3844100Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3845340Z copying torch/include/ATen/ops/_cslt_sparse_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3846530Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3847730Z copying torch/include/ATen/ops/index_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3848940Z copying torch/include/ATen/ops/lt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3850180Z copying torch/include/ATen/ops/max_pool2d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3851320Z copying torch/include/ATen/ops/nonzero_static_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3852520Z copying torch/include/ATen/ops/exponential_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3853840Z copying torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3855050Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3856180Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3857500Z copying torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3858530Z copying torch/include/ATen/ops/cummin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3859800Z copying torch/include/ATen/ops/quantize_per_channel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3861010Z copying torch/include/ATen/ops/cauchy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3862260Z copying torch/include/ATen/ops/rsqrt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3863470Z copying torch/include/ATen/ops/linspace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3864770Z copying torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3876630Z copying torch/include/ATen/ops/special_modified_bessel_i1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3877690Z copying torch/include/ATen/ops/frac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3878930Z copying torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3880060Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3881240Z copying torch/include/ATen/ops/select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3882570Z copying torch/include/ATen/ops/_nested_sum_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3883730Z copying torch/include/ATen/ops/_foreach_log_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3885150Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3886490Z copying torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3887630Z copying torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3888720Z copying torch/include/ATen/ops/inner_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3889940Z copying torch/include/ATen/ops/_triton_scaled_dot_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3891110Z copying torch/include/ATen/ops/is_coalesced.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3892310Z copying torch/include/ATen/ops/native_group_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3893570Z copying torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3894740Z copying torch/include/ATen/ops/fft_fftfreq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3896010Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3897230Z copying torch/include/ATen/ops/max_pool2d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3898370Z copying torch/include/ATen/ops/_standard_gamma_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3899600Z copying torch/include/ATen/ops/linalg_inv_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3900880Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3902020Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3903260Z copying torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3904760Z copying torch/include/ATen/ops/hinge_embedding_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3905750Z copying torch/include/ATen/ops/nanmedian_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3906980Z copying torch/include/ATen/ops/dot_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3908280Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3909470Z copying torch/include/ATen/ops/stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3910700Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3911980Z copying torch/include/ATen/ops/smooth_l1_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3913290Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3914580Z copying torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3915760Z copying torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3917120Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3918210Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3919450Z copying torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3920600Z copying torch/include/ATen/ops/index_put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3921940Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3923140Z copying torch/include/ATen/ops/glu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3924320Z copying torch/include/ATen/ops/view_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3925510Z copying torch/include/ATen/ops/_foreach_sign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3926810Z copying torch/include/ATen/ops/index_add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3928100Z copying torch/include/ATen/ops/native_layer_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3929280Z copying torch/include/ATen/ops/to_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3949370Z copying torch/include/ATen/ops/is_set_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3950490Z copying torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3951610Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3952770Z copying torch/include/ATen/ops/concatenate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3953880Z copying torch/include/ATen/ops/logaddexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3955200Z copying torch/include/ATen/ops/batch_norm_backward_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3956350Z copying torch/include/ATen/ops/_linalg_eigvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3957560Z copying torch/include/ATen/ops/qscheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3958730Z copying torch/include/ATen/ops/silu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3959950Z copying torch/include/ATen/ops/movedim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3961240Z copying torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3962430Z copying torch/include/ATen/ops/lu_unpack_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3963570Z copying torch/include/ATen/ops/thnn_conv2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3965000Z copying torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3966190Z copying torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3967450Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3968640Z copying torch/include/ATen/ops/sparse_sampled_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3969840Z copying torch/include/ATen/ops/igammac_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3971080Z copying torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3972300Z copying torch/include/ATen/ops/quantized_max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3973550Z copying torch/include/ATen/ops/special_airy_ai_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3975000Z copying torch/include/ATen/ops/addcdiv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3976010Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3977250Z copying torch/include/ATen/ops/_nested_get_max_seqlen_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3978470Z copying torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3979590Z copying torch/include/ATen/ops/addcdiv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3980720Z copying torch/include/ATen/ops/rsqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3982060Z copying torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3983840Z copying torch/include/ATen/ops/_foreach_lgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3987020Z copying torch/include/ATen/ops/argmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3992960Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3993780Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.3999980Z copying torch/include/ATen/ops/erfc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4001290Z copying torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4007720Z copying torch/include/ATen/ops/threshold_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4008420Z copying torch/include/ATen/ops/svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4009720Z copying torch/include/ATen/ops/addmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4015700Z copying torch/include/ATen/ops/lift_fresh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4016600Z copying torch/include/ATen/ops/_foreach_zero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4023280Z copying torch/include/ATen/ops/flatten_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4024430Z copying torch/include/ATen/ops/linalg_lu_factor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4031220Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4032330Z copying torch/include/ATen/ops/where_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4033580Z copying torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4039020Z copying torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4039830Z copying torch/include/ATen/ops/_pad_enum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4046890Z copying torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4047620Z copying torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4055340Z copying torch/include/ATen/ops/from_file.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4056270Z copying torch/include/ATen/ops/row_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4057480Z copying torch/include/ATen/ops/clamp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4062240Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4064790Z copying torch/include/ATen/ops/celu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4069820Z copying torch/include/ATen/ops/matrix_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4070690Z copying torch/include/ATen/ops/special_logit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4074100Z copying torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4079230Z copying torch/include/ATen/ops/lstm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4080140Z copying torch/include/ATen/ops/atan2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4083000Z copying torch/include/ATen/ops/cummaxmin_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4088900Z copying torch/include/ATen/ops/_functional_sym_constrain_range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4090860Z copying torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4097100Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4098060Z copying torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4099630Z copying torch/include/ATen/ops/zero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4107090Z copying torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4112940Z copying torch/include/ATen/ops/row_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4120270Z copying torch/include/ATen/ops/slow_conv_transpose3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4121190Z copying torch/include/ATen/ops/miopen_convolution_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4128320Z copying torch/include/ATen/ops/max_pool2d_with_indices_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4129070Z copying torch/include/ATen/ops/real.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4130410Z copying torch/include/ATen/ops/replication_pad1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4136430Z copying torch/include/ATen/ops/pairwise_distance_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4137270Z copying torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4144400Z copying torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4145320Z copying torch/include/ATen/ops/_make_dual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4152790Z copying torch/include/ATen/ops/_make_dual_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4153740Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4154960Z copying torch/include/ATen/ops/renorm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4160030Z copying torch/include/ATen/ops/relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4161240Z copying torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4167650Z copying torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4168410Z copying torch/include/ATen/ops/avg_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4169610Z copying torch/include/ATen/ops/_foreach_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4176590Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4177490Z copying torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4183890Z copying torch/include/ATen/ops/ceil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4185470Z copying torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4191520Z copying torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4192560Z copying torch/include/ATen/ops/sqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4193880Z copying torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4200100Z copying torch/include/ATen/ops/min_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4201080Z copying torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4208170Z copying torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4208910Z copying torch/include/ATen/ops/_nnpack_available_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4215960Z copying torch/include/ATen/ops/bitwise_right_shift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4216700Z copying torch/include/ATen/ops/threshold_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4218150Z copying torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4223590Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4224570Z copying torch/include/ATen/ops/_autocast_to_full_precision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4231830Z copying torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4232500Z copying torch/include/ATen/ops/_nested_get_min_seqlen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4233740Z copying torch/include/ATen/ops/remainder_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4239440Z copying torch/include/ATen/ops/linalg_det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4240540Z copying torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4247730Z copying torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4248710Z copying torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4249960Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4255970Z copying torch/include/ATen/ops/randint_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4256870Z copying torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4263830Z copying torch/include/ATen/ops/nested_to_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4264960Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4271260Z copying torch/include/ATen/ops/resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4272900Z copying torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4325800Z copying torch/include/ATen/ops/isclose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4327070Z copying torch/include/ATen/ops/resize_as_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4327860Z copying torch/include/ATen/ops/view_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4329150Z copying torch/include/ATen/ops/replication_pad1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4330500Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4331540Z copying torch/include/ATen/ops/triu_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4332830Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4334000Z copying torch/include/ATen/ops/_scaled_grouped_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4335210Z copying torch/include/ATen/ops/mish_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4336340Z copying torch/include/ATen/ops/atleast_2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4337610Z copying torch/include/ATen/ops/_nested_get_lengths.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4338820Z copying torch/include/ATen/ops/special_hermite_polynomial_h_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4339950Z copying torch/include/ATen/ops/renorm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4341160Z copying torch/include/ATen/ops/native_group_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4342360Z copying torch/include/ATen/ops/floor_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4343630Z copying torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4344870Z copying torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4346050Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4347240Z copying torch/include/ATen/ops/take_along_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4348620Z copying torch/include/ATen/ops/_reshape_from_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4349780Z copying torch/include/ATen/ops/hsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4351000Z copying torch/include/ATen/ops/gather_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4356420Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4357280Z copying torch/include/ATen/ops/threshold_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4358870Z copying torch/include/ATen/ops/t_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4366160Z copying torch/include/ATen/ops/triu_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4367280Z copying torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4481790Z copying torch/include/ATen/ops/absolute_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4483100Z copying torch/include/ATen/ops/isnan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4484420Z copying torch/include/ATen/ops/fft_hfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4485570Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4486660Z copying torch/include/ATen/ops/atanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4488120Z copying torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4489340Z copying torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4490590Z copying torch/include/ATen/ops/fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4491850Z copying torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4493130Z copying torch/include/ATen/ops/batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4494510Z copying torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4495660Z copying torch/include/ATen/ops/tanh_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4496840Z copying torch/include/ATen/ops/sparse_mask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4498180Z copying torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4499400Z copying torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4500530Z copying torch/include/ATen/ops/rsub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4501880Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4503080Z copying torch/include/ATen/ops/sinc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4504470Z copying torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4505700Z copying torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4506870Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4508110Z copying torch/include/ATen/ops/_nested_from_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4509290Z copying torch/include/ATen/ops/randint_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4510610Z copying torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4511860Z copying torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4513110Z copying torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4514190Z copying torch/include/ATen/ops/abs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4515360Z copying torch/include/ATen/ops/isin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4516630Z copying torch/include/ATen/ops/huber_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4517750Z copying torch/include/ATen/ops/retain_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4518930Z copying torch/include/ATen/ops/sparse_resize_and_clear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4520050Z copying torch/include/ATen/ops/kron_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4521220Z copying torch/include/ATen/ops/log1p_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4522500Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4523640Z copying torch/include/ATen/ops/_batch_norm_no_update_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4524970Z copying torch/include/ATen/ops/bucketize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4526350Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4527590Z copying torch/include/ATen/ops/logaddexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4528830Z copying torch/include/ATen/ops/gather_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4530230Z copying torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4531520Z copying torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4532780Z copying torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4533980Z copying torch/include/ATen/ops/clip_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4535300Z copying torch/include/ATen/ops/bernoulli_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4536570Z copying torch/include/ATen/ops/_local_scalar_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4537790Z copying torch/include/ATen/ops/_cslt_sparse_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4539140Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4540430Z copying torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4541770Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4543030Z copying torch/include/ATen/ops/max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4544410Z copying torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4548870Z copying torch/include/ATen/ops/special_erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4550120Z copying torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4556970Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4558050Z copying torch/include/ATen/ops/pow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4769380Z copying torch/include/ATen/ops/_cast_Double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4770430Z copying torch/include/ATen/ops/frobenius_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4771580Z copying torch/include/ATen/ops/sinc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4772810Z copying torch/include/ATen/ops/softplus.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4773940Z copying torch/include/ATen/ops/_foreach_pow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4775300Z copying torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4776430Z copying torch/include/ATen/ops/kthvalue_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4777650Z copying torch/include/ATen/ops/_is_any_true.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4778830Z copying torch/include/ATen/ops/reshape_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4780070Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4781510Z copying torch/include/ATen/ops/special_bessel_y0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4782460Z copying torch/include/ATen/ops/crow_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4783620Z copying torch/include/ATen/ops/_weight_int8pack_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4784790Z copying torch/include/ATen/ops/uniform_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4786100Z copying torch/include/ATen/ops/_embedding_bag_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4787340Z copying torch/include/ATen/ops/_cudnn_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4788430Z copying torch/include/ATen/ops/to_sparse_csc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4791550Z copying torch/include/ATen/ops/reshape_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4792440Z copying torch/include/ATen/ops/_fused_rms_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4793710Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4794990Z copying torch/include/ATen/ops/replication_pad1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4796240Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4797530Z copying torch/include/ATen/ops/_safe_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4864280Z copying torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4865330Z copying torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4866430Z copying torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4867850Z copying torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4868910Z copying torch/include/ATen/ops/set_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4870040Z copying torch/include/ATen/ops/numpy_T.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4876750Z copying torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4877310Z copying torch/include/ATen/ops/miopen_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4878340Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4878660Z copying torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4978860Z copying torch/include/ATen/ops/float_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4979930Z copying torch/include/ATen/ops/narrow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4981270Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4982580Z copying torch/include/ATen/ops/unique_consecutive_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4983780Z copying torch/include/ATen/ops/rot90.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4984940Z copying torch/include/ATen/ops/t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4987380Z copying torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4987630Z copying torch/include/ATen/ops/squeeze_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4988770Z copying torch/include/ATen/ops/clamp_min_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.4990110Z copying torch/include/ATen/ops/greater.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8447190Z copying torch/include/ATen/ops/swapaxes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8489630Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8496650Z copying torch/include/ATen/ops/avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8501660Z copying torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8506790Z copying torch/include/ATen/ops/_cudnn_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8511230Z copying torch/include/ATen/ops/_foreach_sign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8517890Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8526460Z copying torch/include/ATen/ops/_linalg_svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8535180Z copying torch/include/ATen/ops/from_blob.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8543980Z copying torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8555010Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8562540Z copying torch/include/ATen/ops/exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8570320Z copying torch/include/ATen/ops/index_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8577920Z copying torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8587500Z copying torch/include/ATen/ops/linspace_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8621690Z copying torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8629750Z copying torch/include/ATen/ops/special_ndtri_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8632710Z copying torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8634860Z copying torch/include/ATen/ops/put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8637050Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8640440Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8645600Z copying torch/include/ATen/ops/linalg_lu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8651410Z copying torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8656470Z copying torch/include/ATen/ops/log1p_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8662450Z copying torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8671140Z copying torch/include/ATen/ops/tril_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8680820Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8700670Z copying torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8703130Z copying torch/include/ATen/ops/_compute_linear_combination_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8707690Z copying torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8710180Z copying torch/include/ATen/ops/put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8711420Z copying torch/include/ATen/ops/special_airy_ai_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8712860Z copying torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8714170Z copying torch/include/ATen/ops/reflection_pad1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8715530Z copying torch/include/ATen/ops/eq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8716890Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8718040Z copying torch/include/ATen/ops/im2col_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8719430Z copying torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8720600Z copying torch/include/ATen/ops/cumprod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8721970Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8723150Z copying torch/include/ATen/ops/fill_diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8724410Z copying torch/include/ATen/ops/lgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8725690Z copying torch/include/ATen/ops/equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8727030Z copying torch/include/ATen/ops/linalg_eigvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8728480Z copying torch/include/ATen/ops/_flash_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8729700Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8731060Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8732400Z copying torch/include/ATen/ops/sparse_resize_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8733790Z copying torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8735020Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8736510Z copying torch/include/ATen/ops/upsample_trilinear3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8738180Z copying torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8739140Z copying torch/include/ATen/ops/value_selecting_reduction_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8740650Z copying torch/include/ATen/ops/_unpack_dual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8741700Z copying torch/include/ATen/ops/special_log_ndtr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8743120Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8744360Z copying torch/include/ATen/ops/sparse_csc_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8745680Z copying torch/include/ATen/ops/log1p_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8747030Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8748320Z copying torch/include/ATen/ops/flatten_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8749560Z copying torch/include/ATen/ops/sym_numel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8751020Z copying torch/include/ATen/ops/linalg_svdvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8752170Z copying torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8753450Z copying torch/include/ATen/ops/masked_select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8754810Z copying torch/include/ATen/ops/unfold_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8756010Z copying torch/include/ATen/ops/special_airy_ai.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8757290Z copying torch/include/ATen/ops/min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8758510Z copying torch/include/ATen/ops/fmin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8759860Z copying torch/include/ATen/ops/logit_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8761260Z copying torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8762500Z copying torch/include/ATen/ops/view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8764550Z copying torch/include/ATen/ops/threshold_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8773410Z copying torch/include/ATen/ops/mkldnn_rnn_layer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8781740Z copying torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8791130Z copying torch/include/ATen/ops/_efficient_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8798930Z copying torch/include/ATen/ops/slice_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8808620Z copying torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8812330Z copying torch/include/ATen/ops/polar_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8816310Z copying torch/include/ATen/ops/linspace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8821020Z copying torch/include/ATen/ops/linalg_matrix_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8822370Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8829470Z copying torch/include/ATen/ops/softplus_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8835800Z copying torch/include/ATen/ops/arccos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8837490Z copying torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8843390Z copying torch/include/ATen/ops/silu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8846430Z copying torch/include/ATen/ops/digamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8853170Z copying torch/include/ATen/ops/cudnn_is_acceptable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8854160Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8860940Z copying torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8861900Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8868670Z copying torch/include/ATen/ops/deg2rad_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8869770Z copying torch/include/ATen/ops/special_erfcx_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8875840Z copying torch/include/ATen/ops/_cdist_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8877150Z copying torch/include/ATen/ops/mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8883510Z copying torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8884830Z copying torch/include/ATen/ops/_foreach_mul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8892790Z copying torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8893900Z copying torch/include/ATen/ops/round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8901930Z copying torch/include/ATen/ops/moveaxis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8908510Z copying torch/include/ATen/ops/_efficient_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8909570Z copying torch/include/ATen/ops/mul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8910940Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8916280Z copying torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8924140Z copying torch/include/ATen/ops/select_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8925050Z copying torch/include/ATen/ops/acos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8932590Z copying torch/include/ATen/ops/nansum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8933460Z copying torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8941390Z copying torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8942260Z copying torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8948900Z copying torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8950090Z copying torch/include/ATen/ops/diag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8957730Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8964530Z copying torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8965260Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8966600Z copying torch/include/ATen/ops/_embedding_bag_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8973470Z copying torch/include/ATen/ops/mean_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8979940Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8981350Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8989850Z copying torch/include/ATen/ops/_cudnn_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8994910Z copying torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.8998450Z copying torch/include/ATen/ops/trunc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9002460Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9003490Z copying torch/include/ATen/ops/detach.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9007930Z copying torch/include/ATen/ops/special_hermite_polynomial_he.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9011660Z copying torch/include/ATen/ops/logaddexp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9016400Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9017680Z copying torch/include/ATen/ops/random_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9019030Z copying torch/include/ATen/ops/_aminmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9024900Z copying torch/include/ATen/ops/gelu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9033020Z copying torch/include/ATen/ops/masked_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9034060Z copying torch/include/ATen/ops/row_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9037190Z copying torch/include/ATen/ops/expand.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9041920Z copying torch/include/ATen/ops/asinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9045380Z copying torch/include/ATen/ops/atanh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9046400Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9052300Z copying torch/include/ATen/ops/sub_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9053810Z copying torch/include/ATen/ops/affine_grid_generator_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9059850Z copying torch/include/ATen/ops/rnn_tanh_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9060650Z copying torch/include/ATen/ops/ger_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9062130Z copying torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9069200Z copying torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9070060Z copying torch/include/ATen/ops/upsample_linear1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9076500Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9077890Z copying torch/include/ATen/ops/result_type_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9084650Z copying torch/include/ATen/ops/_prelu_kernel_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9085460Z copying torch/include/ATen/ops/ormqr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9086700Z copying torch/include/ATen/ops/floor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9092470Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9093390Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9100970Z copying torch/include/ATen/ops/slice_inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9102010Z copying torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9108920Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9109850Z copying torch/include/ATen/ops/threshold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9111350Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9116210Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9117650Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9124010Z copying torch/include/ATen/ops/special_ndtri_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9124820Z copying torch/include/ATen/ops/_sparse_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9126170Z copying torch/include/ATen/ops/special_xlogy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9133660Z copying torch/include/ATen/ops/_grouped_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9169430Z copying torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9173390Z copying torch/include/ATen/ops/is_floating_point_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9187980Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9195550Z copying torch/include/ATen/ops/_foreach_pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9204370Z copying torch/include/ATen/ops/fft_irfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9209600Z copying torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9210880Z copying torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9212910Z copying torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9219210Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9220170Z copying torch/include/ATen/ops/median_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9226670Z copying torch/include/ATen/ops/fft_ifft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9228150Z copying torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9229980Z copying torch/include/ATen/ops/ceil_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9235590Z copying torch/include/ATen/ops/leaky_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9243550Z copying torch/include/ATen/ops/full_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9244400Z copying torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9251430Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9252500Z copying torch/include/ATen/ops/rad2deg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9253880Z copying torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9259140Z copying torch/include/ATen/ops/fmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9266880Z copying torch/include/ATen/ops/refine_names.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9267750Z copying torch/include/ATen/ops/linalg_cond_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9269820Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9275490Z copying torch/include/ATen/ops/embedding_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9276630Z copying torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9282700Z copying torch/include/ATen/ops/tensordot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9284950Z copying torch/include/ATen/ops/special_modified_bessel_k1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9290180Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9290980Z copying torch/include/ATen/ops/clamp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9293630Z copying torch/include/ATen/ops/_foreach_sqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9299350Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9300240Z copying torch/include/ATen/ops/glu_jvp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9307400Z copying torch/include/ATen/ops/batch_norm_elemt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9309060Z copying torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9315600Z copying torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9316820Z copying torch/include/ATen/ops/special_erfcx_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9318170Z copying torch/include/ATen/ops/nextafter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9323460Z copying torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9325010Z copying torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9331460Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9332500Z copying torch/include/ATen/ops/batch_norm_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9333690Z copying torch/include/ATen/ops/conv_tbc_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9348890Z copying torch/include/ATen/ops/mkldnn_linear_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9350410Z copying torch/include/ATen/ops/_assert_tensor_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9358000Z copying torch/include/ATen/ops/slice_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9358940Z copying torch/include/ATen/ops/add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9360170Z copying torch/include/ATen/ops/rnn_tanh_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9361590Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9366980Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9367930Z copying torch/include/ATen/ops/expand_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9370810Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9569640Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9570950Z copying torch/include/ATen/ops/masked_scatter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9572460Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9573900Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9575000Z copying torch/include/ATen/ops/_aminmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9576190Z copying torch/include/ATen/ops/istft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9577490Z copying torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9578780Z copying torch/include/ATen/ops/max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9579940Z copying torch/include/ATen/ops/special_expit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9581180Z copying torch/include/ATen/ops/_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9582410Z copying torch/include/ATen/ops/fliplr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9583650Z copying torch/include/ATen/ops/acos_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9584880Z copying torch/include/ATen/ops/log10_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9586060Z copying torch/include/ATen/ops/argmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9587350Z copying torch/include/ATen/ops/triu_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9588570Z copying torch/include/ATen/ops/sparse_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9589880Z copying torch/include/ATen/ops/bitwise_and_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9591020Z copying torch/include/ATen/ops/atan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9592330Z copying torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9593490Z copying torch/include/ATen/ops/prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9594740Z copying torch/include/ATen/ops/mul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9596030Z copying torch/include/ATen/ops/is_pinned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9597850Z copying torch/include/ATen/ops/index_add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9598710Z copying torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9600000Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9601100Z copying torch/include/ATen/ops/unfold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9602410Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9603730Z copying torch/include/ATen/ops/rrelu_with_noise_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9605110Z copying torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9606330Z copying torch/include/ATen/ops/upsample_trilinear3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9607840Z copying torch/include/ATen/ops/linalg_householder_product.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9609150Z copying torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9610420Z copying torch/include/ATen/ops/aminmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9611650Z copying torch/include/ATen/ops/view_as_real.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9613070Z copying torch/include/ATen/ops/_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9614480Z copying torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9615600Z copying torch/include/ATen/ops/huber_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9616910Z copying torch/include/ATen/ops/_native_batch_norm_legit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9618270Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9619670Z copying torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9620920Z copying torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9622280Z copying torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9624280Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9624990Z copying torch/include/ATen/ops/diagflat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9626150Z copying torch/include/ATen/ops/amax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9634140Z copying torch/include/ATen/ops/addr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9634720Z copying torch/include/ATen/ops/special_i1e.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9635300Z copying torch/include/ATen/ops/_embedding_bag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9635890Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9636480Z copying torch/include/ATen/ops/zero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9637140Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9637820Z copying torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9638530Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9639210Z copying torch/include/ATen/ops/arange_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9639800Z copying torch/include/ATen/ops/mish_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9640400Z copying torch/include/ATen/ops/chalf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9641510Z copying torch/include/ATen/ops/_fused_rms_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9642740Z copying torch/include/ATen/ops/linalg_svdvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9644050Z copying torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9645430Z copying torch/include/ATen/ops/special_spherical_bessel_j0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9646800Z copying torch/include/ATen/ops/_weight_int4pack_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9648010Z copying torch/include/ATen/ops/expm1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9649370Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9650760Z copying torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9652160Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9653330Z copying torch/include/ATen/ops/std_mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9654640Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9655970Z copying torch/include/ATen/ops/_linalg_eigh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9657320Z copying torch/include/ATen/ops/hardshrink_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9658570Z copying torch/include/ATen/ops/smooth_l1_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9659840Z copying torch/include/ATen/ops/igamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9661120Z copying torch/include/ATen/ops/_embedding_bag_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9662380Z copying torch/include/ATen/ops/remainder_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9663820Z copying torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9665030Z copying torch/include/ATen/ops/linalg_lu_factor_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9666490Z copying torch/include/ATen/ops/masked_select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9667730Z copying torch/include/ATen/ops/_sparse_sum_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9668930Z copying torch/include/ATen/ops/empty.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9670370Z copying torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9671630Z copying torch/include/ATen/ops/baddbmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9672960Z copying torch/include/ATen/ops/poisson_nll_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9674260Z copying torch/include/ATen/ops/baddbmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9675480Z copying torch/include/ATen/ops/ger.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9676760Z copying torch/include/ATen/ops/_conv_depthwise2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9678120Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9679400Z copying torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9680870Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9682080Z copying torch/include/ATen/ops/lift_fresh_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9683210Z copying torch/include/ATen/ops/nll_loss2d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9689650Z copying torch/include/ATen/ops/imag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9690890Z copying torch/include/ATen/ops/full_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9697570Z copying torch/include/ATen/ops/_cast_Float_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9698840Z copying torch/include/ATen/ops/special_bessel_y1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9700240Z copying torch/include/ATen/ops/upsample_nearest3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9706090Z copying torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9706910Z copying torch/include/ATen/ops/lt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9713630Z copying torch/include/ATen/ops/copysign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9715370Z copying torch/include/ATen/ops/_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9716990Z copying torch/include/ATen/ops/replication_pad3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9723770Z copying torch/include/ATen/ops/index_fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9724880Z copying torch/include/ATen/ops/conv_tbc_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9731980Z copying torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9733030Z copying torch/include/ATen/ops/logical_xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9739410Z copying torch/include/ATen/ops/logit_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9740450Z copying torch/include/ATen/ops/softplus_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9741710Z copying torch/include/ATen/ops/upsample_nearest3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9747430Z copying torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9748360Z copying torch/include/ATen/ops/ceil_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9749790Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9756890Z copying torch/include/ATen/ops/nanquantile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9763080Z copying torch/include/ATen/ops/_make_dep_token_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9764600Z copying torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9771520Z copying torch/include/ATen/ops/batch_norm_backward_elemt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9772250Z copying torch/include/ATen/ops/sinh_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9773440Z copying torch/include/ATen/ops/special_round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9778530Z copying torch/include/ATen/ops/_reshape_alias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9780560Z copying torch/include/ATen/ops/le_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9786780Z copying torch/include/ATen/ops/softshrink_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9787600Z copying torch/include/ATen/ops/resolve_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9790130Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9795580Z copying torch/include/ATen/ops/binomial_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9796640Z copying torch/include/ATen/ops/mvlgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9803610Z copying torch/include/ATen/ops/lshift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9804500Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9811280Z copying torch/include/ATen/ops/_efficient_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9812370Z copying torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9813550Z copying torch/include/ATen/ops/special_gammaincc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9818770Z copying torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9820810Z copying torch/include/ATen/ops/cosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9826740Z copying torch/include/ATen/ops/clamp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9827700Z copying torch/include/ATen/ops/binary_cross_entropy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9829980Z copying torch/include/ATen/ops/concat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9835530Z copying torch/include/ATen/ops/mul_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9836640Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9843670Z copying torch/include/ATen/ops/special_multigammaln.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9844610Z copying torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9848970Z copying torch/include/ATen/ops/fft_ifftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9852510Z copying torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9858370Z copying torch/include/ATen/ops/nonzero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9859830Z copying torch/include/ATen/ops/nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9865920Z copying torch/include/ATen/ops/fliplr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9866870Z copying torch/include/ATen/ops/negative_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9874370Z copying torch/include/ATen/ops/fft_fftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9875180Z copying torch/include/ATen/ops/native_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9883880Z copying torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9891830Z copying torch/include/ATen/ops/new_empty_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9897620Z copying torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9898700Z copying torch/include/ATen/ops/scatter_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9899990Z copying torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9906180Z copying torch/include/ATen/ops/eye_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9907040Z copying torch/include/ATen/ops/cartesian_prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9913760Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9915610Z copying torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9921340Z copying torch/include/ATen/ops/conv_transpose2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9922330Z copying torch/include/ATen/ops/as_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9923570Z copying torch/include/ATen/ops/geometric_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9929630Z copying torch/include/ATen/ops/cosh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9930620Z copying torch/include/ATen/ops/copysign_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9937650Z copying torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9939000Z copying torch/include/ATen/ops/output_nr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9945490Z copying torch/include/ATen/ops/argsort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9946320Z copying torch/include/ATen/ops/fft_hfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9947510Z copying torch/include/ATen/ops/sinh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9952630Z copying torch/include/ATen/ops/_foreach_sin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9954270Z copying torch/include/ATen/ops/_unique_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9959200Z copying torch/include/ATen/ops/sin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9960910Z copying torch/include/ATen/ops/range_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9962120Z copying torch/include/ATen/ops/special_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9968930Z copying torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9969770Z copying torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9976770Z copying torch/include/ATen/ops/argmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9977610Z copying torch/include/ATen/ops/detach_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9984560Z copying torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9985320Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9986480Z copying torch/include/ATen/ops/isnan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9992270Z copying torch/include/ATen/ops/special_xlogy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:49.9994740Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0000410Z copying torch/include/ATen/ops/all_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0001650Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0003060Z copying torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0008620Z copying torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0016960Z copying torch/include/ATen/ops/cumsum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0017720Z copying torch/include/ATen/ops/as_strided_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0024310Z copying torch/include/ATen/ops/scatter_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0025500Z copying torch/include/ATen/ops/_weight_int8pack_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0026620Z copying torch/include/ATen/ops/_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0032290Z copying torch/include/ATen/ops/_linalg_det_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0033080Z copying torch/include/ATen/ops/sin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0040160Z copying torch/include/ATen/ops/random_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0041300Z copying torch/include/ATen/ops/_pdist_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0047330Z copying torch/include/ATen/ops/nll_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0048220Z copying torch/include/ATen/ops/tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0049390Z copying torch/include/ATen/ops/cumprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0055280Z copying torch/include/ATen/ops/special_entr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0056370Z copying torch/include/ATen/ops/_foreach_lgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0061240Z copying torch/include/ATen/ops/any_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0069330Z copying torch/include/ATen/ops/_add_batch_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0070450Z copying torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0074230Z copying torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0078500Z copying torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0082580Z copying torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0083670Z copying torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0088370Z copying torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0090180Z copying torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0097160Z copying torch/include/ATen/ops/linalg_cholesky_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0099510Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0106180Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0107270Z copying torch/include/ATen/ops/geqrf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0112830Z copying torch/include/ATen/ops/fft_rfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0113740Z copying torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0116540Z copying torch/include/ATen/ops/special_entr_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0122180Z copying torch/include/ATen/ops/slow_conv3d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0123060Z copying torch/include/ATen/ops/qr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0130350Z copying torch/include/ATen/ops/linalg_cholesky.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0131230Z copying torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0137750Z copying torch/include/ATen/ops/lerp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0138720Z copying torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0139860Z copying torch/include/ATen/ops/masked_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0145370Z copying torch/include/ATen/ops/flip_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0146680Z copying torch/include/ATen/ops/topk_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0152620Z copying torch/include/ATen/ops/_neg_view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0154450Z copying torch/include/ATen/ops/silu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0160340Z copying torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0161220Z copying torch/include/ATen/ops/col_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0162820Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0169410Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0170350Z copying torch/include/ATen/ops/rand_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0177420Z copying torch/include/ATen/ops/_foobar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0388860Z copying torch/include/ATen/ops/histogram_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0389690Z copying torch/include/ATen/ops/all_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0406890Z copying torch/include/ATen/ops/native_channel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0407940Z copying torch/include/ATen/ops/vdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0409220Z copying torch/include/ATen/ops/_grouped_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0410390Z copying torch/include/ATen/ops/slow_conv_dilated3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0411590Z copying torch/include/ATen/ops/any_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0413020Z copying torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0414160Z copying torch/include/ATen/ops/_sparse_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0415390Z copying torch/include/ATen/ops/avg_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0442940Z copying torch/include/ATen/ops/_dirichlet_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0443980Z copying torch/include/ATen/ops/_coalesced_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0445170Z copying torch/include/ATen/ops/baddbmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0446510Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0447700Z copying torch/include/ATen/ops/trace_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0449090Z copying torch/include/ATen/ops/nextafter_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0450370Z copying torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0451640Z copying torch/include/ATen/ops/softshrink_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0453010Z copying torch/include/ATen/ops/native_dropout_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0454210Z copying torch/include/ATen/ops/_native_multi_head_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0455560Z copying torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0456990Z copying torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0458190Z copying torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0459600Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0460890Z copying torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0462140Z copying torch/include/ATen/ops/renorm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0463410Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0464690Z copying torch/include/ATen/ops/t_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0465900Z copying torch/include/ATen/ops/unsafe_split_with_sizes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0467160Z copying torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0468350Z copying torch/include/ATen/ops/fmin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0469610Z copying torch/include/ATen/ops/_sparse_sum_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0470830Z copying torch/include/ATen/ops/special_sinc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0471980Z copying torch/include/ATen/ops/nll_loss_nd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0473310Z copying torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0474560Z copying torch/include/ATen/ops/_softmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0547890Z copying torch/include/ATen/ops/miopen_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0548990Z copying torch/include/ATen/ops/angle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0550340Z copying torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0551650Z copying torch/include/ATen/ops/gather_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0552850Z copying torch/include/ATen/ops/reflection_pad3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0554100Z copying torch/include/ATen/ops/relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0555320Z copying torch/include/ATen/ops/poisson_nll_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0556700Z copying torch/include/ATen/ops/bitwise_not_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0557800Z copying torch/include/ATen/ops/item_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0559070Z copying torch/include/ATen/ops/_native_batch_norm_legit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0560330Z copying torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0561710Z copying torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0562890Z copying torch/include/ATen/ops/special_legendre_polynomial_p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0564090Z copying torch/include/ATen/ops/cudnn_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0565500Z copying torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0566840Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0567990Z copying torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0569390Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0570570Z copying torch/include/ATen/ops/pixel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0571870Z copying torch/include/ATen/ops/rshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0573160Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0574480Z copying torch/include/ATen/ops/batch_norm_update_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0575690Z copying torch/include/ATen/ops/squeeze_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0576930Z copying torch/include/ATen/ops/special_i0e_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0578160Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0579460Z copying torch/include/ATen/ops/mish.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0580650Z copying torch/include/ATen/ops/subtract.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0581900Z copying torch/include/ATen/ops/trunc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0583240Z copying torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0584380Z copying torch/include/ATen/ops/amin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0585620Z copying torch/include/ATen/ops/amin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0586930Z copying torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0588160Z copying torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0589520Z copying torch/include/ATen/ops/miopen_convolution_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0590520Z copying torch/include/ATen/ops/indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0591870Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0683510Z copying torch/include/ATen/ops/_reshape_from_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0684530Z copying torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0685740Z copying torch/include/ATen/ops/blackman_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0686970Z copying torch/include/ATen/ops/batch_norm_elemt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0688280Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0689430Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0690550Z copying torch/include/ATen/ops/_sobol_engine_ff_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0691830Z copying torch/include/ATen/ops/dense_dim_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0692990Z copying torch/include/ATen/ops/sort_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0700000Z copying torch/include/ATen/ops/logit_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0700630Z copying torch/include/ATen/ops/_cummax_helper_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0701200Z copying torch/include/ATen/ops/cat_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0701760Z copying torch/include/ATen/ops/le_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0702380Z copying torch/include/ATen/ops/mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0702960Z copying torch/include/ATen/ops/is_inference.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0703510Z copying torch/include/ATen/ops/fft_ihfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0704060Z copying torch/include/ATen/ops/mode_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0704670Z copying torch/include/ATen/ops/segment_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0758090Z copying torch/include/ATen/ops/detach_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0759080Z copying torch/include/ATen/ops/_triton_multi_head_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0772820Z copying torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0773640Z copying torch/include/ATen/ops/corrcoef_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0774910Z copying torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0793150Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0794050Z copying torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0795150Z copying torch/include/ATen/ops/unflatten_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0796500Z copying torch/include/ATen/ops/avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0797670Z copying torch/include/ATen/ops/ldexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0798870Z copying torch/include/ATen/ops/special_log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0800180Z copying torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0801520Z copying torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0802760Z copying torch/include/ATen/ops/le_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0803970Z copying torch/include/ATen/ops/threshold_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0805340Z copying torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0806490Z copying torch/include/ATen/ops/align_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0807850Z copying torch/include/ATen/ops/linspace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0808940Z copying torch/include/ATen/ops/_nested_get_ragged_idx_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0810400Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0811670Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0812920Z copying torch/include/ATen/ops/narrow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0814100Z copying torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0815290Z copying torch/include/ATen/ops/hspmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0816620Z copying torch/include/ATen/ops/_saturate_weight_to_fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0817820Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0819190Z copying torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0820320Z copying torch/include/ATen/ops/var_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0821530Z copying torch/include/ATen/ops/erfinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0822690Z copying torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0824030Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0825130Z copying torch/include/ATen/ops/dot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0826390Z copying torch/include/ATen/ops/sparse_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0827730Z copying torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0829100Z copying torch/include/ATen/ops/resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0830130Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0831330Z copying torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0832490Z copying torch/include/ATen/ops/erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0833710Z copying torch/include/ATen/ops/logical_not_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0834920Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0836090Z copying torch/include/ATen/ops/to_sparse_bsr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0837310Z copying torch/include/ATen/ops/digamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0838510Z copying torch/include/ATen/ops/lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0839680Z copying torch/include/ATen/ops/digamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0840990Z copying torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0842150Z copying torch/include/ATen/ops/col_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0843310Z copying torch/include/ATen/ops/tile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0844510Z copying torch/include/ATen/ops/mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0845700Z copying torch/include/ATen/ops/movedim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0847010Z copying torch/include/ATen/ops/bincount_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0848100Z copying torch/include/ATen/ops/tril_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0849350Z copying torch/include/ATen/ops/logical_xor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0850550Z copying torch/include/ATen/ops/_nested_view_from_jagged_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0851780Z copying torch/include/ATen/ops/matrix_H_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0852960Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0854210Z copying torch/include/ATen/ops/bitwise_not_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0855390Z copying torch/include/ATen/ops/_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0856680Z copying torch/include/ATen/ops/addbmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0857880Z copying torch/include/ATen/ops/sym_storage_offset_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0859060Z copying torch/include/ATen/ops/ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0860350Z copying torch/include/ATen/ops/quantized_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0861490Z copying torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0862690Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0863820Z copying torch/include/ATen/ops/eq_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0865080Z copying torch/include/ATen/ops/angle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0866250Z copying torch/include/ATen/ops/take_along_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0867480Z copying torch/include/ATen/ops/_dimI_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0868690Z copying torch/include/ATen/ops/atan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0869980Z copying torch/include/ATen/ops/unfold_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0871230Z copying torch/include/ATen/ops/_sparse_sparse_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0872520Z copying torch/include/ATen/ops/_debug_has_internal_overlap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0873770Z copying torch/include/ATen/ops/special_modified_bessel_i0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0874960Z copying torch/include/ATen/ops/special_ndtri_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0876360Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0877500Z copying torch/include/ATen/ops/resize_as_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0878680Z copying torch/include/ATen/ops/to_mkldnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0879870Z copying torch/include/ATen/ops/le.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0881060Z copying torch/include/ATen/ops/fft_ihfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0882250Z copying torch/include/ATen/ops/lstm_mps_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0883510Z copying torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0884700Z copying torch/include/ATen/ops/transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0885890Z copying torch/include/ATen/ops/meshgrid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0887160Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0888410Z copying torch/include/ATen/ops/_cudnn_rnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0889900Z copying torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0891200Z copying torch/include/ATen/ops/_fused_adam_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0892400Z copying torch/include/ATen/ops/copy_sparse_to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0893780Z copying torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0895010Z copying torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0896190Z copying torch/include/ATen/ops/special_gammainc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0897430Z copying torch/include/ATen/ops/embedding_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0898640Z copying torch/include/ATen/ops/adaptive_max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0900000Z copying torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0901290Z copying torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0902410Z copying torch/include/ATen/ops/fft_hfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0903690Z copying torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0910900Z copying torch/include/ATen/ops/split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0912220Z copying torch/include/ATen/ops/empty_permuted.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0913520Z copying torch/include/ATen/ops/smm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0918750Z copying torch/include/ATen/ops/_foreach_expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0919890Z copying torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0926270Z copying torch/include/ATen/ops/is_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0928410Z copying torch/include/ATen/ops/fft_fftshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0933890Z copying torch/include/ATen/ops/_convolution_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0934800Z copying torch/include/ATen/ops/diagonal_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0937630Z copying torch/include/ATen/ops/sym_constrain_range_for_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0942750Z copying torch/include/ATen/ops/_unique_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0946700Z copying torch/include/ATen/ops/cdist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0952000Z copying torch/include/ATen/ops/conv_tbc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0954880Z copying torch/include/ATen/ops/triangular_solve_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0959980Z copying torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0960890Z copying torch/include/ATen/ops/unique_dim_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0964410Z copying torch/include/ATen/ops/searchsorted_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0968320Z copying torch/include/ATen/ops/logspace_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0972810Z copying torch/include/ATen/ops/record_stream_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0973720Z copying torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0977170Z copying torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0982140Z copying torch/include/ATen/ops/zero_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0985500Z copying torch/include/ATen/ops/frac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0990360Z copying torch/include/ATen/ops/binomial_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0991340Z copying torch/include/ATen/ops/fft_ihfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0994490Z copying torch/include/ATen/ops/amin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.0999030Z copying torch/include/ATen/ops/hamming_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1002010Z copying torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1003010Z copying torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1008740Z copying torch/include/ATen/ops/indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1010030Z copying torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1017970Z copying torch/include/ATen/ops/bitwise_and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1024350Z copying torch/include/ATen/ops/searchsorted_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1025410Z copying torch/include/ATen/ops/histc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1026770Z copying torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1032830Z copying torch/include/ATen/ops/is_pinned_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1033690Z copying torch/include/ATen/ops/empty_quantized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1039950Z copying torch/include/ATen/ops/cholesky_inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1041100Z copying torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1047850Z copying torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1048650Z copying torch/include/ATen/ops/arctanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1049800Z copying torch/include/ATen/ops/alias_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1055290Z copying torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1056480Z copying torch/include/ATen/ops/linalg_pinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1062590Z copying torch/include/ATen/ops/instance_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1063570Z copying torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1070790Z copying torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1071760Z copying torch/include/ATen/ops/erf_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1072880Z copying torch/include/ATen/ops/scatter_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1079150Z copying torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1079880Z copying torch/include/ATen/ops/kron_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1085900Z copying torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1087670Z copying torch/include/ATen/ops/arctan2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1093870Z copying torch/include/ATen/ops/eye.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1094850Z copying torch/include/ATen/ops/_foreach_log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1096050Z copying torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1102950Z copying torch/include/ATen/ops/_foreach_sqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1104150Z copying torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1110420Z copying torch/include/ATen/ops/silu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1111880Z copying torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1119340Z copying torch/include/ATen/ops/nll_loss2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1120300Z copying torch/include/ATen/ops/rnn_relu_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1127400Z copying torch/include/ATen/ops/bitwise_or_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1128350Z copying torch/include/ATen/ops/bartlett_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1135080Z copying torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1136220Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1137480Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1142470Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1145420Z copying torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1146600Z copying torch/include/ATen/ops/empty_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1152330Z copying torch/include/ATen/ops/_linalg_check_errors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1153130Z copying torch/include/ATen/ops/cudnn_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1159810Z copying torch/include/ATen/ops/_gather_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1160730Z copying torch/include/ATen/ops/empty_strided_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1166650Z copying torch/include/ATen/ops/view_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1168220Z copying torch/include/ATen/ops/special_entr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1169780Z copying torch/include/ATen/ops/sinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1176810Z copying torch/include/ATen/ops/_nested_from_padded_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1177890Z copying torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1184470Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1185590Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1192230Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1193070Z copying torch/include/ATen/ops/frac_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1194300Z copying torch/include/ATen/ops/special_i1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1199850Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1201050Z copying torch/include/ATen/ops/_foreach_tan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1207780Z copying torch/include/ATen/ops/tan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1208600Z copying torch/include/ATen/ops/frobenius_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1209900Z copying torch/include/ATen/ops/linalg_matrix_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1216110Z copying torch/include/ATen/ops/sgn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1224710Z copying torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1225610Z copying torch/include/ATen/ops/_trilinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1232950Z copying torch/include/ATen/ops/glu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1234170Z copying torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1235480Z copying torch/include/ATen/ops/cudnn_convolution_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1241580Z copying torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1242390Z copying torch/include/ATen/ops/as_strided_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1249110Z copying torch/include/ATen/ops/_test_optional_floatlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1250170Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1251350Z copying torch/include/ATen/ops/sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1257050Z copying torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1257770Z copying torch/include/ATen/ops/special_xlog1py.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1264560Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1265710Z copying torch/include/ATen/ops/inner_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1266940Z copying torch/include/ATen/ops/elu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1273110Z copying torch/include/ATen/ops/_foreach_round_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1280250Z copying torch/include/ATen/ops/equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1281590Z copying torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1282870Z copying torch/include/ATen/ops/linalg_lu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1289860Z copying torch/include/ATen/ops/unbind_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1290890Z copying torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1297790Z copying torch/include/ATen/ops/_to_sparse_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1299290Z copying torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1300680Z copying torch/include/ATen/ops/_pin_memory_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1305220Z copying torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1306970Z copying torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1313120Z copying torch/include/ATen/ops/linalg_det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1314780Z copying torch/include/ATen/ops/chalf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1316240Z copying torch/include/ATen/ops/_sobol_engine_scramble_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1323130Z copying torch/include/ATen/ops/floor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1324410Z copying torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1330260Z copying torch/include/ATen/ops/special_polygamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1331280Z copying torch/include/ATen/ops/values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1338120Z copying torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1339170Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1340510Z copying torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1345780Z copying torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1346530Z copying torch/include/ATen/ops/gelu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1352860Z copying torch/include/ATen/ops/adaptive_avg_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1354710Z copying torch/include/ATen/ops/cumsum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1360470Z copying torch/include/ATen/ops/bernoulli_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1361990Z copying torch/include/ATen/ops/_assert_async_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1363310Z copying torch/include/ATen/ops/isposinf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1368920Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1370130Z copying torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1376020Z copying torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1378300Z copying torch/include/ATen/ops/special_i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1384560Z copying torch/include/ATen/ops/linalg_cond_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1385540Z copying torch/include/ATen/ops/to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1387070Z copying torch/include/ATen/ops/_linalg_svd_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1392690Z copying torch/include/ATen/ops/angle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1393670Z copying torch/include/ATen/ops/softplus_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1399980Z copying torch/include/ATen/ops/allclose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1401250Z copying torch/include/ATen/ops/special_i1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1407550Z copying torch/include/ATen/ops/_embedding_bag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1408850Z copying torch/include/ATen/ops/kaiser_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1410160Z copying torch/include/ATen/ops/_unpack_dual_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1415390Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1416700Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1424420Z copying torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1426120Z copying torch/include/ATen/ops/clamp_min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1431070Z copying torch/include/ATen/ops/expand_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1432380Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1433490Z copying torch/include/ATen/ops/binary_cross_entropy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1439370Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1448860Z copying torch/include/ATen/ops/_debug_has_internal_overlap_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1454050Z copying torch/include/ATen/ops/values_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1455310Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1456640Z copying torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1462510Z copying torch/include/ATen/ops/soft_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1463430Z copying torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1470610Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1471690Z copying torch/include/ATen/ops/special_modified_bessel_k1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1478120Z copying torch/include/ATen/ops/rsqrt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1478740Z copying torch/include/ATen/ops/to_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1486970Z copying torch/include/ATen/ops/fmin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1487600Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1488190Z copying torch/include/ATen/ops/scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1494140Z copying torch/include/ATen/ops/scaled_dot_product_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1495500Z copying torch/include/ATen/ops/mode_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1501980Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1502820Z copying torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1504020Z copying torch/include/ATen/ops/masked_select_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1509840Z copying torch/include/ATen/ops/_foreach_rsqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1511320Z copying torch/include/ATen/ops/_test_ambiguous_defaults.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1518020Z copying torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1519020Z copying torch/include/ATen/ops/mul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1520550Z copying torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1525760Z copying torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1526600Z copying torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1529560Z copying torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1535580Z copying torch/include/ATen/ops/_nested_from_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1538340Z copying torch/include/ATen/ops/upsample_nearest2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1543680Z copying torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1544610Z copying torch/include/ATen/ops/sparse_csc_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1546510Z copying torch/include/ATen/ops/gcd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1551740Z copying torch/include/ATen/ops/_dimV.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1552780Z copying torch/include/ATen/ops/batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1559990Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1561380Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1567830Z copying torch/include/ATen/ops/native_layer_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1568590Z copying torch/include/ATen/ops/special_ndtr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1569910Z copying torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1575560Z copying torch/include/ATen/ops/retain_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1583800Z copying torch/include/ATen/ops/asin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1584760Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1591600Z copying torch/include/ATen/ops/column_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1592440Z copying torch/include/ATen/ops/_weight_int8pack_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1593770Z copying torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1599750Z copying torch/include/ATen/ops/_flash_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1600650Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1607200Z copying torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1609190Z copying torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1616830Z copying torch/include/ATen/ops/logit_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1617830Z copying torch/include/ATen/ops/log_normal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1625010Z copying torch/include/ATen/ops/qr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1626340Z copying torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1627360Z copying torch/include/ATen/ops/trunc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1632720Z copying torch/include/ATen/ops/miopen_rnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1782750Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1783980Z copying torch/include/ATen/ops/_foreach_sub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1785210Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1786620Z copying torch/include/ATen/ops/_wrapped_linear_prepack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1787780Z copying torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1788910Z copying torch/include/ATen/ops/clamp_min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1790120Z copying torch/include/ATen/ops/is_leaf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1791500Z copying torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1792750Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1793760Z copying torch/include/ATen/ops/ldexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1795080Z copying torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1796370Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1797530Z copying torch/include/ATen/ops/upsample_nearest3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1798680Z copying torch/include/ATen/ops/bmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1799880Z copying torch/include/ATen/ops/linalg_inv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1801270Z copying torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1802610Z copying torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1803860Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1804990Z copying torch/include/ATen/ops/_pack_padded_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1806270Z copying torch/include/ATen/ops/randperm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1807400Z copying torch/include/ATen/ops/index_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1808630Z copying torch/include/ATen/ops/lu_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1809820Z copying torch/include/ATen/ops/dense_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1811060Z copying torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1812220Z copying torch/include/ATen/ops/exp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1813490Z copying torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1814710Z copying torch/include/ATen/ops/margin_ranking_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1815910Z copying torch/include/ATen/ops/bitwise_right_shift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1817160Z copying torch/include/ATen/ops/sparse_csr_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1818430Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1819630Z copying torch/include/ATen/ops/sqrt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1820930Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1822060Z copying torch/include/ATen/ops/index_fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1823310Z copying torch/include/ATen/ops/maximum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1824650Z copying torch/include/ATen/ops/asinh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1825840Z copying torch/include/ATen/ops/bitwise_not_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1827100Z copying torch/include/ATen/ops/random_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1828520Z copying torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1829720Z copying torch/include/ATen/ops/_foreach_expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1831020Z copying torch/include/ATen/ops/special_spherical_bessel_j0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1832190Z copying torch/include/ATen/ops/special_entr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1833420Z copying torch/include/ATen/ops/upsample_bilinear2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1834600Z copying torch/include/ATen/ops/erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1835790Z copying torch/include/ATen/ops/_cast_Char.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1837100Z copying torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1838330Z copying torch/include/ATen/ops/trace_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1839460Z copying torch/include/ATen/ops/hinge_embedding_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1840760Z copying torch/include/ATen/ops/bartlett_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1842000Z copying torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1843240Z copying torch/include/ATen/ops/indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1844440Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1845960Z copying torch/include/ATen/ops/unsafe_chunk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1847240Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1848420Z copying torch/include/ATen/ops/_dirichlet_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1849710Z copying torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1850910Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1852090Z copying torch/include/ATen/ops/glu_backward_jvp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1853260Z copying torch/include/ATen/ops/igammac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1854560Z copying torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1855880Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1857230Z copying torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1858260Z copying torch/include/ATen/ops/reflection_pad3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1859530Z copying torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1860740Z copying torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1862660Z copying torch/include/ATen/ops/gt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1864070Z copying torch/include/ATen/ops/_nnpack_available_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1868430Z copying torch/include/ATen/ops/fft_fft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1871520Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1875910Z copying torch/include/ATen/ops/relu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1877010Z copying torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1880020Z copying torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1884890Z copying torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1888020Z copying torch/include/ATen/ops/_shape_as_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1892050Z copying torch/include/ATen/ops/logical_and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1893040Z copying torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1897270Z copying torch/include/ATen/ops/diff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1900720Z copying torch/include/ATen/ops/round_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1904690Z copying torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1905500Z copying torch/include/ATen/ops/softplus_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1909700Z copying torch/include/ATen/ops/bincount_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1914150Z copying torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1919040Z copying torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1921120Z copying torch/include/ATen/ops/_mkldnn_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1922410Z copying torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1928940Z copying torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1930090Z copying torch/include/ATen/ops/grid_sampler_2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1936080Z copying torch/include/ATen/ops/hash_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1937540Z copying torch/include/ATen/ops/special_digamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1943840Z copying torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1944720Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1945920Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1952590Z copying torch/include/ATen/ops/isposinf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1953690Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1959910Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1961170Z copying torch/include/ATen/ops/floor_divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1967430Z copying torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1968630Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1969850Z copying torch/include/ATen/ops/_cast_Char_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1975480Z copying torch/include/ATen/ops/embedding_renorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1976480Z copying torch/include/ATen/ops/promote_types_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1983460Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1984890Z copying torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1991150Z copying torch/include/ATen/ops/_to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1991960Z copying torch/include/ATen/ops/cov_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1993170Z copying torch/include/ATen/ops/greater_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.1998480Z copying torch/include/ATen/ops/gather_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2000030Z copying torch/include/ATen/ops/scaled_dot_product_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2002150Z copying torch/include/ATen/ops/_is_all_true_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2008010Z copying torch/include/ATen/ops/nonzero_numpy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2011360Z copying torch/include/ATen/ops/masked_scatter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2016190Z copying torch/include/ATen/ops/hardsigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2017470Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2020640Z copying torch/include/ATen/ops/msort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2025590Z copying torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2028420Z copying torch/include/ATen/ops/hstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2029550Z copying torch/include/ATen/ops/_unique2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2034950Z copying torch/include/ATen/ops/divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2036200Z copying torch/include/ATen/ops/randn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2042480Z copying torch/include/ATen/ops/var_mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2043360Z copying torch/include/ATen/ops/special_xlog1py_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2050070Z copying torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2058220Z copying torch/include/ATen/ops/hardsigmoid_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2059470Z copying torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2067570Z copying torch/include/ATen/ops/_linalg_svd_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2073830Z copying torch/include/ATen/ops/_sparse_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2075190Z copying torch/include/ATen/ops/q_per_channel_axis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2076540Z copying torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2081770Z copying torch/include/ATen/ops/_fused_adamw_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2082960Z copying torch/include/ATen/ops/complex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2089070Z copying torch/include/ATen/ops/fix_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2091260Z copying torch/include/ATen/ops/upsample_bicubic2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2097140Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2098200Z copying torch/include/ATen/ops/cat_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2099480Z copying torch/include/ATen/ops/_empty_affine_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2105390Z copying torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2112800Z copying torch/include/ATen/ops/to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2114220Z copying torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2118930Z copying torch/include/ATen/ops/_foreach_div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2121010Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2122330Z copying torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2123560Z copying torch/include/ATen/ops/segment_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2128050Z copying torch/include/ATen/ops/cos_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2129550Z copying torch/include/ATen/ops/linalg_tensorinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2136020Z copying torch/include/ATen/ops/fft_ifft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2137450Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2143890Z copying torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2144790Z copying torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2146010Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2151580Z copying torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2152750Z copying torch/include/ATen/ops/sym_stride.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2159200Z copying torch/include/ATen/ops/special_hermite_polynomial_h_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2161090Z copying torch/include/ATen/ops/tan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2167330Z copying torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2168160Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2170080Z copying torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2175210Z copying torch/include/ATen/ops/triu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2176070Z copying torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2183020Z copying torch/include/ATen/ops/hardshrink_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2184300Z copying torch/include/ATen/ops/argmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2190850Z copying torch/include/ATen/ops/softshrink_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2191590Z copying torch/include/ATen/ops/randn_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2192790Z copying torch/include/ATen/ops/histogram_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2198380Z copying torch/include/ATen/ops/dstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2199210Z copying torch/include/ATen/ops/_to_sparse_csc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2205880Z copying torch/include/ATen/ops/binary_cross_entropy_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2207230Z copying torch/include/ATen/ops/_int_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2214110Z copying torch/include/ATen/ops/_lu_with_info_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2214950Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2216310Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2222330Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2223330Z copying torch/include/ATen/ops/trace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2230020Z copying torch/include/ATen/ops/matrix_exp_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2231440Z copying torch/include/ATen/ops/indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2238120Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2239020Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2240420Z copying torch/include/ATen/ops/_grouped_mm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2246280Z copying torch/include/ATen/ops/gru_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2247050Z copying torch/include/ATen/ops/_cudnn_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2253710Z copying torch/include/ATen/ops/elu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2254780Z copying torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2256010Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2257170Z copying torch/include/ATen/ops/_test_warn_in_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2262100Z copying torch/include/ATen/ops/arcsin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2263380Z copying torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2270100Z copying torch/include/ATen/ops/adaptive_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2271420Z copying torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2278410Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2279300Z copying torch/include/ATen/ops/atleast_3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2280540Z copying torch/include/ATen/ops/kthvalue_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2286360Z copying torch/include/ATen/ops/_spsolve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2287190Z copying torch/include/ATen/ops/_foreach_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2293890Z copying torch/include/ATen/ops/smooth_l1_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2295320Z copying torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2296510Z copying torch/include/ATen/ops/to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2299300Z copying torch/include/ATen/ops/mkldnn_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2303100Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2304360Z copying torch/include/ATen/ops/trapz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2310020Z copying torch/include/ATen/ops/_trilinear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2311170Z copying torch/include/ATen/ops/native_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2318980Z copying torch/include/ATen/ops/linear_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2326610Z copying torch/include/ATen/ops/_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2327820Z copying torch/include/ATen/ops/dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2334790Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2335600Z copying torch/include/ATen/ops/randperm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2336900Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2341960Z copying torch/include/ATen/ops/less_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2343330Z copying torch/include/ATen/ops/mse_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2349560Z copying torch/include/ATen/ops/nll_loss2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2350900Z copying torch/include/ATen/ops/qscheme_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2352150Z copying torch/include/ATen/ops/cumprod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2359490Z copying torch/include/ATen/ops/bmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2368100Z copying torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2369220Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2376070Z copying torch/include/ATen/ops/blackman_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2377100Z copying torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2378290Z copying torch/include/ATen/ops/elu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2383870Z copying torch/include/ATen/ops/triu_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2385060Z copying torch/include/ATen/ops/conv_transpose3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2391920Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2393040Z copying torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2394310Z copying torch/include/ATen/ops/gelu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2400160Z copying torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2400970Z copying torch/include/ATen/ops/index_select_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2407230Z copying torch/include/ATen/ops/dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2408690Z copying torch/include/ATen/ops/lstm_mps_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2410120Z copying torch/include/ATen/ops/cartesian_prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2415930Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2416840Z copying torch/include/ATen/ops/_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2424650Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2425900Z copying torch/include/ATen/ops/ormqr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2432320Z copying torch/include/ATen/ops/hardshrink_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2433280Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2434650Z copying torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2439640Z copying torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2447430Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2448390Z copying torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2450420Z copying torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2455920Z copying torch/include/ATen/ops/channel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2457040Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2460370Z copying torch/include/ATen/ops/indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2465710Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2468120Z copying torch/include/ATen/ops/ge_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2473710Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2474910Z copying torch/include/ATen/ops/minimum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2476660Z copying torch/include/ATen/ops/_dimI_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2482150Z copying torch/include/ATen/ops/resize_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2483150Z copying torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2486740Z copying torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2491220Z copying torch/include/ATen/ops/or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2494970Z copying torch/include/ATen/ops/is_same_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2498460Z copying torch/include/ATen/ops/cumsum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2499510Z copying torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2504230Z copying torch/include/ATen/ops/set_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2507520Z copying torch/include/ATen/ops/exponential_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2512330Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2513590Z copying torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2516930Z copying torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2522180Z copying torch/include/ATen/ops/copysign_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2525190Z copying torch/include/ATen/ops/asin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2529130Z copying torch/include/ATen/ops/upsample_nearest3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2530290Z copying torch/include/ATen/ops/mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2534560Z copying torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2537720Z copying torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2538650Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2543620Z copying torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2546720Z copying torch/include/ATen/ops/_foreach_sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2552710Z copying torch/include/ATen/ops/alias_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2553810Z copying torch/include/ATen/ops/ormqr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2560710Z copying torch/include/ATen/ops/hash_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2561610Z copying torch/include/ATen/ops/hsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2562910Z copying torch/include/ATen/ops/hash_tensor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2566470Z copying torch/include/ATen/ops/heaviside_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2567780Z copying torch/include/ATen/ops/kaiser_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2569900Z copying torch/include/ATen/ops/fft_fftfreq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2575520Z copying torch/include/ATen/ops/greater_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2576660Z copying torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2582880Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2584230Z copying torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2590620Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2591530Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2592710Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2598100Z copying torch/include/ATen/ops/asin_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2599030Z copying torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2605790Z copying torch/include/ATen/ops/special_modified_bessel_k0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2613940Z copying torch/include/ATen/ops/vsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2614790Z copying torch/include/ATen/ops/_linalg_eigh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2616140Z copying torch/include/ATen/ops/special_modified_bessel_i1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2622110Z copying torch/include/ATen/ops/nanmedian_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2623020Z copying torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2629420Z copying torch/include/ATen/ops/addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2630820Z copying torch/include/ATen/ops/atan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2637980Z copying torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2639000Z copying torch/include/ATen/ops/channel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2640190Z copying torch/include/ATen/ops/glu_jvp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2643680Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2644760Z copying torch/include/ATen/ops/mkldnn_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2646010Z copying torch/include/ATen/ops/_is_all_true.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2652520Z copying torch/include/ATen/ops/le_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2653630Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2660370Z copying torch/include/ATen/ops/polygamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2661580Z copying torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2668120Z copying torch/include/ATen/ops/index_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2669340Z copying torch/include/ATen/ops/max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2670650Z copying torch/include/ATen/ops/special_hermite_polynomial_he_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2676210Z copying torch/include/ATen/ops/_nested_get_values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2677040Z copying torch/include/ATen/ops/addmv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2684090Z copying torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2685210Z copying torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2686230Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2692730Z copying torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2693830Z copying torch/include/ATen/ops/as_strided_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2700340Z copying torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2701740Z copying torch/include/ATen/ops/embedding_bag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2708060Z copying torch/include/ATen/ops/flatten_dense_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2708870Z copying torch/include/ATen/ops/fft_hfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2710030Z copying torch/include/ATen/ops/mvlgamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2715820Z copying torch/include/ATen/ops/_cudnn_rnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2716470Z copying torch/include/ATen/ops/isreal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2719690Z copying torch/include/ATen/ops/cumprod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2724800Z copying torch/include/ATen/ops/logical_xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2728590Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2733310Z copying torch/include/ATen/ops/_unsafe_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2734310Z copying torch/include/ATen/ops/_conj_physical_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2737700Z copying torch/include/ATen/ops/cos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2742110Z copying torch/include/ATen/ops/fft_fftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2745230Z copying torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2746410Z copying torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2751190Z copying torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2754520Z copying torch/include/ATen/ops/rnn_tanh_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2759190Z copying torch/include/ATen/ops/_embedding_bag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2760080Z copying torch/include/ATen/ops/_weight_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2763250Z copying torch/include/ATen/ops/eq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2768670Z copying torch/include/ATen/ops/_efficient_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2769640Z copying torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2778230Z copying torch/include/ATen/ops/cumprod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2783970Z copying torch/include/ATen/ops/_fused_rms_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2784990Z copying torch/include/ATen/ops/fmod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2786390Z copying torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2792030Z copying torch/include/ATen/ops/_fft_c2c.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2793200Z copying torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2800020Z copying torch/include/ATen/ops/_to_sparse_bsc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2801400Z copying torch/include/ATen/ops/pad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2807840Z copying torch/include/ATen/ops/special_modified_bessel_i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2808690Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2809850Z copying torch/include/ATen/ops/arcsinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2813260Z copying torch/include/ATen/ops/addr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2814510Z copying torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2816280Z copying torch/include/ATen/ops/cudnn_convolution_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2822560Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2823900Z copying torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2830440Z copying torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2831350Z copying torch/include/ATen/ops/_fused_rms_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2838440Z copying torch/include/ATen/ops/lu_unpack_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2839420Z copying torch/include/ATen/ops/_coalesced_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2840650Z copying torch/include/ATen/ops/_scaled_grouped_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2846080Z copying torch/include/ATen/ops/special_erfcx_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2847630Z copying torch/include/ATen/ops/var_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2853640Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2854750Z copying torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2856020Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2863010Z copying torch/include/ATen/ops/_triton_multi_head_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2864180Z copying torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2870880Z copying torch/include/ATen/ops/var_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2871970Z copying torch/include/ATen/ops/tanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2878290Z copying torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2879390Z copying torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2880560Z copying torch/include/ATen/ops/lgamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2886510Z copying torch/include/ATen/ops/_scaled_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2887420Z copying torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2894600Z copying torch/include/ATen/ops/to_mkldnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2895620Z copying torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2896990Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2903340Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2904180Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2911100Z copying torch/include/ATen/ops/replication_pad3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2911940Z copying torch/include/ATen/ops/bmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2913170Z copying torch/include/ATen/ops/_to_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2919120Z copying torch/include/ATen/ops/batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2920260Z copying torch/include/ATen/ops/log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2927130Z copying torch/include/ATen/ops/igamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2928020Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2929140Z copying torch/include/ATen/ops/new_full.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2935620Z copying torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2936320Z copying torch/include/ATen/ops/embedding_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2943100Z copying torch/include/ATen/ops/linalg_slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2944510Z copying torch/include/ATen/ops/fft_rfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2950850Z copying torch/include/ATen/ops/_foreach_atan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2951580Z copying torch/include/ATen/ops/clip.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2952950Z copying torch/include/ATen/ops/reshape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2958430Z copying torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2959460Z copying torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2966340Z copying torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2967950Z copying torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2974010Z copying torch/include/ATen/ops/_cslt_sparse_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2975290Z copying torch/include/ATen/ops/isneginf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2976800Z copying torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2982380Z copying torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2983450Z copying torch/include/ATen/ops/view_as_complex_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2990060Z copying torch/include/ATen/ops/mvlgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2991640Z copying torch/include/ATen/ops/permute_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2998260Z copying torch/include/ATen/ops/sgn_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.2999270Z copying torch/include/ATen/ops/sign_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3000550Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3006440Z copying torch/include/ATen/ops/atan_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3007530Z copying torch/include/ATen/ops/reflection_pad2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3014070Z copying torch/include/ATen/ops/_foreach_minimum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3015430Z copying torch/include/ATen/ops/int_repr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3021580Z copying torch/include/ATen/ops/heaviside_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3022660Z copying torch/include/ATen/ops/column_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3023970Z copying torch/include/ATen/ops/scatter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3030540Z copying torch/include/ATen/ops/minimum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3031510Z copying torch/include/ATen/ops/to_sparse_bsc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3038640Z copying torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3039940Z copying torch/include/ATen/ops/from_file_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3046440Z copying torch/include/ATen/ops/miopen_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3048770Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3054310Z copying torch/include/ATen/ops/sinc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3055890Z copying torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3057060Z copying torch/include/ATen/ops/real_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3062880Z copying torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3064000Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3067060Z copying torch/include/ATen/ops/align_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3072650Z copying torch/include/ATen/ops/acos_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3073570Z copying torch/include/ATen/ops/minimum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3076640Z copying torch/include/ATen/ops/special_bessel_y0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3084580Z copying torch/include/ATen/ops/sspaddmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3086110Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3092200Z copying torch/include/ATen/ops/logdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3093230Z copying torch/include/ATen/ops/cauchy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3094520Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3100520Z copying torch/include/ATen/ops/is_vulkan_available_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3101420Z copying torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3108140Z copying torch/include/ATen/ops/gt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3109040Z copying torch/include/ATen/ops/ccol_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3110290Z copying torch/include/ATen/ops/normal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3115960Z copying torch/include/ATen/ops/cudnn_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3117110Z copying torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3123360Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3125780Z copying torch/include/ATen/ops/_to_sparse_bsc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3131760Z copying torch/include/ATen/ops/linalg_eigh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3132710Z copying torch/include/ATen/ops/upsample_bilinear2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3134040Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3139510Z copying torch/include/ATen/ops/rnn_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3140450Z copying torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3143200Z copying torch/include/ATen/ops/replication_pad1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3149160Z copying torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3150150Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3156560Z copying torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3164480Z copying torch/include/ATen/ops/sym_constrain_range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3172570Z copying torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3173380Z copying torch/include/ATen/ops/leaky_relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3180190Z copying torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3188820Z copying torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3190160Z copying torch/include/ATen/ops/linalg_ldl_factor_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3195460Z copying torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3196930Z copying torch/include/ATen/ops/heaviside_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3199840Z copying torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3205120Z copying torch/include/ATen/ops/histc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3206260Z copying torch/include/ATen/ops/_pad_packed_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3213400Z copying torch/include/ATen/ops/q_per_channel_zero_points_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3215020Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3221620Z copying torch/include/ATen/ops/square.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3222740Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3223930Z copying torch/include/ATen/ops/diagflat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3229410Z copying torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3230670Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3237050Z copying torch/include/ATen/ops/prod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3237970Z copying torch/include/ATen/ops/cdist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3239370Z copying torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3244450Z copying torch/include/ATen/ops/special_expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3246260Z copying torch/include/ATen/ops/atleast_1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3251560Z copying torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3252620Z copying torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3258930Z copying torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3260350Z copying torch/include/ATen/ops/conv_transpose1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3267080Z copying torch/include/ATen/ops/_assert_async_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3268040Z copying torch/include/ATen/ops/fft_rfftfreq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3269360Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3276770Z copying torch/include/ATen/ops/cummax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3284160Z copying torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3285530Z copying torch/include/ATen/ops/normal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3292110Z copying torch/include/ATen/ops/leaky_relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3293090Z copying torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3294220Z copying torch/include/ATen/ops/cumsum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3300650Z copying torch/include/ATen/ops/reflection_pad2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3301830Z copying torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3307600Z copying torch/include/ATen/ops/histogram_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3308660Z copying torch/include/ATen/ops/_foreach_acos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3309920Z copying torch/include/ATen/ops/softshrink_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3315380Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3316770Z copying torch/include/ATen/ops/amin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3322920Z copying torch/include/ATen/ops/_foreach_log_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3324440Z copying torch/include/ATen/ops/linalg_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3325810Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3332470Z copying torch/include/ATen/ops/linalg_matrix_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3333380Z copying torch/include/ATen/ops/avg_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3340670Z copying torch/include/ATen/ops/unfold_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3341570Z copying torch/include/ATen/ops/_batch_norm_no_update_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3348850Z copying torch/include/ATen/ops/sigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3349890Z copying torch/include/ATen/ops/clamp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3351110Z copying torch/include/ATen/ops/norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3356750Z copying torch/include/ATen/ops/trunc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3358220Z copying torch/include/ATen/ops/linalg_qr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3365720Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3367330Z copying torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3368040Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3372810Z copying torch/include/ATen/ops/avg_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3374200Z copying torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3380240Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3381160Z copying torch/include/ATen/ops/lt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3382580Z copying torch/include/ATen/ops/scatter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3388960Z copying torch/include/ATen/ops/crow_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3389980Z copying torch/include/ATen/ops/to_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3396660Z copying torch/include/ATen/ops/minimum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3397870Z copying torch/include/ATen/ops/pixel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3404250Z copying torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3405670Z copying torch/include/ATen/ops/view_as_complex_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3406640Z copying torch/include/ATen/ops/_foreach_clamp_min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3412380Z copying torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3414210Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3419810Z copying torch/include/ATen/ops/special_expit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3421720Z copying torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3428120Z copying torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3429310Z copying torch/include/ATen/ops/lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3431000Z copying torch/include/ATen/ops/binary_cross_entropy_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3436340Z copying torch/include/ATen/ops/elu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3444270Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3445270Z copying torch/include/ATen/ops/rename.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3446700Z copying torch/include/ATen/ops/addbmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3451840Z copying torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3454350Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3459760Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3460780Z copying torch/include/ATen/ops/xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3463760Z copying torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3469390Z copying torch/include/ATen/ops/max_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3470280Z copying torch/include/ATen/ops/log2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3477770Z copying torch/include/ATen/ops/sub_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3478640Z copying torch/include/ATen/ops/view_as_real_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3483930Z copying torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3485290Z copying torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3486440Z copying torch/include/ATen/ops/norm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3492150Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3492970Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3500130Z copying torch/include/ATen/ops/empty_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3501160Z copying torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3507520Z copying torch/include/ATen/ops/native_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3508930Z copying torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3510180Z copying torch/include/ATen/ops/_is_zerotensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3515050Z copying torch/include/ATen/ops/_log_softmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3516610Z copying torch/include/ATen/ops/col_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3523370Z copying torch/include/ATen/ops/diagonal_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3524350Z copying torch/include/ATen/ops/index_select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3531120Z copying torch/include/ATen/ops/gt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3531950Z copying torch/include/ATen/ops/vander.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3533260Z copying torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3538380Z copying torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3540100Z copying torch/include/ATen/ops/_unsafe_masked_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3546530Z copying torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3547770Z copying torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3554210Z copying torch/include/ATen/ops/signbit_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3555480Z copying torch/include/ATen/ops/_foreach_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3556750Z copying torch/include/ATen/ops/add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3561850Z copying torch/include/ATen/ops/_addmm_activation_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3563050Z copying torch/include/ATen/ops/maximum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3569580Z copying torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3570610Z copying torch/include/ATen/ops/elu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3577290Z copying torch/include/ATen/ops/quantized_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3578460Z copying torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3579940Z copying torch/include/ATen/ops/tril_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3585610Z copying torch/include/ATen/ops/special_bessel_j0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3586500Z copying torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3593430Z copying torch/include/ATen/ops/_test_optional_floatlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3594650Z copying torch/include/ATen/ops/_lazy_clone_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3600980Z copying torch/include/ATen/ops/silu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3602160Z copying torch/include/ATen/ops/_slow_conv2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3603460Z copying torch/include/ATen/ops/avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3608890Z copying torch/include/ATen/ops/result_type_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3609770Z copying torch/include/ATen/ops/lcm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3616960Z copying torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3618050Z copying torch/include/ATen/ops/q_per_channel_zero_points_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3625030Z copying torch/include/ATen/ops/special_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3625940Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3627210Z copying torch/include/ATen/ops/_make_dep_token_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3632990Z copying torch/include/ATen/ops/special_zeta_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3633920Z copying torch/include/ATen/ops/poisson_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3640480Z copying torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3641580Z copying torch/include/ATen/ops/_pad_packed_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3642920Z copying torch/include/ATen/ops/fft_irfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3648680Z copying torch/include/ATen/ops/softshrink_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3649980Z copying torch/include/ATen/ops/sum_to_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3656910Z copying torch/include/ATen/ops/trunc_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3657720Z copying torch/include/ATen/ops/transpose_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3662070Z copying torch/include/ATen/ops/trace_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3665650Z copying torch/include/ATen/ops/fft_rfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3672350Z copying torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3673220Z copying torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3679810Z copying torch/include/ATen/ops/one_hot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3680830Z copying torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3687110Z copying torch/include/ATen/ops/_to_sparse_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3687970Z copying torch/include/ATen/ops/atleast_2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3689360Z copying torch/include/ATen/ops/argmin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3695510Z copying torch/include/ATen/ops/_nested_from_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3696650Z copying torch/include/ATen/ops/randint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3704490Z copying torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3705470Z copying torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3711940Z copying torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3712910Z copying torch/include/ATen/ops/smooth_l1_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3714330Z copying torch/include/ATen/ops/broadcast_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3719360Z copying torch/include/ATen/ops/mkldnn_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3720770Z copying torch/include/ATen/ops/sym_constrain_range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3727470Z copying torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3728230Z copying torch/include/ATen/ops/fft_fftshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3729410Z copying torch/include/ATen/ops/glu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3735430Z copying torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3736160Z copying torch/include/ATen/ops/diag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3743280Z copying torch/include/ATen/ops/mse_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3744410Z copying torch/include/ATen/ops/gather_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3750870Z copying torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3751760Z copying torch/include/ATen/ops/median.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3752990Z copying torch/include/ATen/ops/rnn_relu_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3758230Z copying torch/include/ATen/ops/cummin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3759880Z copying torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3766280Z copying torch/include/ATen/ops/cummax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3767260Z copying torch/include/ATen/ops/native_layer_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3774450Z copying torch/include/ATen/ops/view_as_complex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3775380Z copying torch/include/ATen/ops/igammac_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3776650Z copying torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3782580Z copying torch/include/ATen/ops/linalg_qr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3783540Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3790100Z copying torch/include/ATen/ops/celu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3791480Z copying torch/include/ATen/ops/_functional_assert_scalar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3792840Z copying torch/include/ATen/ops/addr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3799220Z copying torch/include/ATen/ops/where.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3800260Z copying torch/include/ATen/ops/empty_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3806760Z copying torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3808260Z copying torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3814780Z copying torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3815940Z copying torch/include/ATen/ops/hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3817140Z copying torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3822510Z copying torch/include/ATen/ops/embedding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3823520Z copying torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3830550Z copying torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3831870Z copying torch/include/ATen/ops/sym_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3838270Z copying torch/include/ATen/ops/fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3839470Z copying torch/include/ATen/ops/relu6.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3840670Z copying torch/include/ATen/ops/_coalesce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3846210Z copying torch/include/ATen/ops/bitwise_right_shift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3847630Z copying torch/include/ATen/ops/nextafter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3855890Z copying torch/include/ATen/ops/reflection_pad3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3857370Z copying torch/include/ATen/ops/nonzero_static_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3863310Z copying torch/include/ATen/ops/_sobol_engine_initialize_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3864790Z copying torch/include/ATen/ops/range_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3866260Z copying torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3871330Z copying torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3872710Z copying torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3879560Z copying torch/include/ATen/ops/bmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3880880Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3887440Z copying torch/include/ATen/ops/_add_relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3888780Z copying torch/include/ATen/ops/triu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3894840Z copying torch/include/ATen/ops/negative.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3896100Z copying torch/include/ATen/ops/linalg_lstsq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3897530Z copying torch/include/ATen/ops/empty_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3902940Z copying torch/include/ATen/ops/argmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3904330Z copying torch/include/ATen/ops/_to_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3910840Z copying torch/include/ATen/ops/native_group_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3911960Z copying torch/include/ATen/ops/upsample_bicubic2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3913210Z copying torch/include/ATen/ops/arcsinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3919510Z copying torch/include/ATen/ops/q_per_channel_scales.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3920270Z copying torch/include/ATen/ops/tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3927240Z copying torch/include/ATen/ops/_test_optional_intlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3929720Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3935420Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3936370Z copying torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3943760Z copying torch/include/ATen/ops/pdist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3945210Z copying torch/include/ATen/ops/_test_string_default.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3951980Z copying torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3952970Z copying torch/include/ATen/ops/narrow_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3954360Z copying torch/include/ATen/ops/_sparse_semi_structured_tile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3959910Z copying torch/include/ATen/ops/argmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3961280Z copying torch/include/ATen/ops/_fused_sdp_choice_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3967880Z copying torch/include/ATen/ops/is_signed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3969020Z copying torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3970360Z copying torch/include/ATen/ops/_test_optional_intlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3976180Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3977020Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3984520Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3985350Z copying torch/include/ATen/ops/_weight_norm_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3986560Z copying torch/include/ATen/ops/atanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3992020Z copying torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3993470Z copying torch/include/ATen/ops/var_mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.3999910Z copying torch/include/ATen/ops/polar_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4001300Z copying torch/include/ATen/ops/square_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4002520Z copying torch/include/ATen/ops/argsort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4009360Z copying torch/include/ATen/ops/slice_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4010330Z copying torch/include/ATen/ops/erf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4017530Z copying torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4018540Z copying torch/include/ATen/ops/linalg_cholesky_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4025420Z copying torch/include/ATen/ops/_sparse_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4026650Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4027790Z copying torch/include/ATen/ops/norm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4033600Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4034340Z copying torch/include/ATen/ops/mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4041380Z copying torch/include/ATen/ops/_assert_tensor_metadata_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4042180Z copying torch/include/ATen/ops/_sparse_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4043490Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4049330Z copying torch/include/ATen/ops/empty_strided_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4050850Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4057190Z copying torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4060250Z copying torch/include/ATen/ops/chalf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4061370Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4065320Z copying torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4066420Z copying torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4072600Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4075170Z copying torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4080340Z copying torch/include/ATen/ops/_amp_update_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4081720Z copying torch/include/ATen/ops/hardswish_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4082820Z copying torch/include/ATen/ops/pow_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4089180Z copying torch/include/ATen/ops/frexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4090120Z copying torch/include/ATen/ops/cholesky_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4097080Z copying torch/include/ATen/ops/_dim_arange_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4098170Z copying torch/include/ATen/ops/median_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4104950Z copying torch/include/ATen/ops/sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4106130Z copying torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4107330Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4113070Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4114450Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4121830Z copying torch/include/ATen/ops/bernoulli_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4122960Z copying torch/include/ATen/ops/_nested_get_values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4124270Z copying torch/include/ATen/ops/masked_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4129430Z copying torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4130280Z copying torch/include/ATen/ops/_foreach_sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4137280Z copying torch/include/ATen/ops/logical_and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4138640Z copying torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4145510Z copying torch/include/ATen/ops/cudnn_is_acceptable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4146770Z copying torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4152840Z copying torch/include/ATen/ops/conv1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4154350Z copying torch/include/ATen/ops/lcm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4160590Z copying torch/include/ATen/ops/rrelu_with_noise_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4162000Z copying torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4163260Z copying torch/include/ATen/ops/special_modified_bessel_i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4169100Z copying torch/include/ATen/ops/empty_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4170650Z copying torch/include/ATen/ops/_make_dep_token.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4177740Z copying torch/include/ATen/ops/complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4179010Z copying torch/include/ATen/ops/max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4185440Z copying torch/include/ATen/ops/count_nonzero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4186520Z copying torch/include/ATen/ops/dense_dim_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4187780Z copying torch/include/ATen/ops/logaddexp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4193630Z copying torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4195060Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4201740Z copying torch/include/ATen/ops/adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4202960Z copying torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4204500Z copying torch/include/ATen/ops/special_modified_bessel_i1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4209660Z copying torch/include/ATen/ops/nansum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4210630Z copying torch/include/ATen/ops/cholesky_inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4217280Z copying torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4218070Z copying torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4219440Z copying torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4225170Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4226480Z copying torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4232340Z copying torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4234720Z copying torch/include/ATen/ops/scatter_reduce_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4240100Z copying torch/include/ATen/ops/floor_divide_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4240960Z copying torch/include/ATen/ops/_efficientzerotensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4242650Z copying torch/include/ATen/ops/_softmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4249340Z copying torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4250140Z copying torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4254570Z copying torch/include/ATen/ops/polygamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4257030Z copying torch/include/ATen/ops/lgamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4262630Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4266430Z copying torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4272880Z copying torch/include/ATen/ops/cholesky_inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4280180Z copying torch/include/ATen/ops/max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4281210Z copying torch/include/ATen/ops/rsqrt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4282510Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4288590Z copying torch/include/ATen/ops/row_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4289570Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4296050Z copying torch/include/ATen/ops/segment_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4297650Z copying torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4303420Z copying torch/include/ATen/ops/empty_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4304370Z copying torch/include/ATen/ops/_embedding_bag_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4305790Z copying torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4312740Z copying torch/include/ATen/ops/abs_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4313790Z copying torch/include/ATen/ops/moveaxis_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4320420Z copying torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4321930Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4328280Z copying torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4329250Z copying torch/include/ATen/ops/conj_physical.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4330400Z copying torch/include/ATen/ops/_foreach_asin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4336360Z copying torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4337320Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4344110Z copying torch/include/ATen/ops/deg2rad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4344990Z copying torch/include/ATen/ops/median_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4346280Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4351910Z copying torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4352750Z copying torch/include/ATen/ops/polygamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4359500Z copying torch/include/ATen/ops/_linalg_solve_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4360910Z copying torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4367010Z copying torch/include/ATen/ops/batch_norm_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4368380Z copying torch/include/ATen/ops/baddbmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4369700Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4376450Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4377500Z copying torch/include/ATen/ops/_linalg_solve_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4384170Z copying torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4385410Z copying torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4391940Z copying torch/include/ATen/ops/unfold_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4393000Z copying torch/include/ATen/ops/view_as_complex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4394180Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4399460Z copying torch/include/ATen/ops/huber_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4402780Z copying torch/include/ATen/ops/_ctc_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4407420Z copying torch/include/ATen/ops/pin_memory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4408700Z copying torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4410980Z copying torch/include/ATen/ops/logaddexp2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4416180Z copying torch/include/ATen/ops/stft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4417080Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4420830Z copying torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4425310Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4428190Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4429190Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4434670Z copying torch/include/ATen/ops/linalg_slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4437880Z copying torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4442080Z copying torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4443560Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4447720Z copying torch/include/ATen/ops/special_ndtri_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4451200Z copying torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4452110Z copying torch/include/ATen/ops/logit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4457660Z copying torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4460480Z copying torch/include/ATen/ops/nanmean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4464990Z copying torch/include/ATen/ops/to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4466660Z copying torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4469690Z copying torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4474730Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4477860Z copying torch/include/ATen/ops/polygamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4480980Z copying torch/include/ATen/ops/normal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4482570Z copying torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4487160Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4490390Z copying torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4496110Z copying torch/include/ATen/ops/add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4497620Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4503980Z copying torch/include/ATen/ops/special_gammainc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4504970Z copying torch/include/ATen/ops/batch_norm_gather_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4510870Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4512110Z copying torch/include/ATen/ops/sspaddmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4520940Z copying torch/include/ATen/ops/stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4521680Z copying torch/include/ATen/ops/isin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4528340Z copying torch/include/ATen/ops/multi_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4529330Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4530470Z copying torch/include/ATen/ops/svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4536050Z copying torch/include/ATen/ops/sparse_bsc_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4536940Z copying torch/include/ATen/ops/hspmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4543080Z copying torch/include/ATen/ops/conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4544610Z copying torch/include/ATen/ops/linalg_lu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4545870Z copying torch/include/ATen/ops/addmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4552390Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4553380Z copying torch/include/ATen/ops/clone_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4560240Z copying torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4561250Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4567780Z copying torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4568740Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4570100Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4576570Z copying torch/include/ATen/ops/linalg_eigvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4577370Z copying torch/include/ATen/ops/linalg_vander_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4584540Z copying torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4585280Z copying torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4586370Z copying torch/include/ATen/ops/conv_tbc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4592390Z copying torch/include/ATen/ops/isposinf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4593260Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4600180Z copying torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4601290Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4607800Z copying torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4609450Z copying torch/include/ATen/ops/triu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4615190Z copying torch/include/ATen/ops/scatter_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4616100Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4622800Z copying torch/include/ATen/ops/miopen_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4623960Z copying torch/include/ATen/ops/fill_diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4630420Z copying torch/include/ATen/ops/special_digamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4631660Z copying torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4632980Z copying torch/include/ATen/ops/_test_serialization_subcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4639500Z copying torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4640510Z copying torch/include/ATen/ops/_nested_get_values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4645950Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4647570Z copying torch/include/ATen/ops/neg_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4654370Z copying torch/include/ATen/ops/linalg_tensorinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4655350Z copying torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4656470Z copying torch/include/ATen/ops/sparse_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4662400Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4663490Z copying torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4670490Z copying torch/include/ATen/ops/linalg_matrix_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4671680Z copying torch/include/ATen/ops/_copy_from_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4679840Z copying torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4680710Z copying torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4681890Z copying torch/include/ATen/ops/linalg_vector_norm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4687350Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4688190Z copying torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4689600Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4696970Z copying torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4697800Z copying torch/include/ATen/ops/dequantize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4704720Z copying torch/include/ATen/ops/erfinv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4705980Z copying torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4712700Z copying torch/include/ATen/ops/sign_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4713800Z copying torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4715010Z copying torch/include/ATen/ops/_dimV_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4720160Z copying torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4721600Z copying torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4728180Z copying torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4729100Z copying torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4730400Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4737250Z copying torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4738210Z copying torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4745010Z copying torch/include/ATen/ops/_prelu_kernel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4745900Z copying torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4752340Z copying torch/include/ATen/ops/relu6_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4753330Z copying torch/include/ATen/ops/special_modified_bessel_k1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4754620Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4760040Z copying torch/include/ATen/ops/expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4760990Z copying torch/include/ATen/ops/kron.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4767290Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4768520Z copying torch/include/ATen/ops/cat_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4769740Z copying torch/include/ATen/ops/_linalg_check_errors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4776170Z copying torch/include/ATen/ops/triplet_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4777050Z copying torch/include/ATen/ops/tril.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4784320Z copying torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4785280Z copying torch/include/ATen/ops/fft_rfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4792460Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4793420Z copying torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4794680Z copying torch/include/ATen/ops/_remove_batch_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4800600Z copying torch/include/ATen/ops/linalg_cholesky_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4802060Z copying torch/include/ATen/ops/quantized_rnn_relu_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4808620Z copying torch/include/ATen/ops/silu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4809540Z copying torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4810840Z copying torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4816800Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4817700Z copying torch/include/ATen/ops/_to_sparse_semi_structured_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4825310Z copying torch/include/ATen/ops/hardshrink_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4826400Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4827560Z copying torch/include/ATen/ops/sym_stride_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4833560Z copying torch/include/ATen/ops/_make_dual_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4834590Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4841930Z copying torch/include/ATen/ops/hardswish_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4842940Z copying torch/include/ATen/ops/elu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4844160Z copying torch/include/ATen/ops/miopen_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4849610Z copying torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4850530Z copying torch/include/ATen/ops/abs_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4857380Z copying torch/include/ATen/ops/conv_transpose1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4858530Z copying torch/include/ATen/ops/isneginf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4865400Z copying torch/include/ATen/ops/adaptive_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4866450Z copying torch/include/ATen/ops/poisson_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4867580Z copying torch/include/ATen/ops/embedding_renorm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4873010Z copying torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4875090Z copying torch/include/ATen/ops/max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4881770Z copying torch/include/ATen/ops/minimum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4883520Z copying torch/include/ATen/ops/kthvalue_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4889370Z copying torch/include/ATen/ops/log_sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4890340Z copying torch/include/ATen/ops/_sobol_engine_ff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4893600Z copying torch/include/ATen/ops/native_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4899180Z copying torch/include/ATen/ops/block_diag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4901770Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4902710Z copying torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4908680Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4909570Z copying torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4916640Z copying torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4917420Z copying torch/include/ATen/ops/acosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4924440Z copying torch/include/ATen/ops/roll_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4925350Z copying torch/include/ATen/ops/_copy_from_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4926770Z copying torch/include/ATen/ops/_foreach_log2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4933120Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4934090Z copying torch/include/ATen/ops/linear_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4940650Z copying torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4942180Z copying torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4943580Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4950370Z copying torch/include/ATen/ops/native_batch_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4956700Z copying torch/include/ATen/ops/digamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4965000Z copying torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4966040Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4967460Z copying torch/include/ATen/ops/native_dropout_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4972220Z copying torch/include/ATen/ops/conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4973780Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4980440Z copying torch/include/ATen/ops/native_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4981490Z copying torch/include/ATen/ops/_unsafe_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4982590Z copying torch/include/ATen/ops/cosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4989450Z copying torch/include/ATen/ops/_nested_get_jagged_dummy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4990360Z copying torch/include/ATen/ops/record_stream_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4997300Z copying torch/include/ATen/ops/cudnn_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.4997970Z copying torch/include/ATen/ops/_unique2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5005560Z copying torch/include/ATen/ops/special_i1e_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5006550Z copying torch/include/ATen/ops/_foreach_log2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5007860Z copying torch/include/ATen/ops/native_dropout_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5013690Z copying torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5014870Z copying torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5021180Z copying torch/include/ATen/ops/_to_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5021950Z copying torch/include/ATen/ops/empty_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5023140Z copying torch/include/ATen/ops/_test_parallel_materialize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5029170Z copying torch/include/ATen/ops/bernoulli.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5030110Z copying torch/include/ATen/ops/_pad_circular_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5037280Z copying torch/include/ATen/ops/diagonal_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5038500Z copying torch/include/ATen/ops/index_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5040050Z copying torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5045390Z copying torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5046600Z copying torch/include/ATen/ops/size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5052470Z copying torch/include/ATen/ops/_log_softmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5054900Z copying torch/include/ATen/ops/replication_pad3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5060160Z copying torch/include/ATen/ops/special_psi.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5061110Z copying torch/include/ATen/ops/_log_softmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5062530Z copying torch/include/ATen/ops/addcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5068970Z copying torch/include/ATen/ops/sigmoid_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5069850Z copying torch/include/ATen/ops/select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5076350Z copying torch/include/ATen/ops/special_multigammaln_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5077480Z copying torch/include/ATen/ops/exp2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5084840Z copying torch/include/ATen/ops/_foreach_addcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5085650Z copying torch/include/ATen/ops/addmv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5086870Z copying torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5093810Z copying torch/include/ATen/ops/type_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5097930Z copying torch/include/ATen/ops/linalg_tensorsolve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5101760Z copying torch/include/ATen/ops/range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5102620Z copying torch/include/ATen/ops/isinf_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5104020Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5107450Z copying torch/include/ATen/ops/glu_backward_jvp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5109920Z copying torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5116590Z copying torch/include/ATen/ops/upsample_nearest1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5123040Z copying torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5124790Z copying torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5130810Z copying torch/include/ATen/ops/bincount.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5131570Z copying torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5133070Z copying torch/include/ATen/ops/hann_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5139320Z copying torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5140420Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5147130Z copying torch/include/ATen/ops/elu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5148250Z copying torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5154690Z copying torch/include/ATen/ops/cummaxmin_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5155460Z copying torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5156640Z copying torch/include/ATen/ops/affine_grid_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5162730Z copying torch/include/ATen/ops/logical_and_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5163690Z copying torch/include/ATen/ops/split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5170260Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5171050Z copying torch/include/ATen/ops/native_channel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5178400Z copying torch/include/ATen/ops/greater_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5179330Z copying torch/include/ATen/ops/imag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5180540Z copying torch/include/ATen/ops/argmin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5186000Z copying torch/include/ATen/ops/special_i0e_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5187520Z copying torch/include/ATen/ops/max_unpool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5194780Z copying torch/include/ATen/ops/erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5195700Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5196950Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5202210Z copying torch/include/ATen/ops/matrix_H.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5203490Z copying torch/include/ATen/ops/transpose_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5209990Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5210980Z copying torch/include/ATen/ops/fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5212350Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5219320Z copying torch/include/ATen/ops/copysign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5220290Z copying torch/include/ATen/ops/amin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5226490Z copying torch/include/ATen/ops/rms_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5227720Z copying torch/include/ATen/ops/asin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5231820Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5234560Z copying torch/include/ATen/ops/fliplr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5235540Z copying torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5241010Z copying torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5243680Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5248770Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5249660Z copying torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5253460Z copying torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5258130Z copying torch/include/ATen/ops/sparse_sampled_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5261730Z copying torch/include/ATen/ops/log10.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5265880Z copying torch/include/ATen/ops/aminmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5266920Z copying torch/include/ATen/ops/quantized_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5270710Z copying torch/include/ATen/ops/masked_scatter_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5274090Z copying torch/include/ATen/ops/i0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5279290Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5280190Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5283810Z copying torch/include/ATen/ops/log_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5288730Z copying torch/include/ATen/ops/scatter_add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5292430Z copying torch/include/ATen/ops/_reshape_alias_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5295940Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5296800Z copying torch/include/ATen/ops/lcm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5301930Z copying torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5304090Z copying torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5305740Z copying torch/include/ATen/ops/softplus_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5312460Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5313420Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5320350Z copying torch/include/ATen/ops/hardshrink_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5321460Z copying torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5328400Z copying torch/include/ATen/ops/conj_physical_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5329330Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5331290Z copying torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5336020Z copying torch/include/ATen/ops/erfinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5336860Z copying torch/include/ATen/ops/avg_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5343700Z copying torch/include/ATen/ops/_gather_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5344680Z copying torch/include/ATen/ops/addbmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5351400Z copying torch/include/ATen/ops/upsample_trilinear3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5352450Z copying torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5353780Z copying torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5358650Z copying torch/include/ATen/ops/matmul_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5359430Z copying torch/include/ATen/ops/coalesce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5366280Z copying torch/include/ATen/ops/_foreach_log10_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5367100Z copying torch/include/ATen/ops/_lu_with_info_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5374880Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5375950Z copying torch/include/ATen/ops/expm1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5377250Z copying torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5383170Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5384400Z copying torch/include/ATen/ops/_weight_norm_interface_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5390390Z copying torch/include/ATen/ops/scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5391630Z copying torch/include/ATen/ops/ne_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5392850Z copying torch/include/ATen/ops/addcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5399600Z copying torch/include/ATen/ops/special_logsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5400670Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5407530Z copying torch/include/ATen/ops/to_sparse_csr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5408470Z copying torch/include/ATen/ops/_foreach_round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5415000Z copying torch/include/ATen/ops/floor_divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5416020Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5417320Z copying torch/include/ATen/ops/margin_ranking_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5422660Z copying torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5424720Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5430530Z copying torch/include/ATen/ops/triangular_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5431470Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5432790Z copying torch/include/ATen/ops/dstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5439470Z copying torch/include/ATen/ops/log_sigmoid_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5440750Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5447190Z copying torch/include/ATen/ops/special_xlog1py_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5448550Z copying torch/include/ATen/ops/maximum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5455370Z copying torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5456560Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5457810Z copying torch/include/ATen/ops/contiguous.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5462250Z copying torch/include/ATen/ops/view_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5463710Z copying torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5470740Z copying torch/include/ATen/ops/group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5471770Z copying torch/include/ATen/ops/_fused_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5473090Z copying torch/include/ATen/ops/sgn_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5478650Z copying torch/include/ATen/ops/max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5479840Z copying torch/include/ATen/ops/multiply_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5486850Z copying torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5487740Z copying torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5495880Z copying torch/include/ATen/ops/cudnn_affine_grid_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5496750Z copying torch/include/ATen/ops/is_signed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5497900Z copying torch/include/ATen/ops/special_ndtri.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5503670Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5504640Z copying torch/include/ATen/ops/lt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5511650Z copying torch/include/ATen/ops/requires_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5512490Z copying torch/include/ATen/ops/hypot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5513880Z copying torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5519670Z copying torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5520580Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5522680Z copying torch/include/ATen/ops/round_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5529550Z copying torch/include/ATen/ops/reflection_pad1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5530440Z copying torch/include/ATen/ops/norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5537540Z copying torch/include/ATen/ops/_prelu_kernel_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5538460Z copying torch/include/ATen/ops/nonzero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5545460Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5546380Z copying torch/include/ATen/ops/batch_norm_backward_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5547600Z copying torch/include/ATen/ops/fmin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5552600Z copying torch/include/ATen/ops/index_copy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5553730Z copying torch/include/ATen/ops/rand.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5561050Z copying torch/include/ATen/ops/searchsorted_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5561910Z copying torch/include/ATen/ops/prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5563280Z copying torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5568950Z copying torch/include/ATen/ops/q_per_channel_scales_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5569960Z copying torch/include/ATen/ops/special_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5576600Z copying torch/include/ATen/ops/erfc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5578330Z copying torch/include/ATen/ops/i0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5584730Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5585580Z copying torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5586860Z copying torch/include/ATen/ops/quantize_per_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5592500Z copying torch/include/ATen/ops/_nested_get_values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5593470Z copying torch/include/ATen/ops/special_hermite_polynomial_he_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5597740Z copying torch/include/ATen/ops/upsample_linear1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5602540Z copying torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5605880Z copying torch/include/ATen/ops/_cslt_sparse_mm_search.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5606940Z copying torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5611810Z copying torch/include/ATen/ops/_sparse_csr_prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5614610Z copying torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5619640Z copying torch/include/ATen/ops/replication_pad3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5620600Z copying torch/include/ATen/ops/avg_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5623740Z copying torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5629110Z copying torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5631470Z copying torch/include/ATen/ops/_pin_memory_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5632780Z copying torch/include/ATen/ops/nuclear_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5639240Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5640080Z copying torch/include/ATen/ops/ceil_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5646700Z copying torch/include/ATen/ops/_empty_affine_quantized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5647460Z copying torch/include/ATen/ops/zero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5654490Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5655400Z copying torch/include/ATen/ops/gelu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5656690Z copying torch/include/ATen/ops/isnan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5662480Z copying torch/include/ATen/ops/frac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5663380Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5670430Z copying torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5671400Z copying torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5678690Z copying torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5679480Z copying torch/include/ATen/ops/quantized_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5680680Z copying torch/include/ATen/ops/replication_pad3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5686120Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5687010Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5693900Z copying torch/include/ATen/ops/erf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5694670Z copying torch/include/ATen/ops/eye_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5695870Z copying torch/include/ATen/ops/argsort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5703460Z copying torch/include/ATen/ops/column_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5704500Z copying torch/include/ATen/ops/round_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5711340Z copying torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5712160Z copying torch/include/ATen/ops/uniform_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5718910Z copying torch/include/ATen/ops/upsample_nearest3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5719770Z copying torch/include/ATen/ops/_fw_primal_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5721050Z copying torch/include/ATen/ops/sum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5726950Z copying torch/include/ATen/ops/asin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5727760Z copying torch/include/ATen/ops/cross_entropy_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5734760Z copying torch/include/ATen/ops/fft_irfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5735930Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5737140Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5742990Z copying torch/include/ATen/ops/permute_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5743920Z copying torch/include/ATen/ops/_cdist_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5751040Z copying torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5751800Z copying torch/include/ATen/ops/tanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5752950Z copying torch/include/ATen/ops/row_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5758650Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5759710Z copying torch/include/ATen/ops/matrix_exp_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5766560Z copying torch/include/ATen/ops/quantize_per_channel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5767840Z copying torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5774670Z copying torch/include/ATen/ops/slow_conv_dilated2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5776240Z copying torch/include/ATen/ops/histogram.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5782260Z copying torch/include/ATen/ops/_conv_depthwise2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5783030Z copying torch/include/ATen/ops/special_i0e_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5790040Z copying torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5791160Z copying torch/include/ATen/ops/as_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5798000Z copying torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5798900Z copying torch/include/ATen/ops/igamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5800120Z copying torch/include/ATen/ops/special_xlog1py_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5805810Z copying torch/include/ATen/ops/_functional_assert_async_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5806610Z copying torch/include/ATen/ops/avg_pool3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5813690Z copying torch/include/ATen/ops/amax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5814750Z copying torch/include/ATen/ops/retains_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5822260Z copying torch/include/ATen/ops/mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5823230Z copying torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5824300Z copying torch/include/ATen/ops/smooth_l1_loss_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5830020Z copying torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5830950Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5837810Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5838770Z copying torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5839940Z copying torch/include/ATen/ops/view_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5846130Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5847090Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5853260Z copying torch/include/ATen/ops/numpy_T_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5854690Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5861460Z copying torch/include/ATen/ops/fft_rfftfreq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5862450Z copying torch/include/ATen/ops/cauchy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5863770Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5869790Z copying torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5870640Z copying torch/include/ATen/ops/unflatten_dense_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5877900Z copying torch/include/ATen/ops/atanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5878790Z copying torch/include/ATen/ops/miopen_convolution_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5880000Z copying torch/include/ATen/ops/native_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5886050Z copying torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5886760Z copying torch/include/ATen/ops/_masked_softmax_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5893260Z copying torch/include/ATen/ops/floor_divide_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5894590Z copying torch/include/ATen/ops/_foreach_expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5901720Z copying torch/include/ATen/ops/fft_fftshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5902810Z copying torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5903950Z copying torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5909760Z copying torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5910560Z copying torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5912550Z copying torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5919450Z copying torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5920250Z copying torch/include/ATen/ops/_cast_Short_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5927590Z copying torch/include/ATen/ops/linspace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5928450Z copying torch/include/ATen/ops/logit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5935640Z copying torch/include/ATen/ops/remainder_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5936720Z copying torch/include/ATen/ops/bilinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5943830Z copying torch/include/ATen/ops/max_unpool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5944900Z copying torch/include/ATen/ops/reflection_pad2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5951660Z copying torch/include/ATen/ops/_sparse_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5952370Z copying torch/include/ATen/ops/_foreach_asin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5953670Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5959140Z copying torch/include/ATen/ops/split_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5960190Z copying torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5966550Z copying torch/include/ATen/ops/any_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5967990Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5974560Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5975510Z copying torch/include/ATen/ops/softplus_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5976840Z copying torch/include/ATen/ops/softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5982680Z copying torch/include/ATen/ops/ccol_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5983840Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5990810Z copying torch/include/ATen/ops/_fft_r2c.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5991850Z copying torch/include/ATen/ops/outer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5998270Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.5999310Z copying torch/include/ATen/ops/hypot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6000700Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6005920Z copying torch/include/ATen/ops/adjoint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6007580Z copying torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6013330Z copying torch/include/ATen/ops/flip_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6014890Z copying torch/include/ATen/ops/flipud.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6016150Z copying torch/include/ATen/ops/argmin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6022990Z copying torch/include/ATen/ops/_foreach_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6024070Z copying torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6031330Z copying torch/include/ATen/ops/addbmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6032350Z copying torch/include/ATen/ops/masked_fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6033570Z copying torch/include/ATen/ops/exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6040170Z copying torch/include/ATen/ops/_ctc_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6040940Z copying torch/include/ATen/ops/flipud_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6047980Z copying torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6048870Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6050200Z copying torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6055890Z copying torch/include/ATen/ops/_dimV_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6057050Z copying torch/include/ATen/ops/reflection_pad2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6063410Z copying torch/include/ATen/ops/mvlgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6065260Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6066640Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6072510Z copying torch/include/ATen/ops/_batch_norm_with_update_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6073730Z copying torch/include/ATen/ops/log_normal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6080990Z copying torch/include/ATen/ops/_sparse_sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6081850Z copying torch/include/ATen/ops/_aminmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6088650Z copying torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6089450Z copying torch/include/ATen/ops/miopen_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6090610Z copying torch/include/ATen/ops/miopen_rnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6096200Z copying torch/include/ATen/ops/normal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6097190Z copying torch/include/ATen/ops/dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6103760Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6104520Z copying torch/include/ATen/ops/view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6105710Z copying torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6112340Z copying torch/include/ATen/ops/angle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6113450Z copying torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6120380Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6121750Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6128420Z copying torch/include/ATen/ops/_make_dual_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6129300Z copying torch/include/ATen/ops/_rowwise_prune_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6130470Z copying torch/include/ATen/ops/special_erfcx_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6136370Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6138440Z copying torch/include/ATen/ops/cosine_embedding_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6143200Z copying torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6145440Z copying torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6146780Z copying torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6151850Z copying torch/include/ATen/ops/_unsafe_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6153090Z copying torch/include/ATen/ops/_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6159380Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6160440Z copying torch/include/ATen/ops/special_log_ndtr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6167050Z copying torch/include/ATen/ops/asinh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6168470Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6174940Z copying torch/include/ATen/ops/cumulative_trapezoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6175960Z copying torch/include/ATen/ops/grid_sampler_2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6177160Z copying torch/include/ATen/ops/log1p_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6183020Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6184530Z copying torch/include/ATen/ops/_fused_sgd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6190900Z copying torch/include/ATen/ops/_fused_adam_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6191740Z copying torch/include/ATen/ops/mish_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6192940Z copying torch/include/ATen/ops/can_cast_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6198350Z copying torch/include/ATen/ops/ge_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6199870Z copying torch/include/ATen/ops/unique_consecutive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6205900Z copying torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6207730Z copying torch/include/ATen/ops/max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6214450Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6215530Z copying torch/include/ATen/ops/_euclidean_dist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6216720Z copying torch/include/ATen/ops/avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6223310Z copying torch/include/ATen/ops/logical_and_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6230690Z copying torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6232190Z copying torch/include/ATen/ops/as_strided_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6237930Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6238980Z copying torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6240180Z copying torch/include/ATen/ops/sym_constrain_range_for_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6246000Z copying torch/include/ATen/ops/soft_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6247380Z copying torch/include/ATen/ops/isinf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6254460Z copying torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6255440Z copying torch/include/ATen/ops/special_modified_bessel_i1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6256620Z copying torch/include/ATen/ops/clamp_max_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6261920Z copying torch/include/ATen/ops/mkldnn_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6263140Z copying torch/include/ATen/ops/_foreach_rsqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6269760Z copying torch/include/ATen/ops/linear_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6278210Z copying torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6279180Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6280520Z copying torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6285470Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6287540Z copying torch/include/ATen/ops/exp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6293570Z copying torch/include/ATen/ops/upsample_bicubic2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6294800Z copying torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6296670Z copying torch/include/ATen/ops/select_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6301660Z copying torch/include/ATen/ops/miopen_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6303130Z copying torch/include/ATen/ops/zeros_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6307280Z copying torch/include/ATen/ops/triangular_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6311690Z copying torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6315790Z copying torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6316730Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6321130Z copying torch/include/ATen/ops/_foreach_sinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6324490Z copying torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6329020Z copying torch/include/ATen/ops/_to_sparse_semi_structured.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6329780Z copying torch/include/ATen/ops/_foreach_log2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6333740Z copying torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6338350Z copying torch/include/ATen/ops/logspace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6342730Z copying torch/include/ATen/ops/softshrink_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6343880Z copying torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6348620Z copying torch/include/ATen/ops/cholesky.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6351250Z copying torch/include/ATen/ops/_masked_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6355570Z copying torch/include/ATen/ops/fft_ihfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6356610Z copying torch/include/ATen/ops/or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6360220Z copying torch/include/ATen/ops/sparse_coo_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6364870Z copying torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6369180Z copying torch/include/ATen/ops/upsample_nearest3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6372320Z copying torch/include/ATen/ops/max_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6373310Z copying torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6378300Z copying torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6381680Z copying torch/include/ATen/ops/clamp_min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6386280Z copying torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6387000Z copying torch/include/ATen/ops/repeat_interleave.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6390590Z copying torch/include/ATen/ops/upsample_nearest2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6394440Z copying torch/include/ATen/ops/item_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6398970Z copying torch/include/ATen/ops/cudnn_convolution_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6400120Z copying torch/include/ATen/ops/nextafter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6404290Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6408010Z copying torch/include/ATen/ops/fft_fft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6413250Z copying torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6414220Z copying torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6417220Z copying torch/include/ATen/ops/mkldnn_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6422780Z copying torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6425570Z copying torch/include/ATen/ops/_fft_r2c_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6426600Z copying torch/include/ATen/ops/glu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6431820Z copying torch/include/ATen/ops/_test_optional_filled_intlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6433460Z copying torch/include/ATen/ops/cat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6440090Z copying torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6443880Z copying torch/include/ATen/ops/_test_warn_in_autograd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6449500Z copying torch/include/ATen/ops/_coalesced_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6450540Z copying torch/include/ATen/ops/cudnn_convolution_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6451810Z copying torch/include/ATen/ops/upsample_nearest2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6459040Z copying torch/include/ATen/ops/special_gammaln.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6460320Z copying torch/include/ATen/ops/_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6466120Z copying torch/include/ATen/ops/fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6468070Z copying torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6473560Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6474450Z copying torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6476160Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6481550Z copying torch/include/ATen/ops/sparse_bsc_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6482490Z copying torch/include/ATen/ops/gcd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6488450Z copying torch/include/ATen/ops/index_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6490080Z copying torch/include/ATen/ops/logit_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6496220Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6497230Z copying torch/include/ATen/ops/fft_hfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6503780Z copying torch/include/ATen/ops/_flash_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6504790Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6511690Z copying torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6512560Z copying torch/include/ATen/ops/_foreach_trunc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6513880Z copying torch/include/ATen/ops/avg_pool3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6518300Z copying torch/include/ATen/ops/arccos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6519710Z copying torch/include/ATen/ops/unfold_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6526120Z copying torch/include/ATen/ops/conv_tbc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6527500Z copying torch/include/ATen/ops/_foreach_frac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6533380Z copying torch/include/ATen/ops/new_empty_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6534910Z copying torch/include/ATen/ops/conj_physical_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6536260Z copying torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6542640Z copying torch/include/ATen/ops/sparse_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6543660Z copying torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6550090Z copying torch/include/ATen/ops/atanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6551080Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6558030Z copying torch/include/ATen/ops/exponential_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6558920Z copying torch/include/ATen/ops/_sparse_semi_structured_apply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6560100Z copying torch/include/ATen/ops/lift_fresh_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6565980Z copying torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6567040Z copying torch/include/ATen/ops/_foreach_sign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6573670Z copying torch/include/ATen/ops/adjoint_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6574940Z copying torch/include/ATen/ops/addcdiv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6576340Z copying torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6583490Z copying torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6584520Z copying torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6590880Z copying torch/include/ATen/ops/mish_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6591850Z copying torch/include/ATen/ops/full.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6598900Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6599790Z copying torch/include/ATen/ops/view_as_real_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6601050Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6604240Z copying torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6613030Z copying torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6614360Z copying torch/include/ATen/ops/linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6617400Z copying torch/include/ATen/ops/addmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6621800Z copying torch/include/ATen/ops/reshape_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6622820Z copying torch/include/ATen/ops/upsample_nearest1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6626550Z copying torch/include/ATen/ops/prod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6631570Z copying torch/include/ATen/ops/abs_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6635180Z copying torch/include/ATen/ops/lift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6639490Z copying torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6640420Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6644140Z copying torch/include/ATen/ops/erfc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6648410Z copying torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6649550Z copying torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6652760Z copying torch/include/ATen/ops/_linalg_slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6657440Z copying torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6661010Z copying torch/include/ATen/ops/pad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6665530Z copying torch/include/ATen/ops/signbit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6666410Z copying torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6671080Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6674810Z copying torch/include/ATen/ops/convolution_backward_overrideable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6679080Z copying torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6679880Z copying torch/include/ATen/ops/clamp_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6683420Z copying torch/include/ATen/ops/sort_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6688040Z copying torch/include/ATen/ops/triu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6691830Z copying torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6695850Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6696780Z copying torch/include/ATen/ops/special_i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6700750Z copying torch/include/ATen/ops/atleast_3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6704700Z copying torch/include/ATen/ops/_nested_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6708970Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6709880Z copying torch/include/ATen/ops/special_airy_ai_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6713970Z copying torch/include/ATen/ops/addmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6717770Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6722050Z copying torch/include/ATen/ops/special_gammaincc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6722990Z copying torch/include/ATen/ops/mish_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6726620Z copying torch/include/ATen/ops/min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6730820Z copying torch/include/ATen/ops/acosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6734860Z copying torch/include/ATen/ops/_pad_enum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6738850Z copying torch/include/ATen/ops/inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6739790Z copying torch/include/ATen/ops/_safe_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6743690Z copying torch/include/ATen/ops/mm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6747640Z copying torch/include/ATen/ops/broadcast_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6751440Z copying torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6752410Z copying torch/include/ATen/ops/zero_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6756830Z copying torch/include/ATen/ops/_foreach_tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6760620Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6765460Z copying torch/include/ATen/ops/reflection_pad1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6767570Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6768890Z copying torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6776140Z copying torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6782200Z copying torch/include/ATen/ops/renorm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6783610Z copying torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6789520Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6790970Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6792570Z copying torch/include/ATen/ops/conv_depthwise3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6798910Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6799870Z copying torch/include/ATen/ops/_foreach_reciprocal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6806730Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6813080Z copying torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6814210Z copying torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6815480Z copying torch/include/ATen/ops/rsub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6816780Z copying torch/include/ATen/ops/fractional_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6821990Z copying torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6822950Z copying torch/include/ATen/ops/isneginf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6829720Z copying torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6830790Z copying torch/include/ATen/ops/cat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6837450Z copying torch/include/ATen/ops/_thnn_fused_gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6838330Z copying torch/include/ATen/ops/_cudnn_rnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6839510Z copying torch/include/ATen/ops/rand_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6845290Z copying torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6846380Z copying torch/include/ATen/ops/trapezoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6853080Z copying torch/include/ATen/ops/relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6854480Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6861120Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6862010Z copying torch/include/ATen/ops/clamp_max_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6863150Z copying torch/include/ATen/ops/_unpack_dual_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6869300Z copying torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6870110Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6876590Z copying torch/include/ATen/ops/var_mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6877810Z copying torch/include/ATen/ops/polar_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6884560Z copying torch/include/ATen/ops/narrow_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6885390Z copying torch/include/ATen/ops/vstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6886680Z copying torch/include/ATen/ops/convolution_overrideable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6892770Z copying torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6893700Z copying torch/include/ATen/ops/transpose_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6900020Z copying torch/include/ATen/ops/threshold_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6901820Z copying torch/include/ATen/ops/tanh_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6907670Z copying torch/include/ATen/ops/bucketize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6908640Z copying torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6909870Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6915770Z copying torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6916940Z copying torch/include/ATen/ops/_cdist_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6923630Z copying torch/include/ATen/ops/view_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6924840Z copying torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6930850Z copying torch/include/ATen/ops/log_sigmoid_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6931810Z copying torch/include/ATen/ops/_cudnn_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6933150Z copying torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6938680Z copying torch/include/ATen/ops/view_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6939580Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6946990Z copying torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6947830Z copying torch/include/ATen/ops/eye_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6954560Z copying torch/include/ATen/ops/exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6955720Z copying torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6957020Z copying torch/include/ATen/ops/expm1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6963010Z copying torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6970930Z copying torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6971910Z copying torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6973130Z copying torch/include/ATen/ops/rsqrt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6978800Z copying torch/include/ATen/ops/triu_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6980050Z copying torch/include/ATen/ops/convolution_overrideable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6984220Z copying torch/include/ATen/ops/diag_embed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6988270Z copying torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6989200Z copying torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6993730Z copying torch/include/ATen/ops/lift_fresh_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.6997680Z copying torch/include/ATen/ops/atanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7001540Z copying torch/include/ATen/ops/reciprocal_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7002260Z copying torch/include/ATen/ops/im2col_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7006680Z copying torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7010330Z copying torch/include/ATen/ops/_nested_view_from_buffer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7015770Z copying torch/include/ATen/ops/sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7017370Z copying torch/include/ATen/ops/fft_ifft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7023090Z copying torch/include/ATen/ops/combinations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7024340Z copying torch/include/ATen/ops/_to_sparse_csr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7025650Z copying torch/include/ATen/ops/_fft_r2c_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7031630Z copying torch/include/ATen/ops/hardtanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7032650Z copying torch/include/ATen/ops/promote_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7039050Z copying torch/include/ATen/ops/cross_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7040470Z copying torch/include/ATen/ops/nansum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7046700Z copying torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7047490Z copying torch/include/ATen/ops/log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7048710Z copying torch/include/ATen/ops/_foreach_sub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7055710Z copying torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7056560Z copying torch/include/ATen/ops/_cast_Int_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7063230Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7064740Z copying torch/include/ATen/ops/lshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7071250Z copying torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7072020Z copying torch/include/ATen/ops/negative_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7073150Z copying torch/include/ATen/ops/_cast_Byte.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7079280Z copying torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7080030Z copying torch/include/ATen/ops/logaddexp2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7086490Z copying torch/include/ATen/ops/mish_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7087990Z copying torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7095600Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7096340Z copying torch/include/ATen/ops/linalg_cross_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7097540Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7103480Z copying torch/include/ATen/ops/view_as_complex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7104220Z copying torch/include/ATen/ops/cos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7110590Z copying torch/include/ATen/ops/bernoulli_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7112130Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7113390Z copying torch/include/ATen/ops/rrelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7118350Z copying torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7119850Z copying torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7126090Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7127480Z copying torch/include/ATen/ops/to_sparse_csr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7134030Z copying torch/include/ATen/ops/median_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7134970Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7136230Z copying torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7142740Z copying torch/include/ATen/ops/uniform_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7143680Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7150640Z copying torch/include/ATen/ops/linalg_diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7152160Z copying torch/include/ATen/ops/sparse_dim_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7153390Z copying torch/include/ATen/ops/index_reduce_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7158770Z copying torch/include/ATen/ops/_foobar_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7160410Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7167620Z copying torch/include/ATen/ops/randn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7168450Z copying torch/include/ATen/ops/logical_or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7169800Z copying torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7174770Z copying torch/include/ATen/ops/neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7177170Z copying torch/include/ATen/ops/igamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7182910Z copying torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7183710Z copying torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7186170Z copying torch/include/ATen/ops/norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7192690Z copying torch/include/ATen/ops/trace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7193610Z copying torch/include/ATen/ops/log_sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7200390Z copying torch/include/ATen/ops/linalg_ldl_factor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7201310Z copying torch/include/ATen/ops/eq_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7206020Z copying torch/include/ATen/ops/put_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7209000Z copying torch/include/ATen/ops/hinge_embedding_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7215530Z copying torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7216520Z copying torch/include/ATen/ops/softshrink_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7222940Z copying torch/include/ATen/ops/native_dropout_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7223820Z copying torch/include/ATen/ops/argmin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7231110Z copying torch/include/ATen/ops/vstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7231850Z copying torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7233190Z copying torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7239550Z copying torch/include/ATen/ops/can_cast_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7240590Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7247250Z copying torch/include/ATen/ops/_to_sparse_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7248300Z copying torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7254590Z copying torch/include/ATen/ops/topk_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7255720Z copying torch/include/ATen/ops/_foreach_tan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7256870Z copying torch/include/ATen/ops/expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7262330Z copying torch/include/ATen/ops/_nested_get_values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7263530Z copying torch/include/ATen/ops/_amp_update_scale_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7269860Z copying torch/include/ATen/ops/_masked_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7272280Z copying torch/include/ATen/ops/_foreach_lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7279270Z copying torch/include/ATen/ops/matmul_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7280220Z copying torch/include/ATen/ops/special_zeta_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7287520Z copying torch/include/ATen/ops/huber_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7288300Z copying torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7294890Z copying torch/include/ATen/ops/conv_transpose2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7295690Z copying torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7297130Z copying torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7302840Z copying torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7303860Z copying torch/include/ATen/ops/signbit_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7310760Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7311660Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7312840Z copying torch/include/ATen/ops/logsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7319180Z copying torch/include/ATen/ops/_foreach_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7320000Z copying torch/include/ATen/ops/_embedding_bag_forward_only_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7327090Z copying torch/include/ATen/ops/_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7328040Z copying torch/include/ATen/ops/neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7334980Z copying torch/include/ATen/ops/take_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7335740Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7337140Z copying torch/include/ATen/ops/i0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7342700Z copying torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7343700Z copying torch/include/ATen/ops/special_gammainc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7349980Z copying torch/include/ATen/ops/squeeze_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7350980Z copying torch/include/ATen/ops/_sparse_broadcast_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7352330Z copying torch/include/ATen/ops/hardtanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7359860Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7360840Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7367760Z copying torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7368700Z copying torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7375300Z copying torch/include/ATen/ops/_reshape_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7376340Z copying torch/include/ATen/ops/index_reduce_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7377580Z copying torch/include/ATen/ops/diagonal_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7384370Z copying torch/include/ATen/ops/dsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7385580Z copying torch/include/ATen/ops/gather_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7392550Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7393620Z copying torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7394850Z copying torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7399220Z copying torch/include/ATen/ops/_debug_has_internal_overlap_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7402000Z copying torch/include/ATen/ops/_assert_scalar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7406850Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7408080Z copying torch/include/ATen/ops/_unique.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7410560Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7416110Z copying torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7417000Z copying torch/include/ATen/ops/silu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7418400Z copying torch/include/ATen/ops/resize_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7425640Z copying torch/include/ATen/ops/range_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7427400Z copying torch/include/ATen/ops/max_pool1d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7432930Z copying torch/include/ATen/ops/replication_pad1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7433760Z copying torch/include/ATen/ops/int_repr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7436440Z copying torch/include/ATen/ops/upsample_linear1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7442570Z copying torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7449700Z copying torch/include/ATen/ops/hardsigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7450700Z copying torch/include/ATen/ops/_lstm_mps_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7457220Z copying torch/include/ATen/ops/mul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7458300Z copying torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7459530Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7465410Z copying torch/include/ATen/ops/cos_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7466450Z copying torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7472830Z copying torch/include/ATen/ops/exp2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7474390Z copying torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7480750Z copying torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7481530Z copying torch/include/ATen/ops/coalesce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7482890Z copying torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7489270Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7490250Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7497020Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7498220Z copying torch/include/ATen/ops/add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7504850Z copying torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7505900Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7507160Z copying torch/include/ATen/ops/bmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7512260Z copying torch/include/ATen/ops/to_mkldnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7513120Z copying torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7520020Z copying torch/include/ATen/ops/special_bessel_y0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7521360Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7528380Z copying torch/include/ATen/ops/real_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7529340Z copying torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7530650Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7536170Z copying torch/include/ATen/ops/max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7537400Z copying torch/include/ATen/ops/_reshape_alias_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7544310Z copying torch/include/ATen/ops/col_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7545180Z copying torch/include/ATen/ops/logcumsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7551720Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7553150Z copying torch/include/ATen/ops/fmod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7554430Z copying torch/include/ATen/ops/_foreach_clamp_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7560050Z copying torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7560920Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7567670Z copying torch/include/ATen/ops/_foreach_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7568750Z copying torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7569960Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7576240Z copying torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7577070Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7584100Z copying torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7585060Z copying torch/include/ATen/ops/copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7591960Z copying torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7592980Z copying torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7594380Z copying torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7601040Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7602100Z copying torch/include/ATen/ops/linalg_solve_triangular_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7607080Z copying torch/include/ATen/ops/max_unpool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7609410Z copying torch/include/ATen/ops/bitwise_xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7615370Z copying torch/include/ATen/ops/feature_alpha_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7616110Z copying torch/include/ATen/ops/_empty_affine_quantized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7623210Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7624100Z copying torch/include/ATen/ops/_standard_gamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7631290Z copying torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7632260Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7633370Z copying torch/include/ATen/ops/batch_norm_update_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7639470Z copying torch/include/ATen/ops/special_i1e_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7640220Z copying torch/include/ATen/ops/baddbmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7646490Z copying torch/include/ATen/ops/cummax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7648010Z copying torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7649520Z copying torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7651550Z copying torch/include/ATen/ops/norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7660250Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7667310Z copying torch/include/ATen/ops/concat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7674210Z copying torch/include/ATen/ops/uniform_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7675580Z copying torch/include/ATen/ops/gcd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7681760Z copying torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7682860Z copying torch/include/ATen/ops/new_zeros_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7689330Z copying torch/include/ATen/ops/sigmoid_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7698660Z copying torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7699670Z copying torch/include/ATen/ops/_cast_Int_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7706660Z copying torch/include/ATen/ops/_unsafe_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7713150Z copying torch/include/ATen/ops/lerp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7714630Z copying torch/include/ATen/ops/_foreach_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7721410Z copying torch/include/ATen/ops/unfold_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7722160Z copying torch/include/ATen/ops/max_pool1d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7723490Z copying torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7728970Z copying torch/include/ATen/ops/masked_fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7729830Z copying torch/include/ATen/ops/_log_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7736640Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7737850Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7743820Z copying torch/include/ATen/ops/unflatten_dense_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7745050Z copying torch/include/ATen/ops/new_ones_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7746290Z copying torch/include/ATen/ops/addcdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7752090Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7753090Z copying torch/include/ATen/ops/_to_sparse_bsr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7759490Z copying torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7761030Z copying torch/include/ATen/ops/ravel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7767170Z copying torch/include/ATen/ops/_foreach_addcdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7768370Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7775560Z copying torch/include/ATen/ops/linalg_pinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7776610Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7783090Z copying torch/include/ATen/ops/view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7784140Z copying torch/include/ATen/ops/max_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7790870Z copying torch/include/ATen/ops/msort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7791890Z copying torch/include/ATen/ops/q_per_channel_scales_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7793230Z copying torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7799250Z copying torch/include/ATen/ops/random_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7800270Z copying torch/include/ATen/ops/scatter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7808430Z copying torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7809380Z copying torch/include/ATen/ops/linalg_cross_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7816690Z copying torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7817570Z copying torch/include/ATen/ops/mkldnn_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7818800Z copying torch/include/ATen/ops/index_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7823900Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7824930Z copying torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7831160Z copying torch/include/ATen/ops/lerp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7832030Z copying torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7833250Z copying torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7838800Z copying torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7839810Z copying torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7846210Z copying torch/include/ATen/ops/_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7847450Z copying torch/include/ATen/ops/fft_ihfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7854320Z copying torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7855270Z copying torch/include/ATen/ops/sin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7856550Z copying torch/include/ATen/ops/hardsigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7861600Z copying torch/include/ATen/ops/fmin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7862650Z copying torch/include/ATen/ops/hardshrink_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7869980Z copying torch/include/ATen/ops/hsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7871020Z copying torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7878150Z copying torch/include/ATen/ops/signbit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7878820Z copying torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7885880Z copying torch/include/ATen/ops/hardtanh_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7886900Z copying torch/include/ATen/ops/special_modified_bessel_i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7888120Z copying torch/include/ATen/ops/_mps_convolution_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7893810Z copying torch/include/ATen/ops/hash_tensor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7894720Z copying torch/include/ATen/ops/repeat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7901180Z copying torch/include/ATen/ops/_reshape_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7902070Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7903350Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7908580Z copying torch/include/ATen/ops/less_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7910250Z copying torch/include/ATen/ops/one_hot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7915680Z copying torch/include/ATen/ops/gcd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7918100Z copying torch/include/ATen/ops/_fft_c2c_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7919620Z copying torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7926210Z copying torch/include/ATen/ops/max_pool3d_with_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7927080Z copying torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7934130Z copying torch/include/ATen/ops/_foreach_log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7934880Z copying torch/include/ATen/ops/cauchy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7941680Z copying torch/include/ATen/ops/rsqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7942620Z copying torch/include/ATen/ops/_foreach_trunc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7949170Z copying torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7950330Z copying torch/include/ATen/ops/expand_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7956940Z copying torch/include/ATen/ops/mps_convolution_transpose_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7958040Z copying torch/include/ATen/ops/linalg_matrix_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7959310Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7966770Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7967800Z copying torch/include/ATen/ops/mul_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7975310Z copying torch/include/ATen/ops/miopen_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7976380Z copying torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7982890Z copying torch/include/ATen/ops/unfold_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7984000Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7985190Z copying torch/include/ATen/ops/linalg_svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7991100Z copying torch/include/ATen/ops/bitwise_and_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7992060Z copying torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.7999150Z copying torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8000130Z copying torch/include/ATen/ops/fft_fft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8001290Z copying torch/include/ATen/ops/var_mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8004950Z copying torch/include/ATen/ops/normal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8007730Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8013780Z copying torch/include/ATen/ops/max_pool2d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8014890Z copying torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8017380Z copying torch/include/ATen/ops/fft_ifft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8022380Z copying torch/include/ATen/ops/argmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8023290Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8027190Z copying torch/include/ATen/ops/adaptive_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8031910Z copying torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8035400Z copying torch/include/ATen/ops/amax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8036780Z copying torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8041600Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8043760Z copying torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8049590Z copying torch/include/ATen/ops/_unsafe_view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8050600Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8053350Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8059350Z copying torch/include/ATen/ops/_compute_linear_combination_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8061130Z copying torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8066980Z copying torch/include/ATen/ops/masked_fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8067960Z copying torch/include/ATen/ops/polygamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8069760Z copying torch/include/ATen/ops/l1_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8076060Z copying torch/include/ATen/ops/trace_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8077810Z copying torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8083370Z copying torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8084430Z copying torch/include/ATen/ops/sort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8087020Z copying torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8092110Z copying torch/include/ATen/ops/grid_sampler_3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8093200Z copying torch/include/ATen/ops/mish_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8096730Z copying torch/include/ATen/ops/is_set_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8101530Z copying torch/include/ATen/ops/unflatten_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8109840Z copying torch/include/ATen/ops/_fused_adam_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8110780Z copying torch/include/ATen/ops/_dirichlet_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8115210Z copying torch/include/ATen/ops/einsum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8118430Z copying torch/include/ATen/ops/nan_to_num.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8122540Z copying torch/include/ATen/ops/q_zero_point_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8123270Z copying torch/include/ATen/ops/as_strided_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8127570Z copying torch/include/ATen/ops/t_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8130990Z copying torch/include/ATen/ops/logical_and_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8136390Z copying torch/include/ATen/ops/split_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8137380Z copying torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8141510Z copying torch/include/ATen/ops/_addmm_activation_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8145820Z copying torch/include/ATen/ops/lerp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8148530Z copying torch/include/ATen/ops/nansum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8149650Z copying torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8155180Z copying torch/include/ATen/ops/_fft_c2r_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8156280Z copying torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8162370Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8163340Z copying torch/include/ATen/ops/cosine_similarity_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8169920Z copying torch/include/ATen/ops/fix_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8170730Z copying torch/include/ATen/ops/_reshape_alias_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8177840Z copying torch/include/ATen/ops/flatten_dense_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8179110Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8180360Z copying torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8185530Z copying torch/include/ATen/ops/igamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8186870Z copying torch/include/ATen/ops/poisson_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8193560Z copying torch/include/ATen/ops/full_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8194500Z copying torch/include/ATen/ops/convolution_backward_overrideable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8195870Z copying torch/include/ATen/ops/_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8202090Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8203080Z copying torch/include/ATen/ops/linalg_eig_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8210960Z copying torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8212000Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8218990Z copying torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8219830Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8221040Z copying torch/include/ATen/ops/expm1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8226620Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8229000Z copying torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8233980Z copying torch/include/ATen/ops/sinh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8235520Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8236750Z copying torch/include/ATen/ops/baddbmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8241850Z copying torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8242630Z copying torch/include/ATen/ops/group_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8248980Z copying torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8251330Z copying torch/include/ATen/ops/_autocast_to_full_precision_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8256090Z copying torch/include/ATen/ops/exp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8257770Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8259030Z copying torch/include/ATen/ops/trunc_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8265580Z copying torch/include/ATen/ops/upsample_bilinear2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8266720Z copying torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8273740Z copying torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8275220Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8281330Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8282210Z copying torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8283440Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8288800Z copying torch/include/ATen/ops/clamp_max_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8291050Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8296840Z copying torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8298020Z copying torch/include/ATen/ops/arange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8300590Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8305560Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8306520Z copying torch/include/ATen/ops/hardshrink.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8309670Z copying torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8315320Z copying torch/include/ATen/ops/special_round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8318400Z copying torch/include/ATen/ops/_reshape_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8322790Z copying torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8323750Z copying torch/include/ATen/ops/index_fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8327530Z copying torch/include/ATen/ops/ceil_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8331460Z copying torch/include/ATen/ops/convolution_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8335230Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8336170Z copying torch/include/ATen/ops/linalg_diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8340560Z copying torch/include/ATen/ops/nonzero_numpy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8344480Z copying torch/include/ATen/ops/_index_put_impl_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8348060Z copying torch/include/ATen/ops/istft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8349170Z copying torch/include/ATen/ops/_foreach_erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8359270Z copying torch/include/ATen/ops/logit_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8359680Z copying torch/include/ATen/ops/chain_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8362050Z copying torch/include/ATen/ops/_conj_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8363030Z copying torch/include/ATen/ops/softplus_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8366350Z copying torch/include/ATen/ops/_foreach_addcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8371570Z copying torch/include/ATen/ops/empty_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8374740Z copying torch/include/ATen/ops/slice_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8378890Z copying torch/include/ATen/ops/_compute_linear_combination.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8379750Z copying torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8383930Z copying torch/include/ATen/ops/_nnz_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8387610Z copying torch/include/ATen/ops/cummaxmin_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8391690Z copying torch/include/ATen/ops/fft_rfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8395470Z copying torch/include/ATen/ops/_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8401150Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8404830Z copying torch/include/ATen/ops/cartesian_prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8408900Z copying torch/include/ATen/ops/_cudnn_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8409850Z copying torch/include/ATen/ops/_test_optional_filled_intlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8414020Z copying torch/include/ATen/ops/huber_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8417290Z copying torch/include/ATen/ops/index_select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8421810Z copying torch/include/ATen/ops/grid_sampler_3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8422950Z copying torch/include/ATen/ops/view_as_real_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8426710Z copying torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8431220Z copying torch/include/ATen/ops/index_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8435030Z copying torch/include/ATen/ops/_to_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8438760Z copying torch/include/ATen/ops/max_unpool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8444150Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8446560Z copying torch/include/ATen/ops/native_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8452360Z copying torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8453420Z copying torch/include/ATen/ops/_fw_primal_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8459710Z copying torch/include/ATen/ops/isnan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8460870Z copying torch/include/ATen/ops/full_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8467010Z copying torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8467890Z copying torch/include/ATen/ops/fmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8469070Z copying torch/include/ATen/ops/randint_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8475520Z copying torch/include/ATen/ops/_neg_view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8476710Z copying torch/include/ATen/ops/lshift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8483350Z copying torch/include/ATen/ops/unfold_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8484220Z copying torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8491560Z copying torch/include/ATen/ops/istft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8492240Z copying torch/include/ATen/ops/_unique_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8493380Z copying torch/include/ATen/ops/fmin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8498970Z copying torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8500370Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8506580Z copying torch/include/ATen/ops/rsqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8507520Z copying torch/include/ATen/ops/searchsorted_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8508980Z copying torch/include/ATen/ops/ones_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8516110Z copying torch/include/ATen/ops/erfc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8517030Z copying torch/include/ATen/ops/tanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8524120Z copying torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8524960Z copying torch/include/ATen/ops/_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8531850Z copying torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8532590Z copying torch/include/ATen/ops/_to_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8533740Z copying torch/include/ATen/ops/sinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8539410Z copying torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8540530Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8546880Z copying torch/include/ATen/ops/unsafe_split_with_sizes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8547680Z copying torch/include/ATen/ops/geometric_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8548860Z copying torch/include/ATen/ops/neg_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8556270Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8557130Z copying torch/include/ATen/ops/erf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8564190Z copying torch/include/ATen/ops/align_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8565130Z copying torch/include/ATen/ops/zero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8571350Z copying torch/include/ATen/ops/xlogy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8572450Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8573570Z copying torch/include/ATen/ops/mT.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8579950Z copying torch/include/ATen/ops/uniform_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8580840Z copying torch/include/ATen/ops/embedding_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8588400Z copying torch/include/ATen/ops/orgqr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8589480Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8590720Z copying torch/include/ATen/ops/cumprod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8596320Z copying torch/include/ATen/ops/range_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8597550Z copying torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8601660Z copying torch/include/ATen/ops/_adaptive_avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8605290Z copying torch/include/ATen/ops/_masked_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8606250Z copying torch/include/ATen/ops/linalg_ldl_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8610420Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8614170Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8618410Z copying torch/include/ATen/ops/slice_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8619330Z copying torch/include/ATen/ops/random_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8623390Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8627960Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8632500Z copying torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8636180Z copying torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8637040Z copying torch/include/ATen/ops/floor_divide_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8642250Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8643520Z copying torch/include/ATen/ops/_linalg_det_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8649300Z copying torch/include/ATen/ops/sin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8650100Z copying torch/include/ATen/ops/can_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8653000Z copying torch/include/ATen/ops/cumsum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8658380Z copying torch/include/ATen/ops/atanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8659360Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8665960Z copying torch/include/ATen/ops/kl_div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8668570Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8673450Z copying torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8674460Z copying torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8676130Z copying torch/include/ATen/ops/linalg_vector_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8682350Z copying torch/include/ATen/ops/embedding_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8683250Z copying torch/include/ATen/ops/igamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8690020Z copying torch/include/ATen/ops/sparse_bsc_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8690980Z copying torch/include/ATen/ops/special_i0e_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8697720Z copying torch/include/ATen/ops/is_floating_point.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8698800Z copying torch/include/ATen/ops/fft_fft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8699940Z copying torch/include/ATen/ops/xlogy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8705420Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8706810Z copying torch/include/ATen/ops/ceil_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8713000Z copying torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8713890Z copying torch/include/ATen/ops/masked_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8715020Z copying torch/include/ATen/ops/ge_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8722420Z copying torch/include/ATen/ops/_test_check_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8723380Z copying torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8730540Z copying torch/include/ATen/ops/squeeze.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8731720Z copying torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8738360Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8739080Z copying torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8740230Z copying torch/include/ATen/ops/permute_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8746190Z copying torch/include/ATen/ops/is_distributed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8747150Z copying torch/include/ATen/ops/_histogramdd_bin_edges.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8754540Z copying torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8755270Z copying torch/include/ATen/ops/relu6_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8762900Z copying torch/include/ATen/ops/sigmoid_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8764010Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8765310Z copying torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8770100Z copying torch/include/ATen/ops/fft_hfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8777960Z copying torch/include/ATen/ops/rad2deg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8779080Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8780290Z copying torch/include/ATen/ops/leaky_relu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8785410Z copying torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8787760Z copying torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8794150Z copying torch/include/ATen/ops/silu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8794990Z copying torch/include/ATen/ops/linalg_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8796400Z copying torch/include/ATen/ops/special_zeta_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8802620Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8803510Z copying torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8811310Z copying torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8812100Z copying torch/include/ATen/ops/_foreach_sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8813200Z copying torch/include/ATen/ops/lshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8818940Z copying torch/include/ATen/ops/outer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8820400Z copying torch/include/ATen/ops/bilinear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8827060Z copying torch/include/ATen/ops/rms_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8827850Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8829190Z copying torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8835890Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8837050Z copying torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8843350Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8844780Z copying torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8851260Z copying torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8852320Z copying torch/include/ATen/ops/stft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8853530Z copying torch/include/ATen/ops/linalg_lu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8859210Z copying torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8860240Z copying torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8863690Z copying torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8868590Z copying torch/include/ATen/ops/_linalg_det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8871650Z copying torch/include/ATen/ops/cholesky_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8876220Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8877170Z copying torch/include/ATen/ops/asin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8880770Z copying torch/include/ATen/ops/from_file_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8885030Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8888270Z copying torch/include/ATen/ops/_test_serialization_subcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8889530Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8893950Z copying torch/include/ATen/ops/_assert_async_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8897540Z copying torch/include/ATen/ops/nansum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8901830Z copying torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8902950Z copying torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8906680Z copying torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8911320Z copying torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8915720Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8918430Z copying torch/include/ATen/ops/norm_except_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8919350Z copying torch/include/ATen/ops/fft_irfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8925340Z copying torch/include/ATen/ops/_make_dual_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8926540Z copying torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8932300Z copying torch/include/ATen/ops/linalg_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8933540Z copying torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8939770Z copying torch/include/ATen/ops/log1p_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8941500Z copying torch/include/ATen/ops/view_as_complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8942690Z copying torch/include/ATen/ops/repeat_interleave_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8949160Z copying torch/include/ATen/ops/is_complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8950510Z copying torch/include/ATen/ops/softplus_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8957640Z copying torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8965750Z copying torch/include/ATen/ops/_weight_int4pack_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8966550Z copying torch/include/ATen/ops/_version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8967890Z copying torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8973090Z copying torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8974850Z copying torch/include/ATen/ops/softplus_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8980360Z copying torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8981350Z copying torch/include/ATen/ops/scatter_add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8982700Z copying torch/include/ATen/ops/tril_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8988670Z copying torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8989640Z copying torch/include/ATen/ops/clip_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8996980Z copying torch/include/ATen/ops/matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.8997790Z copying torch/include/ATen/ops/linalg_solve_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9005210Z copying torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9006150Z copying torch/include/ATen/ops/_mkldnn_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9007620Z copying torch/include/ATen/ops/special_ndtri_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9013260Z copying torch/include/ATen/ops/tensor_split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9014220Z copying torch/include/ATen/ops/align_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9021010Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9022340Z copying torch/include/ATen/ops/convolution_backward_overrideable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9023810Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9028700Z copying torch/include/ATen/ops/geometric.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9030020Z copying torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9036140Z copying torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9037570Z copying torch/include/ATen/ops/_to_dense_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9039910Z copying torch/include/ATen/ops/i0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9046590Z copying torch/include/ATen/ops/hardshrink_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9047660Z copying torch/include/ATen/ops/requires_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9054420Z copying torch/include/ATen/ops/elu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9055280Z copying torch/include/ATen/ops/threshold_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9062200Z copying torch/include/ATen/ops/special_entr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9063370Z copying torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9064630Z copying torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9069790Z copying torch/include/ATen/ops/bitwise_xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9070810Z copying torch/include/ATen/ops/special_xlogy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9077450Z copying torch/include/ATen/ops/acos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9078510Z copying torch/include/ATen/ops/cumprod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9079680Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9084940Z copying torch/include/ATen/ops/lgamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9085960Z copying torch/include/ATen/ops/_amp_update_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9092550Z copying torch/include/ATen/ops/expm1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9093850Z copying torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9100000Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9101150Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9102340Z copying torch/include/ATen/ops/_index_put_impl_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9108910Z copying torch/include/ATen/ops/unfold_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9110110Z copying torch/include/ATen/ops/reflection_pad3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9116510Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9124550Z copying torch/include/ATen/ops/addbmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9125510Z copying torch/include/ATen/ops/matrix_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9126710Z copying torch/include/ATen/ops/upsample_nearest1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9132540Z copying torch/include/ATen/ops/matmul_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9133560Z copying torch/include/ATen/ops/max_pool3d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9139820Z copying torch/include/ATen/ops/_lstm_mps_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9140860Z copying torch/include/ATen/ops/_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9142290Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9149290Z copying torch/include/ATen/ops/mps_convolution_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9150320Z copying torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9157410Z copying torch/include/ATen/ops/_coalesce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9158360Z copying torch/include/ATen/ops/special_exp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9164980Z copying torch/include/ATen/ops/special_erfcx_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9166000Z copying torch/include/ATen/ops/min_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9168240Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9173170Z copying torch/include/ATen/ops/logit_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9181500Z copying torch/include/ATen/ops/scalar_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9189620Z copying torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9190620Z copying torch/include/ATen/ops/_cholesky_solve_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9191930Z copying torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9197380Z copying torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9198620Z copying torch/include/ATen/ops/special_legendre_polynomial_p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9205100Z copying torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9205990Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9207230Z copying torch/include/ATen/ops/_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9212690Z copying torch/include/ATen/ops/_foreach_reciprocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9213520Z copying torch/include/ATen/ops/softplus_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9220310Z copying torch/include/ATen/ops/is_inference_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9221440Z copying torch/include/ATen/ops/any_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9222760Z copying torch/include/ATen/ops/digamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9230090Z copying torch/include/ATen/ops/abs_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9231320Z copying torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9238050Z copying torch/include/ATen/ops/elu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9238770Z copying torch/include/ATen/ops/mH_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9240150Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9245310Z copying torch/include/ATen/ops/linalg_cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9247180Z copying torch/include/ATen/ops/inner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9253710Z copying torch/include/ATen/ops/nanmedian_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9254540Z copying torch/include/ATen/ops/fractional_max_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9255980Z copying torch/include/ATen/ops/kthvalue_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9262830Z copying torch/include/ATen/ops/conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9263730Z copying torch/include/ATen/ops/native_group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9270280Z copying torch/include/ATen/ops/mkldnn_linear_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9271750Z copying torch/include/ATen/ops/select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9278310Z copying torch/include/ATen/ops/special_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9279430Z copying torch/include/ATen/ops/reshape_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9280660Z copying torch/include/ATen/ops/addcmul_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9285830Z copying torch/include/ATen/ops/atan_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9286760Z copying torch/include/ATen/ops/_test_serialization_subcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9292840Z copying torch/include/ATen/ops/_scaled_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9293980Z copying torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9300740Z copying torch/include/ATen/ops/neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9301480Z copying torch/include/ATen/ops/_weight_int4pack_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9302760Z copying torch/include/ATen/ops/addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9308300Z copying torch/include/ATen/ops/hardshrink_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9309570Z copying torch/include/ATen/ops/_cudnn_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9316430Z copying torch/include/ATen/ops/softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9317430Z copying torch/include/ATen/ops/silu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9324540Z copying torch/include/ATen/ops/copy_sparse_to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9325380Z copying torch/include/ATen/ops/mse_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9326980Z copying torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9331950Z copying torch/include/ATen/ops/vander_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9333160Z copying torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9340200Z copying torch/include/ATen/ops/cumprod_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9341100Z copying torch/include/ATen/ops/_upsample_nearest_exact3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9348410Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9349130Z copying torch/include/ATen/ops/matrix_H_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9350230Z copying torch/include/ATen/ops/_resize_output.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9356450Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9357410Z copying torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9363640Z copying torch/include/ATen/ops/linalg_cond.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9364850Z copying torch/include/ATen/ops/special_polygamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9366120Z copying torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9373390Z copying torch/include/ATen/ops/replication_pad2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9374440Z copying torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9382310Z copying torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9383620Z copying torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9384880Z copying torch/include/ATen/ops/smm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9389430Z copying torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9390160Z copying torch/include/ATen/ops/_addmm_activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9397840Z copying torch/include/ATen/ops/ormqr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9399070Z copying torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9405610Z copying torch/include/ATen/ops/floor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9406530Z copying torch/include/ATen/ops/sin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9407690Z copying torch/include/ATen/ops/_spdiags_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9414070Z copying torch/include/ATen/ops/float_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9414870Z copying torch/include/ATen/ops/imag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9422420Z copying torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9423320Z copying torch/include/ATen/ops/_foreach_pow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9424660Z copying torch/include/ATen/ops/sinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9430350Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9431130Z copying torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9438270Z copying torch/include/ATen/ops/crow_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9439160Z copying torch/include/ATen/ops/fft_ifftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9440550Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9446460Z copying torch/include/ATen/ops/sum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9447340Z copying torch/include/ATen/ops/exp2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9454540Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9455230Z copying torch/include/ATen/ops/_assert_scalar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9456480Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9462650Z copying torch/include/ATen/ops/view_as_complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9463500Z copying torch/include/ATen/ops/_log_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9470520Z copying torch/include/ATen/ops/sigmoid_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9472050Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9479090Z copying torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9480040Z copying torch/include/ATen/ops/empty_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9481220Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9486970Z copying torch/include/ATen/ops/is_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9488020Z copying torch/include/ATen/ops/special_i1e_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9494620Z copying torch/include/ATen/ops/floor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9495450Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9496790Z copying torch/include/ATen/ops/prelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9502090Z copying torch/include/ATen/ops/take_along_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9502940Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9509960Z copying torch/include/ATen/ops/glu_backward_jvp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9511250Z copying torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9517830Z copying torch/include/ATen/ops/_unsafe_index_put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9518690Z copying torch/include/ATen/ops/softshrink_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9519900Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9526120Z copying torch/include/ATen/ops/_cudnn_rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9527060Z copying torch/include/ATen/ops/replication_pad1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9533780Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9534970Z copying torch/include/ATen/ops/_linalg_det_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9542370Z copying torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9543280Z copying torch/include/ATen/ops/max_unpool3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9544480Z copying torch/include/ATen/ops/_cdist_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9549860Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9550680Z copying torch/include/ATen/ops/reflection_pad3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9558110Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9558920Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9559990Z copying torch/include/ATen/ops/_cdist_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9565270Z copying torch/include/ATen/ops/multi_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9567190Z copying torch/include/ATen/ops/_foreach_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9573670Z copying torch/include/ATen/ops/group_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9574640Z copying torch/include/ATen/ops/special_erfcx_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9577010Z copying torch/include/ATen/ops/_foreach_minimum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9582520Z copying torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9583620Z copying torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9587490Z copying torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9592500Z copying torch/include/ATen/ops/_coalesced.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9596400Z copying torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9597210Z copying torch/include/ATen/ops/_nested_get_ragged_idx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9602410Z copying torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9604690Z copying torch/include/ATen/ops/conv2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9610410Z copying torch/include/ATen/ops/special_logsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9611240Z copying torch/include/ATen/ops/linalg_eigvalsh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9613860Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9619550Z copying torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9620490Z copying torch/include/ATen/ops/dsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9623290Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9628890Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9630700Z copying torch/include/ATen/ops/igammac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9636510Z copying torch/include/ATen/ops/_efficientzerotensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9637740Z copying torch/include/ATen/ops/arange_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9639640Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9645550Z copying torch/include/ATen/ops/clamp_min_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9646740Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9653370Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9654360Z copying torch/include/ATen/ops/celu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9661210Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9662220Z copying torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9663390Z copying torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9669150Z copying torch/include/ATen/ops/_foreach_addcdiv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9670200Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9677240Z copying torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9678080Z copying torch/include/ATen/ops/_chunk_cat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9685660Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9686460Z copying torch/include/ATen/ops/fmin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9687690Z copying torch/include/ATen/ops/upsample_nearest2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9692860Z copying torch/include/ATen/ops/fft_ifftshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9694700Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9700920Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9701960Z copying torch/include/ATen/ops/softplus_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9703570Z copying torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9709120Z copying torch/include/ATen/ops/index_fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9710130Z copying torch/include/ATen/ops/quantized_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9713500Z copying torch/include/ATen/ops/logaddexp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9718570Z copying torch/include/ATen/ops/arange_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9722340Z copying torch/include/ATen/ops/_nnpack_spatial_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9725880Z copying torch/include/ATen/ops/bitwise_not_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9726830Z copying torch/include/ATen/ops/conv_depthwise3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9731520Z copying torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9733390Z copying torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9740030Z copying torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9741210Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9743160Z copying torch/include/ATen/ops/_batch_norm_impl_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9749730Z copying torch/include/ATen/ops/sqrt_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9750820Z copying torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9757360Z copying torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9758190Z copying torch/include/ATen/ops/_foreach_sub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9759490Z copying torch/include/ATen/ops/sub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9765990Z copying torch/include/ATen/ops/_to_sparse_semi_structured_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9766970Z copying torch/include/ATen/ops/unbind_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9774260Z copying torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9775090Z copying torch/include/ATen/ops/signbit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9781470Z copying torch/include/ATen/ops/gelu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9782460Z copying torch/include/ATen/ops/is_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9783620Z copying torch/include/ATen/ops/numpy_T_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9789720Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9790990Z copying torch/include/ATen/ops/to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9796930Z copying torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9799360Z copying torch/include/ATen/ops/replication_pad2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9800080Z copying torch/include/ATen/ops/is_floating_point_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9805960Z copying torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9807120Z copying torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9813430Z copying torch/include/ATen/ops/_nested_tensor_strides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9814530Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9822130Z copying torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9823120Z copying torch/include/ATen/ops/all_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9824330Z copying torch/include/ATen/ops/tanh_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9830860Z copying torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9831680Z copying torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9839380Z copying torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9840280Z copying torch/include/ATen/ops/masked_select_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9841520Z copying torch/include/ATen/ops/_flash_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9848470Z copying torch/include/ATen/ops/logit_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9849630Z copying torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9856440Z copying torch/include/ATen/ops/chunk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9857480Z copying torch/include/ATen/ops/_foobar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9858620Z copying torch/include/ATen/ops/atan2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9864470Z copying torch/include/ATen/ops/nextafter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9865150Z copying torch/include/ATen/ops/amin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9866580Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9872550Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9873980Z copying torch/include/ATen/ops/_sparse_csr_prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9880410Z copying torch/include/ATen/ops/_cholesky_solve_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9881250Z copying torch/include/ATen/ops/frexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9883110Z copying torch/include/ATen/ops/alias_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9888500Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9889350Z copying torch/include/ATen/ops/gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9895960Z copying torch/include/ATen/ops/isclose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9897490Z copying torch/include/ATen/ops/batch_norm_gather_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9903960Z copying torch/include/ATen/ops/gather_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9904760Z copying torch/include/ATen/ops/mkldnn_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9905960Z copying torch/include/ATen/ops/grid_sampler_3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9911870Z copying torch/include/ATen/ops/diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9912590Z copying torch/include/ATen/ops/sspaddmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9920160Z copying torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9921550Z copying torch/include/ATen/ops/_test_string_default_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9928030Z copying torch/include/ATen/ops/_logcumsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9929120Z copying torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9930340Z copying torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9935420Z copying torch/include/ATen/ops/_unique_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9936910Z copying torch/include/ATen/ops/_sobol_engine_draw.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9943270Z copying torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9944320Z copying torch/include/ATen/ops/feature_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9946080Z copying torch/include/ATen/ops/diagflat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9952280Z copying torch/include/ATen/ops/_values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9953460Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9960190Z copying torch/include/ATen/ops/index_add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9961650Z copying torch/include/ATen/ops/glu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9967120Z copying torch/include/ATen/ops/_wrapped_linear_prepack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9968680Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9969640Z copying torch/include/ATen/ops/combinations_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9975200Z copying torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9976010Z copying torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9982870Z copying torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9984140Z copying torch/include/ATen/ops/swapdims_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9990230Z copying torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9991180Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9992520Z copying torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9998970Z copying torch/include/ATen/ops/isreal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:50.9999940Z copying torch/include/ATen/ops/addcmul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0007230Z copying torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0008050Z copying torch/include/ATen/ops/cumulative_trapezoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0014830Z copying torch/include/ATen/ops/arctan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0015660Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0016800Z copying torch/include/ATen/ops/_sparse_sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0022650Z copying torch/include/ATen/ops/isnan_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0023900Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0030430Z copying torch/include/ATen/ops/sinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0031300Z copying torch/include/ATen/ops/reflection_pad1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0032470Z copying torch/include/ATen/ops/arctanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0038070Z copying torch/include/ATen/ops/col2im.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0039340Z copying torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0046060Z copying torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0048530Z copying torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0053160Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0054700Z copying torch/include/ATen/ops/upsample_linear1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0056540Z copying torch/include/ATen/ops/_cudnn_rnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0062040Z copying torch/include/ATen/ops/_sparse_semi_structured_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0062770Z copying torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0069120Z copying torch/include/ATen/ops/histc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0070500Z copying torch/include/ATen/ops/unique_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0077630Z copying torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0078360Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0079570Z copying torch/include/ATen/ops/_coalesce_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0085820Z copying torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0086780Z copying torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0093330Z copying torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0094750Z copying torch/include/ATen/ops/geometric_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0101010Z copying torch/include/ATen/ops/logit_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0102130Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0103230Z copying torch/include/ATen/ops/mH.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0108980Z copying torch/include/ATen/ops/count_nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0109830Z copying torch/include/ATen/ops/fmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0116700Z copying torch/include/ATen/ops/_nested_view_from_buffer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0118050Z copying torch/include/ATen/ops/avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0124550Z copying torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0125620Z copying torch/include/ATen/ops/trace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0126960Z copying torch/include/ATen/ops/_weight_norm_interface_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0132140Z copying torch/include/ATen/ops/addbmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0133630Z copying torch/include/ATen/ops/empty_strided_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0140240Z copying torch/include/ATen/ops/add_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0141280Z copying torch/include/ATen/ops/mv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0142490Z copying torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0148900Z copying torch/include/ATen/ops/tensor_split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0149960Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0157220Z copying torch/include/ATen/ops/var_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0157990Z copying torch/include/ATen/ops/slice_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0164850Z copying torch/include/ATen/ops/feature_alpha_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0165950Z copying torch/include/ATen/ops/softshrink.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0167260Z copying torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0172600Z copying torch/include/ATen/ops/lgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0174110Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0186370Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0186770Z copying torch/include/ATen/ops/polar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0187130Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0189370Z copying torch/include/ATen/ops/mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0190040Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0196610Z copying torch/include/ATen/ops/_adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0197920Z copying torch/include/ATen/ops/pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0204470Z copying torch/include/ATen/ops/_foreach_zero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0205410Z copying torch/include/ATen/ops/lt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0206650Z copying torch/include/ATen/ops/_foreach_cosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0212340Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0213060Z copying torch/include/ATen/ops/repeat_interleave_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0219660Z copying torch/include/ATen/ops/gelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0221050Z copying torch/include/ATen/ops/adaptive_max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0227840Z copying torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0228800Z copying torch/include/ATen/ops/logical_not.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0230010Z copying torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0235710Z copying torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0236660Z copying torch/include/ATen/ops/max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0243440Z copying torch/include/ATen/ops/clamp_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0244330Z copying torch/include/ATen/ops/cross_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0252190Z copying torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0253300Z copying torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0254440Z copying torch/include/ATen/ops/unbind_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0259780Z copying torch/include/ATen/ops/frac_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0261410Z copying torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0267680Z copying torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0268540Z copying torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0269630Z copying torch/include/ATen/ops/slice_inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0275810Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0276760Z copying torch/include/ATen/ops/ravel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0283120Z copying torch/include/ATen/ops/_nested_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0285570Z copying torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0291260Z copying torch/include/ATen/ops/floor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0292420Z copying torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0293640Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0299230Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0300010Z copying torch/include/ATen/ops/renorm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0306750Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0308100Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0309380Z copying torch/include/ATen/ops/bernoulli_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0316670Z copying torch/include/ATen/ops/cumsum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0317520Z copying torch/include/ATen/ops/from_file_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0325080Z copying torch/include/ATen/ops/layer_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0326240Z copying torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0333060Z copying torch/include/ATen/ops/gelu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0334170Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0335410Z copying torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0341290Z copying torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0342300Z copying torch/include/ATen/ops/_to_dense_sparsecsrmps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0343610Z copying torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0349370Z copying torch/include/ATen/ops/allclose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0350740Z copying torch/include/ATen/ops/special_bessel_j0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0357370Z copying torch/include/ATen/ops/tensordot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0358190Z copying torch/include/ATen/ops/_foreach_tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0359390Z copying torch/include/ATen/ops/linalg_ldl_factor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0365250Z copying torch/include/ATen/ops/thnn_conv2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0366240Z copying torch/include/ATen/ops/_reshape_alias_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0372820Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0374310Z copying torch/include/ATen/ops/_embedding_bag_forward_only_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0381040Z copying torch/include/ATen/ops/_lu_with_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0382000Z copying torch/include/ATen/ops/bincount_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0383300Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0389470Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0390160Z copying torch/include/ATen/ops/mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0397530Z copying torch/include/ATen/ops/digamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0398310Z copying torch/include/ATen/ops/positive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0399540Z copying torch/include/ATen/ops/log10_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0406180Z copying torch/include/ATen/ops/remainder_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0407240Z copying torch/include/ATen/ops/bitwise_not_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0414410Z copying torch/include/ATen/ops/_euclidean_dist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0415790Z copying torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0422300Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0423310Z copying torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0424710Z copying torch/include/ATen/ops/logical_xor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0429810Z copying torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0431660Z copying torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0438090Z copying torch/include/ATen/ops/resize_as_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0440560Z copying torch/include/ATen/ops/col2im_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0445890Z copying torch/include/ATen/ops/clamp_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0447300Z copying torch/include/ATen/ops/einsum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0449680Z copying torch/include/ATen/ops/align_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0455550Z copying torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0456360Z copying torch/include/ATen/ops/mode_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0462810Z copying torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0465140Z copying torch/include/ATen/ops/rnn_tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0471190Z copying torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0472150Z copying torch/include/ATen/ops/is_set_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0473410Z copying torch/include/ATen/ops/linalg_householder_product_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0479080Z copying torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0480000Z copying torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0482770Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0488210Z copying torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0491300Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0496430Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0497270Z copying torch/include/ATen/ops/_cast_Byte_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0500150Z copying torch/include/ATen/ops/dstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0505090Z copying torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0506070Z copying torch/include/ATen/ops/sign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0512960Z copying torch/include/ATen/ops/triu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0513780Z copying torch/include/ATen/ops/is_distributed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0521080Z copying torch/include/ATen/ops/_sparse_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0522160Z copying torch/include/ATen/ops/unflatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0523330Z copying torch/include/ATen/ops/_segment_reduce_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0528970Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0529820Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0536540Z copying torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0537920Z copying torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0544890Z copying torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0546080Z copying torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0547540Z copying torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0552190Z copying torch/include/ATen/ops/_nested_get_offsets_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0553260Z copying torch/include/ATen/ops/mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0560120Z copying torch/include/ATen/ops/gru_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0561010Z copying torch/include/ATen/ops/log2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0567770Z copying torch/include/ATen/ops/_fused_adam_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0568770Z copying torch/include/ATen/ops/one_hot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0570020Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0576270Z copying torch/include/ATen/ops/as_strided_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0577330Z copying torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0584070Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0585360Z copying torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0586660Z copying torch/include/ATen/ops/new_zeros_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0592030Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0592890Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0600000Z copying torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0602120Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0607580Z copying torch/include/ATen/ops/tan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0608600Z copying torch/include/ATen/ops/lu_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0609860Z copying torch/include/ATen/ops/quantized_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0615500Z copying torch/include/ATen/ops/sgn_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0616350Z copying torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0623290Z copying torch/include/ATen/ops/_test_functorch_fallback_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0624360Z copying torch/include/ATen/ops/_fw_primal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0631380Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0632450Z copying torch/include/ATen/ops/scatter_reduce_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0633600Z copying torch/include/ATen/ops/fft_irfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0638960Z copying torch/include/ATen/ops/addmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0648540Z copying torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0654530Z copying torch/include/ATen/ops/blackman_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0655700Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0657000Z copying torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0662390Z copying torch/include/ATen/ops/quantize_per_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0663130Z copying torch/include/ATen/ops/transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0666720Z copying torch/include/ATen/ops/_fused_sgd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0672140Z copying torch/include/ATen/ops/amin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0675750Z copying torch/include/ATen/ops/acosh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0679720Z copying torch/include/ATen/ops/_foreach_rsqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0680650Z copying torch/include/ATen/ops/sum_to_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0684870Z copying torch/include/ATen/ops/var_mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0688480Z copying torch/include/ATen/ops/histc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0692290Z copying torch/include/ATen/ops/align_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0693100Z copying torch/include/ATen/ops/diagonal_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0698100Z copying torch/include/ATen/ops/sym_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0701130Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0706290Z copying torch/include/ATen/ops/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0707400Z copying torch/include/ATen/ops/quantile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0710790Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0715960Z copying torch/include/ATen/ops/ge_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0718310Z copying torch/include/ATen/ops/triangular_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0719450Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0725550Z copying torch/include/ATen/ops/hash_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0726740Z copying torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0734330Z copying torch/include/ATen/ops/amax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0735260Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0741740Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0742720Z copying torch/include/ATen/ops/fft_ifftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0743870Z copying torch/include/ATen/ops/log_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0749140Z copying torch/include/ATen/ops/pow_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0750290Z copying torch/include/ATen/ops/asinh_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0751560Z copying torch/include/ATen/ops/_histogramdd_bin_edges_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0752700Z copying torch/include/ATen/ops/q_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0758950Z copying torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0760040Z copying torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0766580Z copying torch/include/ATen/ops/rot90_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0767960Z copying torch/include/ATen/ops/linalg_eig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0774400Z copying torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0775160Z copying torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0776360Z copying torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0782860Z copying torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0783710Z copying torch/include/ATen/ops/stride_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0790250Z copying torch/include/ATen/ops/cudnn_is_acceptable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0791610Z copying torch/include/ATen/ops/special_zeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0797910Z copying torch/include/ATen/ops/avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0799880Z copying torch/include/ATen/ops/renorm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0805520Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0806980Z copying torch/include/ATen/ops/is_coalesced_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0812950Z copying torch/include/ATen/ops/affine_grid_generator_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0814330Z copying torch/include/ATen/ops/_nested_view_from_buffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0815490Z copying torch/include/ATen/ops/true_divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0822490Z copying torch/include/ATen/ops/_linalg_solve_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0823430Z copying torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0829770Z copying torch/include/ATen/ops/histogram_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0830800Z copying torch/include/ATen/ops/linalg_lu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0837590Z copying torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0838670Z copying torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0839790Z copying torch/include/ATen/ops/poisson_nll_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0844510Z copying torch/include/ATen/ops/unique_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0846610Z copying torch/include/ATen/ops/rshift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0848370Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0852720Z copying torch/include/ATen/ops/unsafe_split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0856610Z copying torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0862510Z copying torch/include/ATen/ops/dense_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0864540Z copying torch/include/ATen/ops/bitwise_right_shift_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0870140Z copying torch/include/ATen/ops/masked_fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0871220Z copying torch/include/ATen/ops/masked_fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0872410Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0878740Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0879650Z copying torch/include/ATen/ops/_cast_Byte_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0886940Z copying torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0887680Z copying torch/include/ATen/ops/any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0895750Z copying torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0896610Z copying torch/include/ATen/ops/convolution_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0897860Z copying torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0903930Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0904770Z copying torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0911290Z copying torch/include/ATen/ops/_reshape_alias_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0912220Z copying torch/include/ATen/ops/_upsample_nearest_exact2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0913400Z copying torch/include/ATen/ops/nll_loss_forward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0919720Z copying torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0920880Z copying torch/include/ATen/ops/linalg_vector_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0927830Z copying torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0928590Z copying torch/include/ATen/ops/contiguous_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0929750Z copying torch/include/ATen/ops/le_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0936000Z copying torch/include/ATen/ops/convolution_overrideable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0936800Z copying torch/include/ATen/ops/hardtanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0943230Z copying torch/include/ATen/ops/elu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0944670Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0945820Z copying torch/include/ATen/ops/elu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0952480Z copying torch/include/ATen/ops/angle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0953580Z copying torch/include/ATen/ops/cross_entropy_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0960330Z copying torch/include/ATen/ops/special_gammaincc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0961160Z copying torch/include/ATen/ops/subtract_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0968830Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0969710Z copying torch/include/ATen/ops/poisson_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0976200Z copying torch/include/ATen/ops/floor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0976920Z copying torch/include/ATen/ops/retains_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0984670Z copying torch/include/ATen/ops/sspaddmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0985570Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0986760Z copying torch/include/ATen/ops/index_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0992700Z copying torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.0994000Z copying torch/include/ATen/ops/scatter_add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1000840Z copying torch/include/ATen/ops/_copy_from.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1001880Z copying torch/include/ATen/ops/narrow_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1003020Z copying torch/include/ATen/ops/flip_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1006790Z copying torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1010290Z copying torch/include/ATen/ops/logical_not_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1016360Z copying torch/include/ATen/ops/_scaled_grouped_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1017790Z copying torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1019100Z copying torch/include/ATen/ops/mse_loss_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1026310Z copying torch/include/ATen/ops/fractional_max_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1027240Z copying torch/include/ATen/ops/mkldnn_linear_backward_input.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1034320Z copying torch/include/ATen/ops/special_logsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1035390Z copying torch/include/ATen/ops/adaptive_avg_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1041990Z copying torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1043010Z copying torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1044110Z copying torch/include/ATen/ops/bitwise_or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1050190Z copying torch/include/ATen/ops/l1_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1051020Z copying torch/include/ATen/ops/geqrf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1057590Z copying torch/include/ATen/ops/log2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1058740Z copying torch/include/ATen/ops/isposinf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1060100Z copying torch/include/ATen/ops/_masked_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1065870Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1067060Z copying torch/include/ATen/ops/reciprocal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1073520Z copying torch/include/ATen/ops/lcm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1074980Z copying torch/include/ATen/ops/frexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1076430Z copying torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1083250Z copying torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1084360Z copying torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1090560Z copying torch/include/ATen/ops/special_xlog1py_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1091530Z copying torch/include/ATen/ops/exp2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1098530Z copying torch/include/ATen/ops/mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1099570Z copying torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1100720Z copying torch/include/ATen/ops/le_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1107050Z copying torch/include/ATen/ops/conv3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1107820Z copying torch/include/ATen/ops/stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1114620Z copying torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1115460Z copying torch/include/ATen/ops/special_erfinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1116720Z copying torch/include/ATen/ops/var_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1122570Z copying torch/include/ATen/ops/rsqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1124020Z copying torch/include/ATen/ops/_convolution_double_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1130520Z copying torch/include/ATen/ops/polar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1131320Z copying torch/include/ATen/ops/_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1132530Z copying torch/include/ATen/ops/_make_dual_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1138140Z copying torch/include/ATen/ops/trunc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1146510Z copying torch/include/ATen/ops/meshgrid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1147350Z copying torch/include/ATen/ops/slow_conv_transpose2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1154210Z copying torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1155360Z copying torch/include/ATen/ops/silu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1156330Z copying torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1161860Z copying torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1163150Z copying torch/include/ATen/ops/special_logit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1169330Z copying torch/include/ATen/ops/affine_grid_generator_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1170640Z copying torch/include/ATen/ops/full_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1175880Z copying torch/include/ATen/ops/lgamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1177830Z copying torch/include/ATen/ops/isneginf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1179110Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1185380Z copying torch/include/ATen/ops/linalg_inv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1186210Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1193190Z copying torch/include/ATen/ops/index_put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1194160Z copying torch/include/ATen/ops/data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1201280Z copying torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1202430Z copying torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1203590Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1208610Z copying torch/include/ATen/ops/div_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1215230Z copying torch/include/ATen/ops/logaddexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1216840Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1218130Z copying torch/include/ATen/ops/permute_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1219360Z copying torch/include/ATen/ops/dense_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1225290Z copying torch/include/ATen/ops/xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1226130Z copying torch/include/ATen/ops/max_unpool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1233060Z copying torch/include/ATen/ops/linalg_inv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1234590Z copying torch/include/ATen/ops/_sparse_sparse_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1241420Z copying torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1242500Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1243610Z copying torch/include/ATen/ops/ge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1249950Z copying torch/include/ATen/ops/_foreach_clamp_min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1251000Z copying torch/include/ATen/ops/index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1258280Z copying torch/include/ATen/ops/tanh_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1259020Z copying torch/include/ATen/ops/cos_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1260340Z copying torch/include/ATen/ops/grid_sampler_3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1266290Z copying torch/include/ATen/ops/split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1267150Z copying torch/include/ATen/ops/div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1274720Z copying torch/include/ATen/ops/msort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1275450Z copying torch/include/ATen/ops/refine_names_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1276600Z copying torch/include/ATen/ops/t_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1283120Z copying torch/include/ATen/ops/isneginf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1284010Z copying torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1290670Z copying torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1292160Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1293430Z copying torch/include/ATen/ops/_sparse_mask_projection_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1298970Z copying torch/include/ATen/ops/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1299910Z copying torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1306620Z copying torch/include/ATen/ops/copy_sparse_to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1308250Z copying torch/include/ATen/ops/bmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1315250Z copying torch/include/ATen/ops/_foreach_log_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1316290Z copying torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1322320Z copying torch/include/ATen/ops/logaddexp2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1323390Z copying torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1331230Z copying torch/include/ATen/ops/softplus_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1332570Z copying torch/include/ATen/ops/log_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1339220Z copying torch/include/ATen/ops/trapz_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1340110Z copying torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1341350Z copying torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1347210Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1348030Z copying torch/include/ATen/ops/arcsin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1349220Z copying torch/include/ATen/ops/batch_norm_update_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1355450Z copying torch/include/ATen/ops/exp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1356510Z copying torch/include/ATen/ops/cosine_embedding_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1363710Z copying torch/include/ATen/ops/_sparse_sparse_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1365720Z copying torch/include/ATen/ops/fractional_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1371050Z copying torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1371830Z copying torch/include/ATen/ops/col_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1373580Z copying torch/include/ATen/ops/lgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1379350Z copying torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1380200Z copying torch/include/ATen/ops/pin_memory_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1383880Z copying torch/include/ATen/ops/_foreach_addcdiv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1389490Z copying torch/include/ATen/ops/linalg_lu_factor_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1391430Z copying torch/include/ATen/ops/special_bessel_j1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1392650Z copying torch/include/ATen/ops/div_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1398840Z copying torch/include/ATen/ops/_copy_from_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1400450Z copying torch/include/ATen/ops/_neg_view_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1406560Z copying torch/include/ATen/ops/concat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1407610Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1409110Z copying torch/include/ATen/ops/histogramdd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1415010Z copying torch/include/ATen/ops/_native_batch_norm_legit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1416120Z copying torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1423050Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1424180Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1430490Z copying torch/include/ATen/ops/igamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1431920Z copying torch/include/ATen/ops/_nested_get_offsets_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1433330Z copying torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1438690Z copying torch/include/ATen/ops/_standard_gamma_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1439790Z copying torch/include/ATen/ops/zero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1446820Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1448260Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1454640Z copying torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1455540Z copying torch/include/ATen/ops/_foreach_clamp_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1456790Z copying torch/include/ATen/ops/pixel_unshuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1462330Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1463290Z copying torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1470230Z copying torch/include/ATen/ops/logcumsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1471060Z copying torch/include/ATen/ops/leaky_relu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1478050Z copying torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1478780Z copying torch/include/ATen/ops/to_mkldnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1486320Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1487300Z copying torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1493840Z copying torch/include/ATen/ops/sin_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1495260Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1496610Z copying torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1501990Z copying torch/include/ATen/ops/_is_any_true_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1502750Z copying torch/include/ATen/ops/linalg_tensorinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1509490Z copying torch/include/ATen/ops/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1511170Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1517120Z copying torch/include/ATen/ops/exponential.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1518100Z copying torch/include/ATen/ops/gt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1519270Z copying torch/include/ATen/ops/linalg_det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1525110Z copying torch/include/ATen/ops/masked_select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1526290Z copying torch/include/ATen/ops/xlogy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1533520Z copying torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1534410Z copying torch/include/ATen/ops/cudnn_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1541740Z copying torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1542810Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1543900Z copying torch/include/ATen/ops/_foreach_sqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1549500Z copying torch/include/ATen/ops/atleast_1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1550400Z copying torch/include/ATen/ops/isin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1557320Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1558040Z copying torch/include/ATen/ops/_to_sparse_csr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1559210Z copying torch/include/ATen/ops/sinc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1565240Z copying torch/include/ATen/ops/dist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1565990Z copying torch/include/ATen/ops/norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1572940Z copying torch/include/ATen/ops/hardtanh_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1574450Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1580960Z copying torch/include/ATen/ops/copysign_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1581890Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1583000Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1587980Z copying torch/include/ATen/ops/tan_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1590520Z copying torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1596200Z copying torch/include/ATen/ops/_reshape_alias_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1597350Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1599520Z copying torch/include/ATen/ops/histogramdd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1605920Z copying torch/include/ATen/ops/aminmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1606830Z copying torch/include/ATen/ops/index_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1614160Z copying torch/include/ATen/ops/_nested_get_ragged_idx_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1614900Z copying torch/include/ATen/ops/leaky_relu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1622220Z copying torch/include/ATen/ops/lshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1623250Z copying torch/include/ATen/ops/fft_irfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1624480Z copying torch/include/ATen/ops/digamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1629760Z copying torch/include/ATen/ops/grid_sampler_3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1631790Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1636700Z copying torch/include/ATen/ops/_sparse_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1637530Z copying torch/include/ATen/ops/gather_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1640330Z copying torch/include/ATen/ops/_has_same_storage_numel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1645830Z copying torch/include/ATen/ops/_dimI.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1650040Z copying torch/include/ATen/ops/exponential_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1658380Z copying torch/include/ATen/ops/_weight_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1662740Z copying torch/include/ATen/ops/lu_unpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1668260Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1675820Z copying torch/include/ATen/ops/_foreach_ceil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1676720Z copying torch/include/ATen/ops/_convert_weight_to_int4pack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1680890Z copying torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1684190Z copying torch/include/ATen/ops/matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1685120Z copying torch/include/ATen/ops/_print_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1689300Z copying torch/include/ATen/ops/to_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1693820Z copying torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1698100Z copying torch/include/ATen/ops/nanmedian_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1701170Z copying torch/include/ATen/ops/quantize_per_channel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1702160Z copying torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1707090Z copying torch/include/ATen/ops/replication_pad3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1709410Z copying torch/include/ATen/ops/ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1715070Z copying torch/include/ATen/ops/argwhere.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1716120Z copying torch/include/ATen/ops/_foreach_tan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1722790Z copying torch/include/ATen/ops/asin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1724330Z copying torch/include/ATen/ops/index_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1730330Z copying torch/include/ATen/ops/avg_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1731070Z copying torch/include/ATen/ops/bitwise_or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1732760Z copying torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1738860Z copying torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1739800Z copying torch/include/ATen/ops/diff_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1746400Z copying torch/include/ATen/ops/fix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1747270Z copying torch/include/ATen/ops/_standard_gamma_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1754740Z copying torch/include/ATen/ops/special_expit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1755490Z copying torch/include/ATen/ops/rsub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1756820Z copying torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1762590Z copying torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1763330Z copying torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1769900Z copying torch/include/ATen/ops/std.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1771240Z copying torch/include/ATen/ops/_is_all_true_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1777770Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1778880Z copying torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1780030Z copying torch/include/ATen/ops/polygamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1785040Z copying torch/include/ATen/ops/index_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1786070Z copying torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1792730Z copying torch/include/ATen/ops/_test_optional_floatlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1793810Z copying torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1800000Z copying torch/include/ATen/ops/_embedding_bag_forward_only.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1801200Z copying torch/include/ATen/ops/index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1802480Z copying torch/include/ATen/ops/aminmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1809190Z copying torch/include/ATen/ops/_log_softmax_backward_data_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1817090Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1817990Z copying torch/include/ATen/ops/tril_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1824960Z copying torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1825990Z copying torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1827140Z copying torch/include/ATen/ops/fmod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1832440Z copying torch/include/ATen/ops/randint_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1833610Z copying torch/include/ATen/ops/linalg_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1840340Z copying torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1841470Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1842700Z copying torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1849870Z copying torch/include/ATen/ops/special_expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1850770Z copying torch/include/ATen/ops/special_erfinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1857150Z copying torch/include/ATen/ops/linalg_ldl_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1857990Z copying torch/include/ATen/ops/linalg_qr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1865800Z copying torch/include/ATen/ops/pad_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1866740Z copying torch/include/ATen/ops/hardswish.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1867860Z copying torch/include/ATen/ops/geqrf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1873370Z copying torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1875160Z copying torch/include/ATen/ops/grid_sampler_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1880850Z copying torch/include/ATen/ops/logit_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1881680Z copying torch/include/ATen/ops/ones_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1883290Z copying torch/include/ATen/ops/_test_optional_filled_intlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1888460Z copying torch/include/ATen/ops/split_with_sizes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1889610Z copying torch/include/ATen/ops/_test_warn_in_autograd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1893550Z copying torch/include/ATen/ops/neg_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1898500Z copying torch/include/ATen/ops/isfinite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1902200Z copying torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1906390Z copying torch/include/ATen/ops/q_per_channel_axis_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1907400Z copying torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1911300Z copying torch/include/ATen/ops/_batch_norm_no_update.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1915410Z copying torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1917270Z copying torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1920790Z copying torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1924170Z copying torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1926230Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1929990Z copying torch/include/ATen/ops/sparse_coo_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1932950Z copying torch/include/ATen/ops/_is_zerotensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1939690Z copying torch/include/ATen/ops/xlogy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1940750Z copying torch/include/ATen/ops/is_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1947080Z copying torch/include/ATen/ops/log10_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1948200Z copying torch/include/ATen/ops/_standard_gamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1949350Z copying torch/include/ATen/ops/conv2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1955440Z copying torch/include/ATen/ops/dequantize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1956310Z copying torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1963380Z copying torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1971190Z copying torch/include/ATen/ops/_pin_memory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1972400Z copying torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1973580Z copying torch/include/ATen/ops/gcd_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1979870Z copying torch/include/ATen/ops/_convolution_mode_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1980910Z copying torch/include/ATen/ops/convolution_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1987470Z copying torch/include/ATen/ops/cosine_similarity_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1988640Z copying torch/include/ATen/ops/_shape_as_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1989850Z copying torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1995870Z copying torch/include/ATen/ops/isposinf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.1996640Z copying torch/include/ATen/ops/conv_transpose3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2003620Z copying torch/include/ATen/ops/_nested_tensor_from_mask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2005220Z copying torch/include/ATen/ops/reflection_pad3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2006450Z copying torch/include/ATen/ops/unflatten_dense_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2011720Z copying torch/include/ATen/ops/_version_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2013080Z copying torch/include/ATen/ops/_pdist_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2017770Z copying torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2021070Z copying torch/include/ATen/ops/empty_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2025260Z copying torch/include/ATen/ops/uniform.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2026330Z copying torch/include/ATen/ops/grid_sampler_3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2030570Z copying torch/include/ATen/ops/masked_scatter_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2034690Z copying torch/include/ATen/ops/rshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2038330Z copying torch/include/ATen/ops/cumprod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2039420Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2044440Z copying torch/include/ATen/ops/mse_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2046580Z copying torch/include/ATen/ops/diagonal_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2052760Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2053770Z copying torch/include/ATen/ops/avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2056590Z copying torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2063050Z copying torch/include/ATen/ops/sparse_coo_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2063880Z copying torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2071370Z copying torch/include/ATen/ops/bmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2072050Z copying torch/include/ATen/ops/detach_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2073150Z copying torch/include/ATen/ops/set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2078750Z copying torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2079790Z copying torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2086400Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2087740Z copying torch/include/ATen/ops/silu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2093210Z copying torch/include/ATen/ops/native_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2094890Z copying torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2096100Z copying torch/include/ATen/ops/_add_relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2103140Z copying torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2104050Z copying torch/include/ATen/ops/replication_pad2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2110320Z copying torch/include/ATen/ops/randperm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2111970Z copying torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2118000Z copying torch/include/ATen/ops/det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2119290Z copying torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2120700Z copying torch/include/ATen/ops/exp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2126090Z copying torch/include/ATen/ops/special_modified_bessel_k0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2127550Z copying torch/include/ATen/ops/_fft_c2r_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2133920Z copying torch/include/ATen/ops/_add_batch_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2136270Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2142020Z copying torch/include/ATen/ops/threshold_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2143070Z copying torch/include/ATen/ops/_foreach_tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2150880Z copying torch/include/ATen/ops/linalg_vander.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2151720Z copying torch/include/ATen/ops/sigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2158710Z copying torch/include/ATen/ops/mish_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2159830Z copying torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2161150Z copying torch/include/ATen/ops/_has_same_storage_numel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2166380Z copying torch/include/ATen/ops/embedding_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2167800Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2171170Z copying torch/include/ATen/ops/_cast_Double_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2175210Z copying torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2176320Z copying torch/include/ATen/ops/_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2180540Z copying torch/include/ATen/ops/diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2190560Z copying torch/include/ATen/ops/new_full_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2191170Z copying torch/include/ATen/ops/isposinf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2191440Z copying torch/include/ATen/ops/new_empty_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2193970Z copying torch/include/ATen/ops/_weight_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2197790Z copying torch/include/ATen/ops/triu_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2202310Z copying torch/include/ATen/ops/upsample_nearest1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2203240Z copying torch/include/ATen/ops/special_round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2207550Z copying torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2211200Z copying torch/include/ATen/ops/_has_same_storage_numel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2215280Z copying torch/include/ATen/ops/quantile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2216180Z copying torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2220510Z copying torch/include/ATen/ops/index_select_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2223510Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2227790Z copying torch/include/ATen/ops/pad_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2229100Z copying torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2233270Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2237110Z copying torch/include/ATen/ops/elu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2242100Z copying torch/include/ATen/ops/glu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2245450Z copying torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2246360Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2251460Z copying torch/include/ATen/ops/_fw_primal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2252840Z copying torch/include/ATen/ops/sym_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2259220Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2260300Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2267840Z copying torch/include/ATen/ops/hardsigmoid_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2268970Z copying torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2275930Z copying torch/include/ATen/ops/batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2276830Z copying torch/include/ATen/ops/row_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2278060Z copying torch/include/ATen/ops/batch_norm_backward_elemt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2283880Z copying torch/include/ATen/ops/slow_conv3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2284920Z copying torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2292270Z copying torch/include/ATen/ops/special_bessel_j1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2293060Z copying torch/include/ATen/ops/t_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2294270Z copying torch/include/ATen/ops/det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2301690Z copying torch/include/ATen/ops/_to_sparse_bsr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2308560Z copying torch/include/ATen/ops/randperm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2309640Z copying torch/include/ATen/ops/expand_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2310890Z copying torch/include/ATen/ops/_fft_c2r.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2315520Z copying torch/include/ATen/ops/sqrt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2316910Z copying torch/include/ATen/ops/cosine_similarity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2323780Z copying torch/include/ATen/ops/_foreach_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2324580Z copying torch/include/ATen/ops/nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2325990Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2332460Z copying torch/include/ATen/ops/sparse_csc_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2333470Z copying torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2339650Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2340800Z copying torch/include/ATen/ops/q_per_channel_axis_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2342950Z copying torch/include/ATen/ops/logdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2347350Z copying torch/include/ATen/ops/take_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2350040Z copying torch/include/ATen/ops/miopen_rnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2355600Z copying torch/include/ATen/ops/minimum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2356510Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2363590Z copying torch/include/ATen/ops/greater_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2364500Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2371120Z copying torch/include/ATen/ops/sparse_resize_and_clear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2372040Z copying torch/include/ATen/ops/prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2373200Z copying torch/include/ATen/ops/tril_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2379370Z copying torch/include/ATen/ops/miopen_depthwise_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2380510Z copying torch/include/ATen/ops/_functional_assert_async_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2387120Z copying torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2388380Z copying torch/include/ATen/ops/_is_any_true_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2394970Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2395990Z copying torch/include/ATen/ops/_fused_adam_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2397150Z copying torch/include/ATen/ops/max_unpool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2403310Z copying torch/include/ATen/ops/linalg_pinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2404190Z copying torch/include/ATen/ops/_cast_Half_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2411680Z copying torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2412390Z copying torch/include/ATen/ops/native_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2413590Z copying torch/include/ATen/ops/unique_dim_consecutive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2418890Z copying torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2420060Z copying torch/include/ATen/ops/col2im_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2426240Z copying torch/include/ATen/ops/replication_pad2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2427630Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2428850Z copying torch/include/ATen/ops/crow_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2435940Z copying torch/include/ATen/ops/cosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2437010Z copying torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2444350Z copying torch/include/ATen/ops/threshold_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2445360Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2452140Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2453080Z copying torch/include/ATen/ops/_foreach_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2454500Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2459580Z copying torch/include/ATen/ops/binary_cross_entropy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2460960Z copying torch/include/ATen/ops/_softmax_backward_data_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2467560Z copying torch/include/ATen/ops/log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2468700Z copying torch/include/ATen/ops/special_modified_bessel_i0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2475400Z copying torch/include/ATen/ops/_cudnn_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2476260Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2482590Z copying torch/include/ATen/ops/_to_sparse_csr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2484140Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2490780Z copying torch/include/ATen/ops/lu_unpack_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2491890Z copying torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2493190Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2498390Z copying torch/include/ATen/ops/is_pinned_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2499720Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2506110Z copying torch/include/ATen/ops/isposinf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2507400Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2513670Z copying torch/include/ATen/ops/_cslt_compress_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2514710Z copying torch/include/ATen/ops/slow_conv_dilated3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2515910Z copying torch/include/ATen/ops/_foreach_abs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2522750Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2523830Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2530140Z copying torch/include/ATen/ops/histc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2532550Z copying torch/include/ATen/ops/upsample_trilinear3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2538270Z copying torch/include/ATen/ops/_sparse_sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2539320Z copying torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2540500Z copying torch/include/ATen/ops/relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2545900Z copying torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2546890Z copying torch/include/ATen/ops/linalg_matrix_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2550030Z copying torch/include/ATen/ops/_index_put_impl_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2555300Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2558220Z copying torch/include/ATen/ops/_scaled_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2563220Z copying torch/include/ATen/ops/_weight_norm_interface_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2564100Z copying torch/include/ATen/ops/trapz_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2567380Z copying torch/include/ATen/ops/block_diag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2572350Z copying torch/include/ATen/ops/logical_or_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2574800Z copying torch/include/ATen/ops/copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2575920Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2581950Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2583140Z copying torch/include/ATen/ops/cumsum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2589750Z copying torch/include/ATen/ops/special_entr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2590560Z copying torch/include/ATen/ops/fft_ifftshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2591790Z copying torch/include/ATen/ops/batch_norm_elemt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2599550Z copying torch/include/ATen/ops/_assert_async.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2600520Z copying torch/include/ATen/ops/q_zero_point_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2607750Z copying torch/include/ATen/ops/special_zeta_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2608600Z copying torch/include/ATen/ops/_values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2615960Z copying torch/include/ATen/ops/is_same_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2616980Z copying torch/include/ATen/ops/atan2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2618260Z copying torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2624010Z copying torch/include/ATen/ops/diagonal_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2624810Z copying torch/include/ATen/ops/atanh_sparsemps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2632510Z copying torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2633330Z copying torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2634590Z copying torch/include/ATen/ops/isnan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2642320Z copying torch/include/ATen/ops/scaled_dot_product_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2647950Z copying torch/include/ATen/ops/bitwise_left_shift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2649010Z copying torch/include/ATen/ops/l1_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2650330Z copying torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2656340Z copying torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2657230Z copying torch/include/ATen/ops/cholesky_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2664190Z copying torch/include/ATen/ops/nuclear_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2665020Z copying torch/include/ATen/ops/lift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2666540Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2672270Z copying torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2673150Z copying torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2675790Z copying torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2681890Z copying torch/include/ATen/ops/and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2684930Z copying torch/include/ATen/ops/select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2689930Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2690930Z copying torch/include/ATen/ops/true_divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2693700Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2698620Z copying torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2699760Z copying torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2703030Z copying torch/include/ATen/ops/nonzero_numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2708770Z copying torch/include/ATen/ops/special_sinc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2711730Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2716130Z copying torch/include/ATen/ops/_foreach_cos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2717270Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2720600Z copying torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2724660Z copying torch/include/ATen/ops/_pdist_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2727920Z copying torch/include/ATen/ops/cos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2728950Z copying torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2734640Z copying torch/include/ATen/ops/tan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2736840Z copying torch/include/ATen/ops/ones_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2742450Z copying torch/include/ATen/ops/_conj_physical_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2743620Z copying torch/include/ATen/ops/nll_loss2d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2746020Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2752750Z copying torch/include/ATen/ops/_to_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2753710Z copying torch/include/ATen/ops/cos_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2760690Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2761650Z copying torch/include/ATen/ops/mkldnn_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2762810Z copying torch/include/ATen/ops/_fused_rms_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2768630Z copying torch/include/ATen/ops/_linalg_eigh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2769430Z copying torch/include/ATen/ops/_print_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2776110Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2777430Z copying torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2783990Z copying torch/include/ATen/ops/cat_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2784970Z copying torch/include/ATen/ops/ne_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2786180Z copying torch/include/ATen/ops/expand_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2792180Z copying torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2792910Z copying torch/include/ATen/ops/complex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2799630Z copying torch/include/ATen/ops/linalg_ldl_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2800720Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-09-07T06:13:51.2807370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-09-07T06:13:51.2808020Z copying torch/include/ATen/functorch/BatchedFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-09-07T06:13:51.2809430Z copying torch/include/ATen/functorch/FunctionalizeInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-09-07T06:13:51.2815890Z copying torch/include/ATen/functorch/ADInterpreters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-09-07T06:13:51.2816980Z copying torch/include/ATen/functorch/Interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-09-07T06:13:51.2823990Z copying torch/include/ATen/functorch/TensorWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-09-07T06:13:51.2824840Z copying torch/include/ATen/functorch/BatchRulesHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-09-07T06:13:51.2831930Z copying torch/include/ATen/functorch/PlumbingHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-09-07T06:13:51.2832970Z copying torch/include/ATen/functorch/VmapInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-09-07T06:13:51.2834200Z copying torch/include/ATen/functorch/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-09-07T06:13:51.2839940Z copying torch/include/ATen/functorch/BatchingMetaprogramming.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-09-07T06:13:51.2841070Z copying torch/include/ATen/functorch/BatchedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-09-07T06:13:51.2844570Z copying torch/include/ATen/functorch/LegacyVmapTransforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-09-07T06:13:51.2848360Z copying torch/include/ATen/functorch/DynamicLayer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-09-07T06:13:51.2849490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-09-07T06:13:51.2850080Z copying torch/include/ATen/cudnn/Handles.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-09-07T06:13:51.2853400Z copying torch/include/ATen/cudnn/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-09-07T06:13:51.2857690Z copying torch/include/ATen/cudnn/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-09-07T06:13:51.2862270Z copying torch/include/ATen/cudnn/Descriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-09-07T06:13:51.2865960Z copying torch/include/ATen/cudnn/Handle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-09-07T06:13:51.2866840Z copying torch/include/ATen/cudnn/cudnn-wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-09-07T06:13:51.2871570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10 2025-09-07T06:13:51.2871800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2872490Z copying torch/include/c10/core/RefcountedDeleter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2873800Z copying torch/include/c10/core/QEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2879670Z copying torch/include/c10/core/TensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2880650Z copying torch/include/c10/core/SymFloat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2883560Z copying torch/include/c10/core/GradMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2889370Z copying torch/include/c10/core/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2890240Z copying torch/include/c10/core/CPUAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2897330Z copying torch/include/c10/core/DefaultDtype.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2899790Z copying torch/include/c10/core/DefaultTensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2905650Z copying torch/include/c10/core/alignment.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2906550Z copying torch/include/c10/core/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2907730Z copying torch/include/c10/core/Backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2912960Z copying torch/include/c10/core/AllocatorConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2914030Z copying torch/include/c10/core/CompileTimeFunctionPointer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2920960Z copying torch/include/c10/core/DeviceArray.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2922020Z copying torch/include/c10/core/PyHandleCache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2923280Z copying torch/include/c10/core/ConstantSymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2929310Z copying torch/include/c10/core/WrapDimMinimal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2930140Z copying torch/include/c10/core/QScheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2937900Z copying torch/include/c10/core/SafePyObject.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2938820Z copying torch/include/c10/core/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2946040Z copying torch/include/c10/core/UndefinedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2946950Z copying torch/include/c10/core/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2948250Z copying torch/include/c10/core/AutogradState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2953930Z copying torch/include/c10/core/SymIntArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2954770Z copying torch/include/c10/core/thread_pool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2961640Z copying torch/include/c10/core/CopyBytes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2962550Z copying torch/include/c10/core/SymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2963840Z copying torch/include/c10/core/StreamGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2969430Z copying torch/include/c10/core/DynamicCast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2970350Z copying torch/include/c10/core/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2977150Z copying torch/include/c10/core/GeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2978490Z copying torch/include/c10/core/DispatchKeySet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2984790Z copying torch/include/c10/core/Allocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2985700Z copying torch/include/c10/core/TensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2987820Z copying torch/include/c10/core/Contiguity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2992370Z copying torch/include/c10/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2994260Z copying torch/include/c10/core/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.2999900Z copying torch/include/c10/core/DeviceType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.3001290Z copying torch/include/c10/core/DeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.3003200Z copying torch/include/c10/core/StorageImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.3008870Z copying torch/include/c10/core/SymbolicShapeMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.3009800Z copying torch/include/c10/core/MemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.3012850Z copying torch/include/c10/core/SymBool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.3018650Z copying torch/include/c10/core/DispatchKey.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.3021070Z copying torch/include/c10/core/ScalarTypeToTypeMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.3027000Z copying torch/include/c10/core/InferenceMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.3027980Z copying torch/include/c10/core/SymInt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.3029380Z copying torch/include/c10/core/OptionalRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.3035280Z copying torch/include/c10/core/CachingDeviceAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-09-07T06:13:51.3036160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3036810Z copying torch/include/c10/core/impl/InlineStreamGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3043090Z copying torch/include/c10/core/impl/SizesAndStrides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3044540Z copying torch/include/c10/core/impl/InlineDeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3050760Z copying torch/include/c10/core/impl/GPUTrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3052330Z copying torch/include/c10/core/impl/COWDeleter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3053570Z copying torch/include/c10/core/impl/LocalDispatchKeySet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3058990Z copying torch/include/c10/core/impl/alloc_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3060190Z copying torch/include/c10/core/impl/PyInterpreterHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3068150Z copying torch/include/c10/core/impl/VirtualGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3076230Z copying torch/include/c10/core/impl/HermeticPyObjectTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3077230Z copying torch/include/c10/core/impl/PyObjectSlot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3078430Z copying torch/include/c10/core/impl/TorchDispatchModeTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3079640Z copying torch/include/c10/core/impl/PyInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3084570Z copying torch/include/c10/core/impl/PythonDispatcherTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3085870Z copying torch/include/c10/core/impl/COW.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3087160Z copying torch/include/c10/core/impl/InlineEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3092940Z copying torch/include/c10/core/impl/DeviceGuardImplInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3095620Z copying torch/include/c10/core/impl/FakeGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-09-07T06:13:51.3096720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test 2025-09-07T06:13:51.3097270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-09-07T06:13:51.3097960Z copying torch/include/c10/test/util/complex_test_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-09-07T06:13:51.3102290Z copying torch/include/c10/test/util/complex_math_test_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-09-07T06:13:51.3103600Z copying torch/include/c10/test/util/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-09-07T06:13:51.3109860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3110130Z copying torch/include/c10/util/Type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3111460Z copying torch/include/c10/util/order_preserving_flat_hash_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3112950Z copying torch/include/c10/util/Float8_e4m3fn-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3119090Z copying torch/include/c10/util/quint4x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3120050Z copying torch/include/c10/util/FbcodeMaps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3127080Z copying torch/include/c10/util/Semaphore.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3128390Z copying torch/include/c10/util/signal_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3135690Z copying torch/include/c10/util/error.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3136800Z copying torch/include/c10/util/safe_numerics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3138270Z copying torch/include/c10/util/Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3142750Z copying torch/include/c10/util/flat_hash_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3145110Z copying torch/include/c10/util/env.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3150340Z copying torch/include/c10/util/llvmMathExtras.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3151700Z copying torch/include/c10/util/Gauge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3152980Z copying torch/include/c10/util/WaitCounterDynamicBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3159050Z copying torch/include/c10/util/Float8_e8m0fnu-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3159970Z copying torch/include/c10/util/Synchronized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3167750Z copying torch/include/c10/util/Bitset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3169120Z copying torch/include/c10/util/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3175680Z copying torch/include/c10/util/Float8_e4m3fnuz-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3176710Z copying torch/include/c10/util/TypeSafeSignMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3177900Z copying torch/include/c10/util/intrusive_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3183680Z copying torch/include/c10/util/string_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3185170Z copying torch/include/c10/util/IntrusiveList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3191510Z copying torch/include/c10/util/win32-headers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3192530Z copying torch/include/c10/util/AlignOf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3193730Z copying torch/include/c10/util/static_tracepoint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3201210Z copying torch/include/c10/util/ssize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3206860Z copying torch/include/c10/util/Enumerate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3208090Z copying torch/include/c10/util/numa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3209340Z copying torch/include/c10/util/qint32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3216690Z copying torch/include/c10/util/Float4_e2m1fn_x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3217600Z copying torch/include/c10/util/CallOnce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3222730Z copying torch/include/c10/util/Float8_e5m2fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3224710Z copying torch/include/c10/util/MaybeOwned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3230880Z copying torch/include/c10/util/Half-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3231920Z copying torch/include/c10/util/TypeTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3233110Z copying torch/include/c10/util/DeadlockDetection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3239630Z copying torch/include/c10/util/FunctionRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3240540Z copying torch/include/c10/util/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3248180Z copying torch/include/c10/util/overflows.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3249130Z copying torch/include/c10/util/ExclusivelyOwned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3256450Z copying torch/include/c10/util/Load.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3257480Z copying torch/include/c10/util/BFloat16-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3258760Z copying torch/include/c10/util/static_tracepoint_elfx86.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3259950Z copying torch/include/c10/util/ConstexprCrc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3261120Z copying torch/include/c10/util/ThreadLocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3262330Z copying torch/include/c10/util/IdWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3263520Z copying torch/include/c10/util/Flags.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3264720Z copying torch/include/c10/util/overloaded.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3265910Z copying torch/include/c10/util/Float8_e4m3fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3267080Z copying torch/include/c10/util/quint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3268370Z copying torch/include/c10/util/Float8_e5m2-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3269540Z copying torch/include/c10/util/StringUtil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3270780Z copying torch/include/c10/util/Logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3272170Z copying torch/include/c10/util/MathConstants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3273400Z copying torch/include/c10/util/Registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3276850Z copying torch/include/c10/util/Optional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3281900Z copying torch/include/c10/util/Float8_e5m2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3285290Z copying torch/include/c10/util/tempfile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3289010Z copying torch/include/c10/util/copysign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3290070Z copying torch/include/c10/util/ArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3293930Z copying torch/include/c10/util/thread_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3297580Z copying torch/include/c10/util/strides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3302160Z copying torch/include/c10/util/Unicode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3303170Z copying torch/include/c10/util/Float8_e8m0fnu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3307100Z copying torch/include/c10/util/TypeCast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3311140Z copying torch/include/c10/util/sparse_bitset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3318490Z copying torch/include/c10/util/OptionalArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3319430Z copying torch/include/c10/util/BFloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3324230Z copying torch/include/c10/util/TypeList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3326990Z copying torch/include/c10/util/TypeIndex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3331430Z copying torch/include/c10/util/NetworkFlow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3332720Z copying torch/include/c10/util/Array.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3336820Z copying torch/include/c10/util/logging_is_google_glog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3341250Z copying torch/include/c10/util/Metaprogramming.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3346070Z copying torch/include/c10/util/WaitCounter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3348770Z copying torch/include/c10/util/quint2x4.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3349620Z copying torch/include/c10/util/floating_point_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3354980Z copying torch/include/c10/util/ParallelGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3355820Z copying torch/include/c10/util/BFloat16-math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3363130Z copying torch/include/c10/util/int128.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3363950Z copying torch/include/c10/util/Lazy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3371770Z copying torch/include/c10/util/Deprecated.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3372560Z copying torch/include/c10/util/irange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3379860Z copying torch/include/c10/util/SmallBuffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3380790Z copying torch/include/c10/util/ScopeExit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3382030Z copying torch/include/c10/util/Unroll.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3387760Z copying torch/include/c10/util/LeftRight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3388840Z copying torch/include/c10/util/bit_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3395940Z copying torch/include/c10/util/qint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3396950Z copying torch/include/c10/util/complex_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3398170Z copying torch/include/c10/util/logging_is_not_google_glog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3403640Z copying torch/include/c10/util/DynamicCounter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3404920Z copying torch/include/c10/util/Exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3411450Z copying torch/include/c10/util/UniqueVoidPtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3412420Z copying torch/include/c10/util/ThreadLocalDebugInfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3413960Z copying torch/include/c10/util/Float8_e4m3fn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3421370Z copying torch/include/c10/util/AbortHandler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3422370Z copying torch/include/c10/util/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3423610Z copying torch/include/c10/util/accumulate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3424800Z copying torch/include/c10/util/C++17.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3425980Z copying torch/include/c10/util/strong_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3427560Z copying torch/include/c10/util/ApproximateClock.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3428720Z copying torch/include/c10/util/SmallVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3430280Z copying torch/include/c10/util/Float8_e5m2fnuz-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3431530Z copying torch/include/c10/util/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3432720Z copying torch/include/c10/util/python_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3433890Z copying torch/include/c10/util/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3434990Z copying torch/include/c10/util/bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3436240Z copying torch/include/c10/util/string_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3437610Z copying torch/include/c10/util/complex_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3438860Z copying torch/include/c10/util/ExclusivelyOwnedTensorTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3440030Z copying torch/include/c10/util/generic_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-09-07T06:13:51.3441330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-09-07T06:13:51.3441920Z copying torch/include/c10/metal/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-09-07T06:13:51.3443180Z copying torch/include/c10/metal/igamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-09-07T06:13:51.3444670Z copying torch/include/c10/metal/special_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-09-07T06:13:51.3446290Z copying torch/include/c10/metal/reduction_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-09-07T06:13:51.3447600Z copying torch/include/c10/metal/expm1f.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-09-07T06:13:51.3451360Z copying torch/include/c10/metal/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-09-07T06:13:51.3455500Z copying torch/include/c10/metal/indexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-09-07T06:13:51.3456650Z copying torch/include/c10/metal/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-09-07T06:13:51.3460630Z copying torch/include/c10/metal/atomic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-09-07T06:13:51.3464400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-09-07T06:13:51.3464740Z copying torch/include/c10/cuda/CUDADeviceAssertion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-09-07T06:13:51.3468450Z copying torch/include/c10/cuda/driver_api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-09-07T06:13:51.3470590Z copying torch/include/c10/cuda/CUDAMathCompat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-09-07T06:13:51.3477880Z copying torch/include/c10/cuda/CUDAAlgorithm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-09-07T06:13:51.3478960Z copying torch/include/c10/cuda/CUDAStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-09-07T06:13:51.3485790Z copying torch/include/c10/cuda/CUDAGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-09-07T06:13:51.3487210Z copying torch/include/c10/cuda/CUDAMiscFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-09-07T06:13:51.3494170Z copying torch/include/c10/cuda/CUDAGraphsC10Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-09-07T06:13:51.3495030Z copying torch/include/c10/cuda/CUDAMacros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-09-07T06:13:51.3496260Z copying torch/include/c10/cuda/CUDAAllocatorConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-09-07T06:13:51.3502170Z copying torch/include/c10/cuda/CUDAFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-09-07T06:13:51.3503140Z copying torch/include/c10/cuda/CUDAException.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-09-07T06:13:51.3509740Z copying torch/include/c10/cuda/CUDACachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-09-07T06:13:51.3511090Z copying torch/include/c10/cuda/CUDADeviceAssertionHost.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-09-07T06:13:51.3518130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-09-07T06:13:51.3518440Z copying torch/include/c10/cuda/impl/CUDATest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-09-07T06:13:51.3519620Z copying torch/include/c10/cuda/impl/CUDAGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-09-07T06:13:51.3520840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-09-07T06:13:51.3521420Z copying torch/include/c10/xpu/XPUStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-09-07T06:13:51.3525490Z copying torch/include/c10/xpu/XPUDeviceProp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-09-07T06:13:51.3526750Z copying torch/include/c10/xpu/XPUCachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-09-07T06:13:51.3532700Z copying torch/include/c10/xpu/XPUMacros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-09-07T06:13:51.3535750Z copying torch/include/c10/xpu/XPUException.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-09-07T06:13:51.3542140Z copying torch/include/c10/xpu/XPUFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-09-07T06:13:51.3543140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/impl 2025-09-07T06:13:51.3543740Z copying torch/include/c10/xpu/impl/XPUGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/impl 2025-09-07T06:13:51.3550010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test 2025-09-07T06:13:51.3550250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test/impl 2025-09-07T06:13:51.3550860Z copying torch/include/c10/xpu/test/impl/XPUTest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test/impl 2025-09-07T06:13:51.3552040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-09-07T06:13:51.3552600Z copying torch/include/c10/macros/cmake_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-09-07T06:13:51.3558100Z copying torch/include/c10/macros/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-09-07T06:13:51.3559190Z copying torch/include/c10/macros/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-09-07T06:13:51.3560360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-09-07T06:13:51.3561030Z copying torch/include/c10/mobile/CPUCachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-09-07T06:13:51.3567610Z copying torch/include/c10/mobile/CPUProfilingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-09-07T06:13:51.3568490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-09-07T06:13:51.3569020Z copying torch/include/fp16/fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-09-07T06:13:51.3575790Z copying torch/include/fp16/psimd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-09-07T06:13:51.3576980Z copying torch/include/fp16/bitcasts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-09-07T06:13:51.3578440Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3585800Z copying torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3586460Z copying torch/include/torch/csrc/distributed/c10d/logger.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3587600Z copying torch/include/torch/csrc/distributed/c10d/Work.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3588840Z copying torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3590370Z copying torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3591480Z copying torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3592760Z copying torch/include/torch/csrc/distributed/c10d/Store.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3594000Z copying torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3595220Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3596510Z copying torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3597630Z copying torch/include/torch/csrc/distributed/c10d/RankLocal.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3598900Z copying torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3600100Z copying torch/include/torch/csrc/distributed/c10d/FileStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3601270Z copying torch/include/torch/csrc/distributed/c10d/reducer.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3602690Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3603900Z copying torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3605200Z copying torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3606340Z copying torch/include/torch/csrc/distributed/c10d/comm.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3607580Z copying torch/include/torch/csrc/distributed/c10d/Functional.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3608760Z copying torch/include/torch/csrc/distributed/c10d/Backoff.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3609950Z copying torch/include/torch/csrc/distributed/c10d/TCPStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3611180Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3612570Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3613730Z copying torch/include/torch/csrc/distributed/c10d/NanCheck.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3614950Z copying torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3616120Z copying torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3617370Z copying torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3618580Z copying torch/include/torch/csrc/distributed/c10d/HashStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3619810Z copying torch/include/torch/csrc/distributed/c10d/sequence_num.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3621020Z copying torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3622300Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3623800Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3625270Z copying torch/include/torch/csrc/distributed/c10d/Backend.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3626520Z copying torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3627880Z copying torch/include/torch/csrc/distributed/c10d/Utils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3629220Z copying torch/include/torch/csrc/distributed/c10d/Types.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3630510Z copying torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3631730Z copying torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:51.3633040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-09-07T06:13:51.3633780Z copying torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-09-07T06:13:51.3635140Z copying torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-09-07T06:13:51.3636150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda 2025-09-07T06:13:51.3636860Z copying torch/include/torch/csrc/distributed/c10d/cuda/CUDAEventCache.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda 2025-09-07T06:13:51.3638070Z copying torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda 2025-09-07T06:13:51.3639580Z copying torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda 2025-09-07T06:13:51.3640590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane 2025-09-07T06:13:51.3641320Z copying torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane 2025-09-07T06:13:51.3642590Z copying torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane 2025-09-07T06:13:51.3643900Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:51.3645180Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:51.3646450Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:51.3647640Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:51.3648940Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:51.3650200Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:51.3651440Z copying torch/include/torch/csrc/jit/testing/catch_utils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing 2025-09-07T06:13:51.3652640Z copying torch/include/ATen/native/cuda/Normalization.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3654460Z copying torch/include/ATen/native/cuda/SortingRadixSelect.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3655660Z copying torch/include/ATen/native/cuda/block_reduce.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3656890Z copying torch/include/ATen/native/cuda/TensorModeKernel.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3658170Z copying torch/include/ATen/native/cuda/MemoryAccess.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3659690Z copying torch/include/ATen/native/cuda/CUDAJitLoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3660760Z copying torch/include/ATen/native/cuda/im2col.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3662090Z copying torch/include/ATen/native/cuda/cutlass_common.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3663390Z copying torch/include/ATen/native/cuda/SortUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3664680Z copying torch/include/ATen/native/cuda/DeviceSqrt.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3666000Z copying torch/include/ATen/native/cuda/UpSample.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3667220Z copying torch/include/ATen/native/cuda/Randperm.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3668420Z copying torch/include/ATen/native/cuda/vol2col.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3669590Z copying torch/include/ATen/native/cuda/Pow.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3670910Z copying torch/include/ATen/native/cuda/reduction_template.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3672290Z copying torch/include/ATen/native/cuda/fused_adamw_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3673490Z copying torch/include/ATen/native/cuda/Math.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3675660Z copying torch/include/ATen/native/cuda/SortingCommon.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3676580Z copying torch/include/ATen/native/cuda/ScanUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3677970Z copying torch/include/ATen/native/cuda/MultiTensorApply.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3679290Z copying torch/include/ATen/native/cuda/fused_adagrad_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3680630Z copying torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3681990Z copying torch/include/ATen/native/cuda/fused_adagrad_utils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3683190Z copying torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3684690Z copying torch/include/ATen/native/cuda/fused_adam_utils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3685900Z copying torch/include/ATen/native/cuda/GroupMMCommon.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3687100Z copying torch/include/ATen/native/cuda/JitLoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3688290Z copying torch/include/ATen/native/cuda/KernelUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3689660Z copying torch/include/ATen/native/cuda/ForeachFunctors.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3691060Z copying torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3692220Z copying torch/include/ATen/native/cuda/Loops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3693470Z copying torch/include/ATen/native/cuda/UniqueCub.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3694660Z copying torch/include/ATen/native/cuda/CUDALoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3696230Z copying torch/include/ATen/native/cuda/GridSampler.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3697460Z copying torch/include/ATen/native/cuda/PersistentSoftmax.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3698750Z copying torch/include/ATen/native/cuda/Reduce.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3700350Z copying torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3701540Z copying torch/include/ATen/native/cuda/fused_adam_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-09-07T06:13:51.3702970Z copying torch/include/ATen/cuda/AsmUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:51.3712350Z copying torch/include/ATen/cuda/cub-RadixSortPairs.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:51.3712880Z copying torch/include/ATen/cuda/DeviceUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:51.3713160Z copying torch/include/ATen/cuda/cub_definitions.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:51.3713420Z copying torch/include/ATen/cuda/ApplyGridUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:51.3714950Z copying torch/include/ATen/cuda/PhiloxUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:51.3716310Z copying torch/include/ATen/cuda/ScanUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:51.3721000Z copying torch/include/ATen/cuda/NumericLimits.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:51.3724490Z copying torch/include/ATen/cuda/CUDATensorMethods.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:51.3729540Z copying torch/include/ATen/cuda/cub.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:51.3732060Z copying torch/include/ATen/cuda/CUDAGraphsUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:51.3734480Z copying torch/include/ATen/cuda/CUDAApplyUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:51.3740350Z copying torch/include/ATen/cuda/Atomic.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-09-07T06:13:51.3741680Z copying torch/include/ATen/cuda/detail/TensorInfo.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-09-07T06:13:51.3743110Z copying torch/include/ATen/cuda/detail/IntegerDivider.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-09-07T06:13:51.3744380Z copying torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-09-07T06:13:51.3745620Z copying torch/include/ATen/cuda/detail/OffsetCalculator.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-09-07T06:13:51.3746920Z copying torch/include/ATen/cuda/detail/IndexUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-09-07T06:13:51.3748210Z copying torch/include/ATen/cuda/detail/UnpackRaw.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-09-07T06:13:51.3749780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc 2025-09-07T06:13:51.3750340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor 2025-09-07T06:13:51.3750850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:51.3751520Z copying torch/csrc/inductor/aoti_runtime/model.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:51.3752790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_runtime 2025-09-07T06:13:51.3753480Z copying torch/_inductor/codegen/aoti_runtime/interface.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_runtime 2025-09-07T06:13:51.3825160Z copying torch/_inductor/script.ld -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-09-07T06:13:51.3833060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-09-07T06:13:51.3833420Z copying torch/_inductor/kernel/flex/templates/flex_backwards.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-09-07T06:13:51.3846290Z copying torch/_inductor/kernel/flex/templates/flex_decode.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-09-07T06:13:51.3853370Z copying torch/_inductor/kernel/flex/templates/utilities.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-09-07T06:13:51.3859730Z copying torch/_inductor/kernel/flex/templates/flex_attention.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-09-07T06:13:51.3860850Z copying torch/_inductor/kernel/flex/templates/common.py.jinja -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates 2025-09-07T06:13:51.3867620Z copying torch/_export/serde/schema.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-09-07T06:13:51.3875700Z copying torch/_export/serde/export_schema.thrift -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-09-07T06:13:51.3883800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share 2025-09-07T06:13:51.3884070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake 2025-09-07T06:13:51.3884650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/ATen 2025-09-07T06:13:51.3885310Z copying torch/share/cmake/ATen/ATenConfig.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/ATen 2025-09-07T06:13:51.3886740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-09-07T06:13:51.3887330Z copying torch/share/cmake/Caffe2/Caffe2Config.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-09-07T06:13:51.3888540Z copying torch/share/cmake/Caffe2/FindSYCLToolkit.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-09-07T06:13:51.3889880Z copying torch/share/cmake/Caffe2/FindCUSPARSELT.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-09-07T06:13:51.3891240Z copying torch/share/cmake/Caffe2/FindCUDAToolkit.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-09-07T06:13:51.3892640Z copying torch/share/cmake/Caffe2/Caffe2Targets.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-09-07T06:13:51.3893860Z copying torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-09-07T06:13:51.3895090Z copying torch/share/cmake/Caffe2/FindCUDSS.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-09-07T06:13:51.3896390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-09-07T06:13:51.3897030Z copying torch/share/cmake/Caffe2/public/LoadHIP.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-09-07T06:13:51.3898260Z copying torch/share/cmake/Caffe2/public/mkldnn.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-09-07T06:13:51.3899610Z copying torch/share/cmake/Caffe2/public/glog.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-09-07T06:13:51.3901040Z copying torch/share/cmake/Caffe2/public/utils.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-09-07T06:13:51.3902660Z copying torch/share/cmake/Caffe2/public/protobuf.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-09-07T06:13:51.3904060Z copying torch/share/cmake/Caffe2/public/mkl.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-09-07T06:13:51.3905520Z copying torch/share/cmake/Caffe2/public/gflags.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-09-07T06:13:51.3907570Z copying torch/share/cmake/Caffe2/public/cuda.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-09-07T06:13:51.3908780Z copying torch/share/cmake/Caffe2/public/xpu.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-09-07T06:13:51.3909910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-09-07T06:13:51.3910630Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-09-07T06:13:51.3912000Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-09-07T06:13:51.3913340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-09-07T06:13:51.3914120Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-09-07T06:13:51.3915410Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-09-07T06:13:51.3917790Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-09-07T06:13:51.3918580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-09-07T06:13:51.3919320Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-09-07T06:13:51.3920550Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-09-07T06:13:51.3922040Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-09-07T06:13:51.3923320Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-09-07T06:13:51.3924410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-09-07T06:13:51.3925010Z copying torch/share/cmake/Torch/TorchConfig.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-09-07T06:13:51.3926380Z copying torch/share/cmake/Torch/TorchConfigVersion.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-09-07T06:13:51.3927860Z copying torch/utils/benchmark/utils/timeit_template.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-09-07T06:13:51.3936290Z copying torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-09-07T06:13:51.3944660Z copying torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-09-07T06:13:51.3952690Z copying torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-09-07T06:13:51.3956110Z copying torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-09-07T06:13:51.3957040Z copying torch/utils/model_dump/skeleton.html -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-09-07T06:13:51.3965310Z copying torch/utils/model_dump/code.js -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-09-07T06:13:51.3978720Z copying torch/utils/model_dump/preact.mjs -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-09-07T06:13:51.3986750Z copying torch/utils/model_dump/htm.mjs -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-09-07T06:13:51.3994880Z copying torch/_dynamo/graph_break_registry.json -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-09-07T06:13:51.4026720Z copying torch/lib/libtorch_python.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-09-07T06:13:51.4723560Z copying torch/lib/libtorch.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-09-07T06:13:51.4736730Z copying torch/lib/libtorch_global_deps.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-09-07T06:13:51.4748820Z copying torch/lib/libtorch_cpu.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-09-07T06:13:52.8310160Z copying torch/lib/libc10.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-09-07T06:13:52.8479990Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged 2025-09-07T06:13:52.8480370Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8481160Z copying torchgen/packaged/autograd/load_derivatives.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8482890Z copying torchgen/packaged/autograd/build.bzl -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8484460Z copying torchgen/packaged/autograd/gen_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8485670Z copying torchgen/packaged/autograd/gen_python_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8487300Z copying torchgen/packaged/autograd/gen_autograd_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8488820Z copying torchgen/packaged/autograd/gen_variable_factories.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8490200Z copying torchgen/packaged/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8491140Z copying torchgen/packaged/autograd/gen_variable_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8493000Z copying torchgen/packaged/autograd/README.md -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8494200Z copying torchgen/packaged/autograd/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8495650Z copying torchgen/packaged/autograd/gen_inplace_or_view_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8496990Z copying torchgen/packaged/autograd/deprecated.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8498240Z copying torchgen/packaged/autograd/BUILD.bazel -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8499610Z copying torchgen/packaged/autograd/gen_trace_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8501100Z copying torchgen/packaged/autograd/gen_annotated_fn_args.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8502400Z copying torchgen/packaged/autograd/derivatives.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8505190Z copying torchgen/packaged/autograd/gen_view_funcs.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-09-07T06:13:52.8506230Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8507180Z copying torchgen/packaged/autograd/templates/python_return_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8508620Z copying torchgen/packaged/autograd/templates/python_enum_tag.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8509920Z copying torchgen/packaged/autograd/templates/python_nn_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8511190Z copying torchgen/packaged/autograd/templates/python_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8512710Z copying torchgen/packaged/autograd/templates/python_fft_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8514680Z copying torchgen/packaged/autograd/templates/python_sparse_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8516140Z copying torchgen/packaged/autograd/templates/python_linalg_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8517410Z copying torchgen/packaged/autograd/templates/ViewFuncs.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8518750Z copying torchgen/packaged/autograd/templates/python_return_types.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8520160Z copying torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8521400Z copying torchgen/packaged/autograd/templates/TraceType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8522750Z copying torchgen/packaged/autograd/templates/python_variable_methods.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8524550Z copying torchgen/packaged/autograd/templates/ViewFuncs.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8525850Z copying torchgen/packaged/autograd/templates/python_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8527090Z copying torchgen/packaged/autograd/templates/python_nested_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8528640Z copying torchgen/packaged/autograd/templates/VariableType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8529920Z copying torchgen/packaged/autograd/templates/annotated_fn_args.py.in -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8531380Z copying torchgen/packaged/autograd/templates/VariableType.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8532620Z copying torchgen/packaged/autograd/templates/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8534020Z copying torchgen/packaged/autograd/templates/python_special_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8535470Z copying torchgen/packaged/autograd/templates/variable_factories.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8536710Z copying torchgen/packaged/autograd/templates/python_torch_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8538030Z copying torchgen/packaged/autograd/templates/Functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-09-07T06:13:52.8539360Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen 2025-09-07T06:13:52.8539920Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-09-07T06:13:52.8540560Z copying torchgen/packaged/ATen/native/native_functions.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-09-07T06:13:52.8545220Z copying torchgen/packaged/ATen/native/tags.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-09-07T06:13:52.8546140Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8546860Z copying torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8548640Z copying torchgen/packaged/ATen/templates/TensorBody.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8549640Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8550870Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8552080Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8553270Z copying torchgen/packaged/ATen/templates/Operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8554570Z copying torchgen/packaged/ATen/templates/NativeMetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8555730Z copying torchgen/packaged/ATen/templates/NativeFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8557050Z copying torchgen/packaged/ATen/templates/Operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8558350Z copying torchgen/packaged/ATen/templates/RegistrationDeclarations.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8559560Z copying torchgen/packaged/ATen/templates/UfuncCPU.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8560800Z copying torchgen/packaged/ATen/templates/UfuncCUDA.cu -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8562060Z copying torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8563350Z copying torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8564570Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8565780Z copying torchgen/packaged/ATen/templates/aten_interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8567080Z copying torchgen/packaged/ATen/templates/MethodOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8568400Z copying torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8569640Z copying torchgen/packaged/ATen/templates/Operators.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8570840Z copying torchgen/packaged/ATen/templates/ATenOpList.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8572280Z copying torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8573670Z copying torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8574900Z copying torchgen/packaged/ATen/templates/TensorMethods.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8576080Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8577340Z copying torchgen/packaged/ATen/templates/DispatchKeyFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8578600Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8579870Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8581050Z copying torchgen/packaged/ATen/templates/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8582330Z copying torchgen/packaged/ATen/templates/NativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8583580Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8584800Z copying torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8586000Z copying torchgen/packaged/ATen/templates/enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8587270Z copying torchgen/packaged/ATen/templates/Functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8588600Z copying torchgen/packaged/ATen/templates/RegisterSchema.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8589750Z copying torchgen/packaged/ATen/templates/LazyNonNativeIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8590970Z copying torchgen/packaged/ATen/templates/Function.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8592260Z copying torchgen/packaged/ATen/templates/FunctionalInverses.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8593730Z copying torchgen/packaged/ATen/templates/NativeMetaFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8594600Z copying torchgen/packaged/ATen/templates/LazyIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-09-07T06:13:52.8595770Z copying torch/nn/parameter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-09-07T06:13:52.8598140Z copying torch/nn/functional.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-09-07T06:13:52.8599990Z copying torch/utils/_config_typing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-09-07T06:13:52.8601590Z copying torch/jit/_script.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-09-07T06:13:52.8603960Z copying torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-09-07T06:13:52.8605320Z copying torch/optim/_multi_tensor/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-09-07T06:13:52.8607230Z copying torch/utils/data/datapipes/datapipe.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-09-07T06:13:52.8959300Z running build_ext 2025-09-07T06:13:52.8977650Z -- Building with NumPy bindings 2025-09-07T06:13:52.8977880Z -- Not using cuDNN 2025-09-07T06:13:52.8978020Z -- Not using CUDA 2025-09-07T06:13:52.8978150Z -- Not using XPU 2025-09-07T06:13:52.8978340Z -- Not using MKLDNN 2025-09-07T06:13:52.8978470Z -- Not using NCCL 2025-09-07T06:13:52.8978620Z -- Building with distributed package: 2025-09-07T06:13:52.8978810Z -- USE_TENSORPIPE=False 2025-09-07T06:13:52.8978960Z -- USE_GLOO=False 2025-09-07T06:13:52.8979090Z -- USE_MPI=False 2025-09-07T06:13:52.8979220Z -- Not using ITT 2025-09-07T06:13:52.9851520Z Copying functorch._C from functorch/functorch.so to /Users/ec2-user/runner/_work/pytorch/pytorch/build/lib.macosx-14.0-arm64-cpython-312/functorch/_C.cpython-312-darwin.so 2025-09-07T06:13:52.9852480Z copying functorch/functorch.so -> /Users/ec2-user/runner/_work/pytorch/pytorch/build/lib.macosx-14.0-arm64-cpython-312/functorch/_C.cpython-312-darwin.so 2025-09-07T06:13:52.9892540Z building 'torch._C' extension 2025-09-07T06:13:52.9892960Z creating build/temp.macosx-14.0-arm64-cpython-312 2025-09-07T06:13:52.9893620Z creating build/temp.macosx-14.0-arm64-cpython-312/torch 2025-09-07T06:13:52.9894120Z creating build/temp.macosx-14.0-arm64-cpython-312/torch/csrc 2025-09-07T06:13:52.9896390Z clang -fno-strict-overflow -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -I/Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/include -I/opt/homebrew/opt/python@3.12/Frameworks/Python.framework/Versions/3.12/include/python3.12 -c torch/csrc/stub.c -o build/temp.macosx-14.0-arm64-cpython-312/torch/csrc/stub.o -Wall -Wextra -Wno-strict-overflow -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing 2025-09-07T06:13:53.0827520Z clang -bundle -undefined dynamic_lookup -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk build/temp.macosx-14.0-arm64-cpython-312/torch/csrc/stub.o -L/Users/ec2-user/runner/_work/pytorch/pytorch/torch/lib -ltorch_python -o build/lib.macosx-14.0-arm64-cpython-312/torch/_C.cpython-312-darwin.so -Wl,-rpath,@loader_path/lib 2025-09-07T06:13:53.1987770Z copying /opt/homebrew/opt/libomp/lib/libomp.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-09-07T06:13:54.0176660Z copying /opt/homebrew/opt/libomp/include/omp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-09-07T06:13:54.0212990Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404/lib/python3.12/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-09-07T06:13:54.0213540Z !! 2025-09-07T06:13:54.0213610Z 2025-09-07T06:13:54.0213700Z ******************************************************************************** 2025-09-07T06:13:54.0213930Z Please avoid running ``setup.py`` directly. 2025-09-07T06:13:54.0214170Z Instead, use pypa/build, pypa/installer or other 2025-09-07T06:13:54.0214380Z standards-based tools. 2025-09-07T06:13:54.0214490Z 2025-09-07T06:13:54.0214740Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-09-07T06:13:54.0215060Z ******************************************************************************** 2025-09-07T06:13:54.0215200Z 2025-09-07T06:13:54.0215240Z !! 2025-09-07T06:13:54.0215350Z self.initialize_options() 2025-09-07T06:13:54.0237310Z installing to build/bdist.macosx-14.0-arm64/wheel 2025-09-07T06:13:54.0237540Z running install 2025-09-07T06:13:54.0276910Z running install_lib 2025-09-07T06:13:54.0303590Z creating build/bdist.macosx-14.0-arm64 2025-09-07T06:13:54.0304040Z creating build/bdist.macosx-14.0-arm64/wheel 2025-09-07T06:13:54.0305540Z creating build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:54.0306580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0307350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/flat_apply.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0308850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/foreach_map.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0310220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/effects.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0311370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/_invoke_quant.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0312570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/invoke_subgraph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0313960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/aoti_call_delegate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0315050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/while_loop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0316420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/base_hop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0317530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0318680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/strict_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0319860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/torchbind.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0320870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/cond.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0322050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/map.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0323210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/hints_wrap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0324320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0325810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/out_dtype.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0326870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/executorch_call_delegate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0327890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/scan.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0329300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/run_const_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0330500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/associative_scan.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0332010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/auto_functionalize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0333080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/triton_kernel_wrap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0334690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/flex_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0335950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/wrap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0337150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/schema.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-09-07T06:13:54.0338520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-09-07T06:13:54.0339130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/debug_prims.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-09-07T06:13:54.0340300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-09-07T06:13:54.0341790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-09-07T06:13:54.0342880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/rng_prims.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-09-07T06:13:54.0344030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/executor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-09-07T06:13:54.0345100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_storage_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:54.0346550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc 2025-09-07T06:13:54.0347270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc/inductor 2025-09-07T06:13:54.0348070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.0348770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor/aoti_runtime/model.h -> build/bdist.macosx-14.0-arm64/wheel/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.0350160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-09-07T06:13:54.0350900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/_internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-09-07T06:13:54.0352800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/scribe.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-09-07T06:13:54.0354140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-09-07T06:13:54.0355510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/_registrations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-09-07T06:13:54.0356900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/structured.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-09-07T06:13:54.0358700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0359470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/partitioners.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0361960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/compile_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0362950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0364390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/autograd_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0366110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-09-07T06:13:54.0366940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing/graph_info_provider.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-09-07T06:13:54.0368180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing/knapsack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-09-07T06:13:54.0369560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-09-07T06:13:54.0371120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing/ac_logging_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-09-07T06:13:54.0372160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing/knapsack_evaluator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-09-07T06:13:54.0373160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/python_key.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0374270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/pytree_hacks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0375560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/pyfunctorch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0376730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/deprecated.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0378010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/top_operators_github_usage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0379240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0385540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/batch_norm_replacement.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0386220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/fx_minifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0386880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/predispatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0387370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0387980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/input_output_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0388810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/runtime_wrappers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0390030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0391150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/functional_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0392410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/autograd_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0393940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/descriptors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0395400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/graph_capture_wrappers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0396920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/schemas.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0398570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0399900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/fx_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0401130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/collect_metadata_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0402630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/frontend_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0403770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/graph_capture.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0405060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/graph_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0406690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/subclass_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0407990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/logging_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0409240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/subclass_parametrization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-09-07T06:13:54.0410280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/apis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0411630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0412870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/aot_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0414450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/compilers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0415660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/eager_transforms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0417290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/vmap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0418560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/benchmark_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0419800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/make_functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0421090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/functional_call.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-09-07T06:13:54.0422740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0423520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_reductions_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0424710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_getlimits.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0425950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_unary_ufuncs_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0427130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_casting_dicts.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0428470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0429600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_binary_ufuncs_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0430780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0432990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_numpy/testing 2025-09-07T06:13:54.0433500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy/testing 2025-09-07T06:13:54.0434300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy/testing 2025-09-07T06:13:54.0435600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_dtypes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0436740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/linalg.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0437890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_ndarray.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0439130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_ufuncs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0440220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0441380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_normalizations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0442470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_dtypes_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0443740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/fft.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0444810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_funcs_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0446330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_funcs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-09-07T06:13:54.0449230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-09-07T06:13:54.0449850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/error.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-09-07T06:13:54.0451300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/tools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-09-07T06:13:54.0452860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/pass_infra 2025-09-07T06:13:54.0453540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/pass_infra 2025-09-07T06:13:54.0454540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra/proxy_value.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/pass_infra 2025-09-07T06:13:54.0455680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra/node_metadata.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/pass_infra 2025-09-07T06:13:54.0457180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-09-07T06:13:54.0457920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/insert_custom_op_guards.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-09-07T06:13:54.0459140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-09-07T06:13:54.0460560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-09-07T06:13:54.0461630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/collect_tracepoints_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-09-07T06:13:54.0462810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/replace_with_hop_pass_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-09-07T06:13:54.0464020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-09-07T06:13:54.0465210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/_node_metadata_hook.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-09-07T06:13:54.0466370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/lift_constants_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-09-07T06:13:54.0467640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/constant_folding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-09-07T06:13:54.0468940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/add_runtime_assertions_for_constraints_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-09-07T06:13:54.0470100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/replace_autocast_with_hop_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-09-07T06:13:54.0471380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/functionalize_side_effectful_ops_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-09-07T06:13:54.0472370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/replace_set_grad_with_hop_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-09-07T06:13:54.0473460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/remove_runtime_assertions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-09-07T06:13:54.0474700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/converter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-09-07T06:13:54.0476090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-09-07T06:13:54.0477330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-09-07T06:13:54.0478630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-09-07T06:13:54.0480060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/wrappers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-09-07T06:13:54.0481370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-09-07T06:13:54.0482050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-09-07T06:13:54.0483170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-09-07T06:13:54.0484360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/gen_example.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-09-07T06:13:54.0485960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0486670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/list_unpack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0487840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/specialized_attribute.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0488900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/static_for_loop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0490100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_closed_over_variable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0491210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/fn_with_kwargs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0492310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/constrain_as_value_example.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0493480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_slicing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0494490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_branch_nonlocal_variables.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0495540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/autograd_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0496710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/type_reflection_method.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0497780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_operands.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0498940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/decorator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0500090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_view.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0501260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_map.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0502370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/nested_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0503510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_constructor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0504530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0505650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_if_guard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0506890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/assume_constant_result.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0508070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_branch_class_method.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0509090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/class_method.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0510210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/pytree_flatten.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0511410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/scalar_output.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0512530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_predicate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0513600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_assert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0514750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/unsupported_operator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0515800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/tensor_setattr.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0516920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/optional_input.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0518230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/constrain_as_size_example.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0519290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/static_if.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0520470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dictionary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0521600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/list_contains.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0522800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_round.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0523970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/user_input_mutation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0524980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/null_context_manager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0526100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_branch_nested_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0527200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/model_attr_mutation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-09-07T06:13:54.0528250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/case.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-09-07T06:13:54.0529290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/non_strict_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-09-07T06:13:54.0530940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-09-07T06:13:54.0531650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/serialize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-09-07T06:13:54.0533550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-09-07T06:13:54.0534580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/schema_check.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-09-07T06:13:54.0535770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/schema.yaml -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-09-07T06:13:54.0536900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/dynamic_shapes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-09-07T06:13:54.0538050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/export_schema.thrift -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-09-07T06:13:54.0539120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/union.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-09-07T06:13:54.0540160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/schema.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-09-07T06:13:54.0541230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/verifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-09-07T06:13:54.0542660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/monitor 2025-09-07T06:13:54.0543350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/monitor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/monitor 2025-09-07T06:13:54.0544650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-09-07T06:13:54.0545300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-09-07T06:13:54.0546190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch/python.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-09-07T06:13:54.0547450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-09-07T06:13:54.0548140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/functional_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-09-07T06:13:54.0549520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/meta_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-09-07T06:13:54.0551110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-09-07T06:13:54.0552210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/_fake_tensor_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-09-07T06:13:54.0553320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_impls.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-09-07T06:13:54.0554560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-09-07T06:13:54.0556390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/schema_check_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-09-07T06:13:54.0557410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-09-07T06:13:54.0558510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_meta_registrations.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:54.0561070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/version.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:54.0563290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/futures 2025-09-07T06:13:54.0563890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/futures/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/futures 2025-09-07T06:13:54.0565270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/library.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:54.0567100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/linalg 2025-09-07T06:13:54.0567800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/linalg/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/linalg 2025-09-07T06:13:54.0569620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_jit_internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:54.0571380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_custom_op 2025-09-07T06:13:54.0572040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_custom_op 2025-09-07T06:13:54.0572970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op/autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_custom_op 2025-09-07T06:13:54.0574060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op/impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_custom_op 2025-09-07T06:13:54.0575590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-09-07T06:13:54.0576520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-09-07T06:13:54.0577250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/bias.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-09-07T06:13:54.0578640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention/experimental 2025-09-07T06:13:54.0579360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention/experimental 2025-09-07T06:13:54.0580560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental/_paged_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention/experimental 2025-09-07T06:13:54.0581610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-09-07T06:13:54.0582680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/flex_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-09-07T06:13:54.0584210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-09-07T06:13:54.0585650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-09-07T06:13:54.0586320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/parallel_apply.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-09-07T06:13:54.0587510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/comm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-09-07T06:13:54.0588600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/scatter_gather.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-09-07T06:13:54.0589740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/replicate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-09-07T06:13:54.0590840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-09-07T06:13:54.0592040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/data_parallel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-09-07T06:13:54.0593080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-09-07T06:13:54.0594260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-09-07T06:13:54.0596050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat 2025-09-07T06:13:54.0596920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic 2025-09-07T06:13:54.0597610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic 2025-09-07T06:13:54.0599070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic/modules 2025-09-07T06:13:54.0599710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic/modules 2025-09-07T06:13:54.0600890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic/modules 2025-09-07T06:13:54.0601980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat 2025-09-07T06:13:54.0603660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-09-07T06:13:54.0604470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-09-07T06:13:54.0605570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-09-07T06:13:54.0606690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-09-07T06:13:54.0607860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules/embedding_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-09-07T06:13:54.0608890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/common_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-09-07T06:13:54.0610420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized 2025-09-07T06:13:54.0611080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference 2025-09-07T06:13:54.0611890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference 2025-09-07T06:13:54.0613200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-09-07T06:13:54.0614270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-09-07T06:13:54.0615180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-09-07T06:13:54.0616220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-09-07T06:13:54.0617410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-09-07T06:13:54.0618290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-09-07T06:13:54.0619410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-09-07T06:13:54.0620640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic 2025-09-07T06:13:54.0621310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic 2025-09-07T06:13:54.0622650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-09-07T06:13:54.0623390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-09-07T06:13:54.0624640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-09-07T06:13:54.0625770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-09-07T06:13:54.0626900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-09-07T06:13:54.0627870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized 2025-09-07T06:13:54.0629150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized 2025-09-07T06:13:54.0630570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-09-07T06:13:54.0631150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/batchnorm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-09-07T06:13:54.0632200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/functional_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-09-07T06:13:54.0633300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-09-07T06:13:54.0634360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-09-07T06:13:54.0635520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-09-07T06:13:54.0636980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-09-07T06:13:54.0638200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/dropout.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-09-07T06:13:54.0639250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-09-07T06:13:54.0640340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/normalization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-09-07T06:13:54.0641440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-09-07T06:13:54.0642580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/embedding_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-09-07T06:13:54.0643890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/backends 2025-09-07T06:13:54.0644550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends/thnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/backends 2025-09-07T06:13:54.0645650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/backends 2025-09-07T06:13:54.0646530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parameter.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-09-07T06:13:54.0647590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-09-07T06:13:54.0648740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/_reduction.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-09-07T06:13:54.0650080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0650710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_named_member_accessor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0651820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/spectral_norm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0652940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/convert_parameters.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0654070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/stateless.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0655120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/parametrize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0656400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/memory_format.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0657580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_per_sample_grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0658630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0659740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/weight_norm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0660830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/fusion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0661870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/prune.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0663370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/parametrizations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0664480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/init.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0665660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_deprecation_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0666760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0668250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-09-07T06:13:54.0669030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-09-07T06:13:54.0670220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-09-07T06:13:54.0671350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/conv_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-09-07T06:13:54.0672430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/expanded_weights_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-09-07T06:13:54.0673490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-09-07T06:13:54.0674630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/embedding_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-09-07T06:13:54.0676220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/conv_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-09-07T06:13:54.0677410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-09-07T06:13:54.0678540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/linear_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-09-07T06:13:54.0679700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/expanded_weights_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-09-07T06:13:54.0680930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/clip_grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-09-07T06:13:54.0682450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable 2025-09-07T06:13:54.0683080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable 2025-09-07T06:13:54.0684430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable/modules 2025-09-07T06:13:54.0685100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable/modules 2025-09-07T06:13:54.0686390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules/activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable/modules 2025-09-07T06:13:54.0687450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable/modules 2025-09-07T06:13:54.0688490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/cpp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-09-07T06:13:54.0689820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic 2025-09-07T06:13:54.0690730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat 2025-09-07T06:13:54.0691430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat 2025-09-07T06:13:54.0692830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-09-07T06:13:54.0693540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules/conv_fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-09-07T06:13:54.0694600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-09-07T06:13:54.0695690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-09-07T06:13:54.0701330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules/linear_fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-09-07T06:13:54.0701960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized 2025-09-07T06:13:54.0702340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic 2025-09-07T06:13:54.0702980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic 2025-09-07T06:13:54.0703630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2025-09-07T06:13:54.0704330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2025-09-07T06:13:54.0705320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2025-09-07T06:13:54.0706220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized 2025-09-07T06:13:54.0706800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-09-07T06:13:54.0707440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules/bn_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-09-07T06:13:54.0708320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-09-07T06:13:54.0709230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules/conv_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-09-07T06:13:54.0710140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-09-07T06:13:54.0710920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic 2025-09-07T06:13:54.0711470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/modules 2025-09-07T06:13:54.0712050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules/fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/modules 2025-09-07T06:13:54.0713160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/modules 2025-09-07T06:13:54.0714160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-09-07T06:13:54.0716900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/init.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-09-07T06:13:54.0717760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/functional.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-09-07T06:13:54.0719090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-09-07T06:13:54.0721040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0721580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/upsampling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0722550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/channelshuffle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0723570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/instancenorm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0724740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/flatten.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0725930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/batchnorm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0727380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0728500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0729660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/pooling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0731200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0732420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/distance.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0733650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/container.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0735100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/pixelshuffle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0736290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/adaptive.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0737490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/loss.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0739150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0740540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0741600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/transformer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0743040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0744220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0746390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/dropout.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0747030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0748580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/lazy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0749570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/normalization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0750650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0752100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/padding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0753360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/fold.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-09-07T06:13:54.0754330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parameter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-09-07T06:13:54.0755550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_thread_safe_fork.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:54.0756660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-09-07T06:13:54.0757290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/event.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-09-07T06:13:54.0758320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-09-07T06:13:54.0759370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-09-07T06:13:54.0760410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:54.0761810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0762450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0763740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-09-07T06:13:54.0764730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0765470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/registration.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0766620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/_type_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0767710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0768910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset7.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0770050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0771440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/verification.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0772660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0774040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0775170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0776300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/_globals.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0777350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_helper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0778950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0781460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0782370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0783340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset19.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0784260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0785660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/_experimental.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0786880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0788030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0789320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/onnx_proto_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0790380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0791520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0792690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0793770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/torchscript_exporter/jit_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/torchscript_exporter 2025-09-07T06:13:54.0795010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-09-07T06:13:54.0795840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx/passes 2025-09-07T06:13:54.0796550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx/passes 2025-09-07T06:13:54.0797680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes/type_promotion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx/passes 2025-09-07T06:13:54.0799060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/type_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-09-07T06:13:54.0800120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-09-07T06:13:54.0800960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-09-07T06:13:54.0802090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-09-07T06:13:54.0802990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/_lazy_import.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-09-07T06:13:54.0804380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0805040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0806170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0807280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_flags.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0808390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_errors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0809650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_capture_strategies.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0810590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_tensors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0811610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_dispatching.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0812670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_isolated.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0813760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_decomp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0814820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0815710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_onnx_program.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0817140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-09-07T06:13:54.0817880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-09-07T06:13:54.0818980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-09-07T06:13:54.0820010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-09-07T06:13:54.0820820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/nn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-09-07T06:13:54.0822010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-09-07T06:13:54.0823320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-09-07T06:13:54.0824230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/symops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-09-07T06:13:54.0825370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-09-07T06:13:54.0826440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/hop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-09-07T06:13:54.0827500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-09-07T06:13:54.0828750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_building.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0829880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_dynamic_shapes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0831020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_schemas.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0832150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0833790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_verification.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0834990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_reporting.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0836220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_registration.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0837520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_testing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0838330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_compat.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0839380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_ir_passes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0840600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_type_casting.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0841630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_fx_passes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-09-07T06:13:54.0842570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset15.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0843650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset7.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0844840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset11.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0846110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/verification.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0846850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_flags.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0847960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset10.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0848990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset20.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0850100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset14.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0851180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_helper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0852240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset9.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0853230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0854440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset8.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0855600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset19.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0856540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0857580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset18.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0858900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-09-07T06:13:54.0859570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops/_dtype_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-09-07T06:13:54.0860660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops/_symbolic_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-09-07T06:13:54.0861690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops/_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-09-07T06:13:54.0862750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-09-07T06:13:54.0863980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/errors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0865140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset13.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0866170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/operators.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0867260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset17.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0868350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset16.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0869420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset12.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-09-07T06:13:54.0870840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-09-07T06:13:54.0871450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/bin/protoc-3.13.0.0 -> build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-09-07T06:13:54.0930700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/bin/torch_shm_manager -> build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-09-07T06:13:54.0931950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/bin/protoc -> build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-09-07T06:13:54.0988100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/return_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:54.0989500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_vendor 2025-09-07T06:13:54.0990480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_vendor/packaging 2025-09-07T06:13:54.0991220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging/version.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_vendor/packaging 2025-09-07T06:13:54.0992400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_vendor/packaging 2025-09-07T06:13:54.0993730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging/_structures.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_vendor/packaging 2025-09-07T06:13:54.0994740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_vendor 2025-09-07T06:13:54.0995870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cpu 2025-09-07T06:13:54.0996650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cpu 2025-09-07T06:13:54.0997950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cpu/amp 2025-09-07T06:13:54.0998590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp/autocast_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cpu/amp 2025-09-07T06:13:54.0999870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp/grad_scaler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cpu/amp 2025-09-07T06:13:54.1001040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cpu/amp 2025-09-07T06:13:54.1002550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1003360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tensor 2025-09-07T06:13:54.1004070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tensor 2025-09-07T06:13:54.1005470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tensor 2025-09-07T06:13:54.1006720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor/placement_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tensor 2025-09-07T06:13:54.1008000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharding_spec 2025-09-07T06:13:54.1008730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharding_spec/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharding_spec 2025-09-07T06:13:54.1009810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_distributed_c10d.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1010930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1012060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/logging_handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1013270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rendezvous.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1014320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/run.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1015780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_state_dict_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1017290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/launcher 2025-09-07T06:13:54.1018060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/launcher 2025-09-07T06:13:54.1019240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/launcher 2025-09-07T06:13:54.1020730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1021490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_async_process_executor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1022610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/logging_handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1023740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/format_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1024810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/planner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1025980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_consolidate_hf_safetensors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1027160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_dedup_save_plans.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1028270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/state_dict.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1030210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/metadata.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1031030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_storage_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1031990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_version.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1033310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:54.1034090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:54.1035300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/barriers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:54.1036430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/checkpointer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:54.1037500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:54.1038730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:54.1039710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/builder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:54.1040800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/checkpoint_reader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:54.1041840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:54.1042960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/checkpoint_process.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:54.1044100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/checkpoint_writer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:54.1045230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/staging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-09-07T06:13:54.1046260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_traverse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1047350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_sharded_tensor_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1048520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_dedup_tensors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1049650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/filesystem.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1050930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/state_dict_saver.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1052180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/quantized_hf_storage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1053260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1054320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_hf_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1055460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/logger.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1056550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_pg_transport.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1057780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/resharding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1058970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1060400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/state_dict_loader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1061350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_async_executor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1062520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1063690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/default_planner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1064880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/storage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1066000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_state_dict_stager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1067100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/planner_helpers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1068550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1069450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_async_thread_executor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1070570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/staging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1071780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_checkpointer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1072930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/stateful.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1074140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_fsspec_filesystem.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1075100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_extension.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1076230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_nested_dict.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1077250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/hf_storage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-09-07T06:13:54.1078360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1079770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharded_tensor 2025-09-07T06:13:54.1080520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharded_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharded_tensor 2025-09-07T06:13:54.1081860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn 2025-09-07T06:13:54.1082450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn 2025-09-07T06:13:54.1083600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn 2025-09-07T06:13:54.1084850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit 2025-09-07T06:13:54.1085770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/instantiator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit 2025-09-07T06:13:54.1087240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit 2025-09-07T06:13:54.1088440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit/templates 2025-09-07T06:13:54.1089200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit/templates 2025-09-07T06:13:54.1090120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates/remote_module_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit/templates 2025-09-07T06:13:54.1091450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/api 2025-09-07T06:13:54.1092140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api/remote_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/api 2025-09-07T06:13:54.1093430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/api 2025-09-07T06:13:54.1094530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic 2025-09-07T06:13:54.1095400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/metrics 2025-09-07T06:13:54.1096140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/metrics 2025-09-07T06:13:54.1097270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/metrics 2025-09-07T06:13:54.1098610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-09-07T06:13:54.1099360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/etcd_store.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-09-07T06:13:54.1100560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-09-07T06:13:54.1101600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-09-07T06:13:54.1102710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/_etcd_stub.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-09-07T06:13:54.1103840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/etcd_rendezvous.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-09-07T06:13:54.1105220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-09-07T06:13:54.1106330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-09-07T06:13:54.1107520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-09-07T06:13:54.1108620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-09-07T06:13:54.1109770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/dynamic_rendezvous.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-09-07T06:13:54.1111230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/etcd_server.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-09-07T06:13:54.1112330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-09-07T06:13:54.1113610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-09-07T06:13:54.1114580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-09-07T06:13:54.1115480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-09-07T06:13:54.1116830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-09-07T06:13:54.1118040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-09-07T06:13:54.1119090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/tail_log.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-09-07T06:13:54.1120030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-09-07T06:13:54.1120960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-09-07T06:13:54.1122340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/redirects.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-09-07T06:13:54.1123620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-09-07T06:13:54.1124390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors/handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-09-07T06:13:54.1125450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-09-07T06:13:54.1126640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors/error_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-09-07T06:13:54.1132220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-09-07T06:13:54.1132860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer/local_timer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-09-07T06:13:54.1133730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer/debug_info_logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-09-07T06:13:54.1134580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-09-07T06:13:54.1135380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-09-07T06:13:54.1136230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer/file_based_local_timer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-09-07T06:13:54.1137040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic 2025-09-07T06:13:54.1137810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/control_plane.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic 2025-09-07T06:13:54.1138410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-09-07T06:13:54.1139060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/store.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-09-07T06:13:54.1139880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-09-07T06:13:54.1140690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-09-07T06:13:54.1141550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/log_level.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-09-07T06:13:54.1142620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-09-07T06:13:54.1143750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-09-07T06:13:54.1144980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils/data 2025-09-07T06:13:54.1145800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data/elastic_distributed_sampler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils/data 2025-09-07T06:13:54.1146900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data/cycling_iterator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils/data 2025-09-07T06:13:54.1148030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils/data 2025-09-07T06:13:54.1149260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent 2025-09-07T06:13:54.1149930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent 2025-09-07T06:13:54.1151010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-09-07T06:13:54.1151770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server/health_check_server.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-09-07T06:13:54.1152870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-09-07T06:13:54.1154030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-09-07T06:13:54.1155420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server/local_elastic_agent.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-09-07T06:13:54.1156960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/events 2025-09-07T06:13:54.1157720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events/handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/events 2025-09-07T06:13:54.1158980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/events 2025-09-07T06:13:54.1160040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/events 2025-09-07T06:13:54.1161370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/autograd 2025-09-07T06:13:54.1162100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/autograd 2025-09-07T06:13:54.1163360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/distributed_c10d.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1165920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-09-07T06:13:54.1166490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_IR.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-09-07T06:13:54.1167800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_unflatten.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-09-07T06:13:54.1169040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_schedule_visualizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-09-07T06:13:54.1169950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-09-07T06:13:54.1171080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/microbatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-09-07T06:13:54.1172120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_backward.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-09-07T06:13:54.1173270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-09-07T06:13:54.1174360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/stage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-09-07T06:13:54.1175770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/schedules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-09-07T06:13:54.1177430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-09-07T06:13:54.1178430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/argparse_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1179490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_checkpointable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1180600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1181680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/c10d_logger.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1183030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms 2025-09-07T06:13:54.1184250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2025-09-07T06:13:54.1185080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2025-09-07T06:13:54.1186370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks/default_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2025-09-07T06:13:54.1187750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_checkpoint 2025-09-07T06:13:54.1188600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_checkpoint 2025-09-07T06:13:54.1189820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_checkpoint 2025-09-07T06:13:54.1191230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-09-07T06:13:54.1192060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-09-07T06:13:54.1193060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging/averagers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-09-07T06:13:54.1194300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-09-07T06:13:54.1195620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-09-07T06:13:54.1197120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:54.1198000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:54.1199290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:54.1200510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:54.1201750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:54.1202870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:54.1203970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:54.1205270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:54.1206340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:54.1207470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-09-07T06:13:54.1208740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms 2025-09-07T06:13:54.1209880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/join.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms 2025-09-07T06:13:54.1211200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2025-09-07T06:13:54.1212130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2025-09-07T06:13:54.1213380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2025-09-07T06:13:54.1214600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_quantization 2025-09-07T06:13:54.1215470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization/quantization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_quantization 2025-09-07T06:13:54.1216740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_quantization 2025-09-07T06:13:54.1217500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1218200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/_deprecation_warning.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1219350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/named_optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1220520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1221520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1222660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_sgd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1223770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_adagrad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1224960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_adamw.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1226070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/apply_optimizer_in_backward.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1227130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_adam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1228220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1229330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_rprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1230500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/post_localSGD_optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1231550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1232640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_adadelta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1233770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_rmsprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1234920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/zero_redundancy_optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1236560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_adamax.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-09-07T06:13:54.1237510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1238620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_dist2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1240400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-09-07T06:13:54.1241030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/replicate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-09-07T06:13:54.1241820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-09-07T06:13:54.1242920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/replicate_with_fsdp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-09-07T06:13:54.1244180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable/fsdp 2025-09-07T06:13:54.1244880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable/fsdp 2025-09-07T06:13:54.1246060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp/fully_shard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable/fsdp 2025-09-07T06:13:54.1247120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/contract.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-09-07T06:13:54.1248250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/checkpoint_activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-09-07T06:13:54.1249480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-09-07T06:13:54.1250200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/mem_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-09-07T06:13:54.1251640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/ilp_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-09-07T06:13:54.1252720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/runtime_estimator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-09-07T06:13:54.1253960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/fsdp2_mem_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-09-07T06:13:54.1255190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/sac_estimator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-09-07T06:13:54.1256560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-09-07T06:13:54.1257660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/memory_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-09-07T06:13:54.1258770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/fake_collectives.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-09-07T06:13:54.1259850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/common_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-09-07T06:13:54.1260910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/sac_ilp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-09-07T06:13:54.1262120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/mod_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-09-07T06:13:54.1263620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1264180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_exec_order_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1265240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_traversal_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1266420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/sharded_grad_scaler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1267590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_state_dict_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1269320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:54.1270030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:54.1271130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:54.1272240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:54.1273590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:54.1274660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_param.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:54.1275970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_init.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:54.1277080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:54.1278300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fully_shard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:54.1279600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-09-07T06:13:54.1280830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/fully_sharded_data_parallel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1282500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_wrap_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1283570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_optim_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1285200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_trace_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1286230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_common_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1287440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1288440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1289680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_limiter_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1290840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_dynamo_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1291910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_unshard_param_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1293020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_shard_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1293980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/wrap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1295240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_runtime_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1296960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fsdp_extensions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1297840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_init_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1299180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_debug_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1300260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_flat_param.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-09-07T06:13:54.1302040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/collective_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1303180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_functional_collectives.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1304750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-09-07T06:13:54.1305620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/checkpoint 2025-09-07T06:13:54.1306260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/checkpoint/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/checkpoint 2025-09-07T06:13:54.1307370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/metadata.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-09-07T06:13:54.1308480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/op_registry_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-09-07T06:13:54.1309770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:54.1310470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/logging_handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:54.1311570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/metadata.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:54.1312990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-09-07T06:13:54.1313730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-09-07T06:13:54.1314850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-09-07T06:13:54.1315920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-09-07T06:13:54.1317000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-09-07T06:13:54.1318110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-09-07T06:13:54.1319270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/init.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-09-07T06:13:54.1320360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:54.1321620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/logger.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:54.1322730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/reshard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:54.1323880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:54.1325310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/shard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:54.1326420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-09-07T06:13:54.1327640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_plan 2025-09-07T06:13:54.1328330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_plan 2025-09-07T06:13:54.1329440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_plan 2025-09-07T06:13:54.1330510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-09-07T06:13:54.1331910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-09-07T06:13:54.1332940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-09-07T06:13:54.1333840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-09-07T06:13:54.1334690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-09-07T06:13:54.1335910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-09-07T06:13:54.1337080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-09-07T06:13:54.1338200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-09-07T06:13:54.1339200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-09-07T06:13:54.1340320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/_internals.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-09-07T06:13:54.1341420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-09-07T06:13:54.1342520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-09-07T06:13:54.1343720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_optim 2025-09-07T06:13:54.1344410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_optim 2025-09-07T06:13:54.1345540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_optim 2025-09-07T06:13:54.1346610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/common_op_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-09-07T06:13:54.1347640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-09-07T06:13:54.1348790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-09-07T06:13:54.1349820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1351220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_symmetric_memory 2025-09-07T06:13:54.1351960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory/_nvshmem_triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_symmetric_memory 2025-09-07T06:13:54.1353240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_symmetric_memory 2025-09-07T06:13:54.1354620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1355780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/remote_device.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1356930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/device_mesh.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1358580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-09-07T06:13:54.1359440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-09-07T06:13:54.1360150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-09-07T06:13:54.1361590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-09-07T06:13:54.1362690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_tp_transform.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-09-07T06:13:54.1363940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_register_sharding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-09-07T06:13:54.1365090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_func_map.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-09-07T06:13:54.1366330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-09-07T06:13:54.1366990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/ddp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-09-07T06:13:54.1368200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/fsdp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-09-07T06:13:54.1369290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/style.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-09-07T06:13:54.1370670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-09-07T06:13:54.1371740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-09-07T06:13:54.1372800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/loss.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-09-07T06:13:54.1374110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/input_reshard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-09-07T06:13:54.1375200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/_data_parallel_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-09-07T06:13:54.1376260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_shards_wrapper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-09-07T06:13:54.1377330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_redistribute.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-09-07T06:13:54.1378410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_sharding_prop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-09-07T06:13:54.1379710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_collective_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-09-07T06:13:54.1380780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-09-07T06:13:54.1382180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_dtensor_spec.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-09-07T06:13:54.1383380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-09-07T06:13:54.1384140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_einsum_strategy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-09-07T06:13:54.1385270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_embedding_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-09-07T06:13:54.1386390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_tensor_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-09-07T06:13:54.1387730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-09-07T06:13:54.1388840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_conv_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-09-07T06:13:54.1389930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_pointwise_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-09-07T06:13:54.1391200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_matrix_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-09-07T06:13:54.1392600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_math_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-09-07T06:13:54.1394100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_common_rules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-09-07T06:13:54.1395050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-09-07T06:13:54.1396100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_random_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-09-07T06:13:54.1397250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_view_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-09-07T06:13:54.1398420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-09-07T06:13:54.1399560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_dispatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-09-07T06:13:54.1400770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-09-07T06:13:54.1402030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_op_schema.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-09-07T06:13:54.1403330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/placement_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-09-07T06:13:54.1404670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_tp_conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-09-07T06:13:54.1405620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/device_mesh.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-09-07T06:13:54.1406780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-09-07T06:13:54.1408150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-09-07T06:13:54.1408810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-09-07T06:13:54.1409920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug/_op_coverage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-09-07T06:13:54.1411050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug/_visualize_sharding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-09-07T06:13:54.1412110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug/_comm_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-09-07T06:13:54.1413330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_C_stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1414670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-09-07T06:13:54.1415610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-09-07T06:13:54.1416450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/options.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-09-07T06:13:54.1417550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-09-07T06:13:54.1418630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-09-07T06:13:54.1419780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-09-07T06:13:54.1421140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc/_testing 2025-09-07T06:13:54.1421770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc/_testing 2025-09-07T06:13:54.1422890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing/faulty_agent_backend_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc/_testing 2025-09-07T06:13:54.1423910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-09-07T06:13:54.1425220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/rref_proxy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-09-07T06:13:54.1426350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/server_process_global_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-09-07T06:13:54.1427370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-09-07T06:13:54.1428480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/backend_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-09-07T06:13:54.1429580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_functional_collectives_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-09-07T06:13:54.1430690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_size_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:54.1432090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-09-07T06:13:54.1432910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/anomaly_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-09-07T06:13:54.1434050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/autograd/_functions 2025-09-07T06:13:54.1434750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd/_functions 2025-09-07T06:13:54.1435910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions/tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd/_functions 2025-09-07T06:13:54.1437050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd/_functions 2025-09-07T06:13:54.1438110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-09-07T06:13:54.1439370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/forward_ad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-09-07T06:13:54.1440450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-09-07T06:13:54.1441700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/variable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-09-07T06:13:54.1442740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-09-07T06:13:54.1444080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/grad_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-09-07T06:13:54.1445230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-09-07T06:13:54.1446500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler_legacy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-09-07T06:13:54.1452260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/gradcheck.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-09-07T06:13:54.1452940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-09-07T06:13:54.1453570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-09-07T06:13:54.1454160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_torch_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:54.1455280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1455880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1457020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/graph_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1458610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1459260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/validator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1461010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-09-07T06:13:54.1461640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/dispatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-09-07T06:13:54.1462830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-09-07T06:13:54.1463940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-09-07T06:13:54.1465000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/unification_tools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-09-07T06:13:54.1466370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-09-07T06:13:54.1467410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/dispatcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-09-07T06:13:54.1470080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/variadic.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-09-07T06:13:54.1471150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-09-07T06:13:54.1472200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-09-07T06:13:54.1473260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/conflict.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-09-07T06:13:54.1474340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-09-07T06:13:54.1475310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/variable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-09-07T06:13:54.1476160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/more.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-09-07T06:13:54.1476990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-09-07T06:13:54.1477980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/match.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-09-07T06:13:54.1478990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/meta_tracer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1480060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/_dynamism.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1481240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/partitioner_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1482350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/recording.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1483580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/rewriter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1484630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/const_fold.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1486130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:54.1486890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/constraint.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:54.1488340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/constraint_transformation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:54.1489530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:54.1490650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:54.1491640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/operation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:54.1492610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/transform_to_z3.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:54.1493750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/z3_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:54.1494930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/constraint_generator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-09-07T06:13:54.1496210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/accelerator_partitioner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1497430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/normalize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1498580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/_constant_symnode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1499730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/optimization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1501000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/refinement_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1502220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/graph_gradual_typechecker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1503500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1504370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/sym_node.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1505930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unify_refinements.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1506860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/merge_matmul.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1507950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1509120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/schema_type_annotation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1510260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/symbolic_shapes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1513290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/_config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1514040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/_backward_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1515210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/proxy_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-09-07T06:13:54.1516710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/operator_schemas.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1517870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1518990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/proxy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1520330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_lazy_graph_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1521440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/traceback.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1522600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1524850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1525340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/net_min_base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1526880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/param_fetch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1527950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tools_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1529270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-09-07T06:13:54.1529960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra/partitioner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-09-07T06:13:54.1531220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-09-07T06:13:54.1532350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra/pass_base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-09-07T06:13:54.1533550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra/pass_manager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-09-07T06:13:54.1534640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/split_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1535770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/shape_prop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1536840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/split_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1538170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/runtime_assert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1539470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/reinplace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1541110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/backends 2025-09-07T06:13:54.1541670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/backends 2025-09-07T06:13:54.1542720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends/cudagraphs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/backends 2025-09-07T06:13:54.1544030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/tests 2025-09-07T06:13:54.1544900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/tests 2025-09-07T06:13:54.1546140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests/test_pass_manager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/tests 2025-09-07T06:13:54.1547190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1548620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-09-07T06:13:54.1549370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/source_matcher_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-09-07T06:13:54.1550660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/matcher_with_name_node_map_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-09-07T06:13:54.1551850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-09-07T06:13:54.1553140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-09-07T06:13:54.1554380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/matcher_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-09-07T06:13:54.1555850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/fuser_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-09-07T06:13:54.1557000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/pass_manager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1558360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/_tensorify_python_scalars.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1559650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/fake_tensor_prop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1560800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/operator_support.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1561920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/annotate_getitem_nodes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1563060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/graph_manipulation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1564460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect 2025-09-07T06:13:54.1565140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect 2025-09-07T06:13:54.1566200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect/common 2025-09-07T06:13:54.1566850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common/cse_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect/common 2025-09-07T06:13:54.1567970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect/common 2025-09-07T06:13:54.1568800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/graph_drawer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1570110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/splitter_base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1571500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/graph_transform_observer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-09-07T06:13:54.1572550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/tensor_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1573570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1574760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/immutable_collections.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1575870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/annotate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1576950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/subgraph_rewriter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1578060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/interpreter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1579320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_symbolic_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1580750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/node.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1582050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_compatibility.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1583160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_graph_pickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1584340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-09-07T06:13:54.1585440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:54.1586860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_utils_internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:54.1587940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quasirandom.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:54.1589270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_prims_common 2025-09-07T06:13:54.1590110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims_common 2025-09-07T06:13:54.1591870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common/wrappers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims_common 2025-09-07T06:13:54.1593160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-09-07T06:13:54.1593890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/queue.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-09-07T06:13:54.1595060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/_atfork.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-09-07T06:13:54.1596040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-09-07T06:13:54.1597140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/spawn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-09-07T06:13:54.1598280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/reductions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-09-07T06:13:54.1599550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/pool.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-09-07T06:13:54.1601110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1601580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_pin_memory_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1602690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/gds.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1603850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/streams.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1604920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/comm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1606020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1607380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/jiterator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1608400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/nccl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1609530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1610930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_gpu_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1612000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_sanitizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1613270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1614460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_memory_viz.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1615790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/tunable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1617380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-09-07T06:13:54.1617870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp/autocast_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-09-07T06:13:54.1618990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp/grad_scaler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-09-07T06:13:54.1620020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-09-07T06:13:54.1621180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-09-07T06:13:54.1622200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1623200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/nvtx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1624250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/graphs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1625600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1626630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-09-07T06:13:54.1628010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-09-07T06:13:54.1628630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/sleef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-09-07T06:13:54.1631400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1631980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/gil_simple.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1632820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/attr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1634030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/embed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1635130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/numpy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1636690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/pybind11.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1638630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/warnings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1639700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/operators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1640740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/iostream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1642050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/conduit 2025-09-07T06:13:54.1642770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit/pybind11_platform_abi_id.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/conduit 2025-09-07T06:13:54.1643970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit/pybind11_conduit_v1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/conduit 2025-09-07T06:13:54.1645030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/conduit/wrap_include_python_h.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/conduit 2025-09-07T06:13:54.1646100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/gil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1647180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/chrono.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1648410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/subinterpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1649660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/typing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1650480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl_bind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1651730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/buffer_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1652860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/options.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1654090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/eigen 2025-09-07T06:13:54.1654850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen/matrix.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/eigen 2025-09-07T06:13:54.1656050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/eigen 2025-09-07T06:13:54.1657110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/eigen 2025-09-07T06:13:54.1658530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/stl 2025-09-07T06:13:54.1659200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl/filesystem.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/stl 2025-09-07T06:13:54.1660300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/functional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1661390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/native_enum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1662540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1663800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/critical_section.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1665200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1665870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/type_caster_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1667420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/exception_translation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1668480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/typeid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1669500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/descr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1670620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/using_smart_holder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1671720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/function_record_pyobject.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1672750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/internals.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1674040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/cpp_conduit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1675120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/value_and_holder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1676190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1677660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/class.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1678940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1680090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/pybind11_namespace_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1681200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1682500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/native_enum_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1683570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/struct_smart_holder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-09-07T06:13:54.1684690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1685780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eval.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1686840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/cast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1688610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/trampoline_self_life_support.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1689570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/type_caster_pyobject_ptr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1690680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1691880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/gil_safe_call_once.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1692970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/pytypes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1694680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-09-07T06:13:54.1696150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-09-07T06:13:54.1696830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/ostream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-09-07T06:13:54.1698010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/format-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-09-07T06:13:54.1699550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/ranges.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-09-07T06:13:54.1700720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/xchar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-09-07T06:13:54.1701780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/core.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-09-07T06:13:54.1702890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/chrono.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-09-07T06:13:54.1704350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/os.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-09-07T06:13:54.1705480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/color.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-09-07T06:13:54.1706690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-09-07T06:13:54.1707730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/printf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-09-07T06:13:54.1708970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/compile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-09-07T06:13:54.1710220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/format.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-09-07T06:13:54.1712130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/std.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-09-07T06:13:54.1713230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-09-07T06:13:54.1715350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2 2025-09-07T06:13:54.1715880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/core 2025-09-07T06:13:54.1716580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core/timer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/core 2025-09-07T06:13:54.1717740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/core 2025-09-07T06:13:54.1718790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core/macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/core 2025-09-07T06:13:54.1720040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/perfkernels 2025-09-07T06:13:54.1720760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels/batch_box_cox_vec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/perfkernels 2025-09-07T06:13:54.1721880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels/embedding_lookup_idx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/perfkernels 2025-09-07T06:13:54.1723000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/perfkernels 2025-09-07T06:13:54.1724200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-09-07T06:13:54.1724920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/in_memory_adapter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-09-07T06:13:54.1726090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/read_adapter_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-09-07T06:13:54.1727120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/crc_alt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-09-07T06:13:54.1728710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/versions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-09-07T06:13:54.1729790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/inline_container.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-09-07T06:13:54.1730900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/file_adapter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-09-07T06:13:54.1731990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/istream_adapter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-09-07T06:13:54.1733360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils 2025-09-07T06:13:54.1733960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/string_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils 2025-09-07T06:13:54.1735240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-09-07T06:13:54.1736010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/ThreadPool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-09-07T06:13:54.1737120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-09-07T06:13:54.1738250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/pthreadpool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-09-07T06:13:54.1739340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-09-07T06:13:54.1740520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/WorkersPool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-09-07T06:13:54.1741520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/thread_pool_guard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-09-07T06:13:54.1742560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/fixed_divisor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils 2025-09-07T06:13:54.1743670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/proto_wrap.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils 2025-09-07T06:13:54.1744930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google 2025-09-07T06:13:54.1746510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1747340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/source_context.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1748810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1749610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/stringpiece.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1750870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/stl_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1751970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/port.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1753190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/status.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1754310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/template_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1755390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/map_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1756610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/casts.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1757730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/logging.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1758910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/bytestream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1759970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1761050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1762520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/platform_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1763440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/once.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1764560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/fastmem.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1765700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/mutex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1766730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/callback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1768000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/strutil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1769360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/hash.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-09-07T06:13:54.1770480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/repeated_field.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1772090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/port.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1773150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/wire_format.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1774500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/inlined_string_field.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1775750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-09-07T06:13:54.1776510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/time_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-09-07T06:13:54.1782420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/field_mask_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-09-07T06:13:54.1783330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/json_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-09-07T06:13:54.1784190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/type_resolver.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-09-07T06:13:54.1785080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/field_comparator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-09-07T06:13:54.1785970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/type_resolver_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-09-07T06:13:54.1786880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/message_differencer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-09-07T06:13:54.1787790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/delimited_message_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-09-07T06:13:54.1788640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1789440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/arenastring.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1790290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_entry_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1791120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/service.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1791920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/struct.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1792840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/empty.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1793880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/descriptor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1795750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-09-07T06:13:54.1796540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/zero_copy_stream_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-09-07T06:13:54.1797660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/printer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-09-07T06:13:54.1798760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/gzip_stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-09-07T06:13:54.1799940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-09-07T06:13:54.1801130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/strtod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-09-07T06:13:54.1802240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/tokenizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-09-07T06:13:54.1803560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/zero_copy_stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-09-07T06:13:54.1804640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/io_win32.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-09-07T06:13:54.1805740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/coded_stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-09-07T06:13:54.1807160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/message.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1808670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/wrappers.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1809980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/text_format.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1811260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/has_bits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1812430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/arena_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1813570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/api.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1815130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/metadata.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1816300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/extension_set.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1817740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/reflection_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1818810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/generated_message_table_driven.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1819970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/duration.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1821120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/generated_message_reflection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1822240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/unknown_field_set.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1823240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/type.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1824850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_field_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1825990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/timestamp.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1827100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/field_mask.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1828130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/descriptor.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1832150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_entry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1833260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/message_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1834640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/generated_message_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1835760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/descriptor_database.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1837010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_field.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1838510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/generated_enum_reflection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1839600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/generated_enum_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1840630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/any.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1841780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_type_handler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1843130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/parse_context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1844470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/extension_set_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1845540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_field_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1846610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/metadata_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1847790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/implicit_weak_message.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1848960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/arena.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1850580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-09-07T06:13:54.1851320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/code_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-09-07T06:13:54.1852440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/plugin.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-09-07T06:13:54.1854010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/plugin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-09-07T06:13:54.1855360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/python 2025-09-07T06:13:54.1856130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/python/python_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/python 2025-09-07T06:13:54.1857220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-09-07T06:13:54.1858930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/js 2025-09-07T06:13:54.1859660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js/well_known_types_embed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/js 2025-09-07T06:13:54.1860640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js/js_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/js 2025-09-07T06:13:54.1861830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/java 2025-09-07T06:13:54.1862610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java/java_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/java 2025-09-07T06:13:54.1863710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java/java_names.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/java 2025-09-07T06:13:54.1864860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/php 2025-09-07T06:13:54.1865610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/php/php_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/php 2025-09-07T06:13:54.1866750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/command_line_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-09-07T06:13:54.1868210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/cpp 2025-09-07T06:13:54.1869000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/cpp/cpp_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/cpp 2025-09-07T06:13:54.1869960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/importer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-09-07T06:13:54.1871200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/csharp 2025-09-07T06:13:54.1871950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp/csharp_names.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/csharp 2025-09-07T06:13:54.1873160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp/csharp_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/csharp 2025-09-07T06:13:54.1874370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/ruby 2025-09-07T06:13:54.1875120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/ruby/ruby_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/ruby 2025-09-07T06:13:54.1876450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/objectivec 2025-09-07T06:13:54.1877270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/objectivec 2025-09-07T06:13:54.1878420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/objectivec 2025-09-07T06:13:54.1879380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/any.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1880390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/reflection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1881690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/dynamic_message.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1882850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/wire_format_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-09-07T06:13:54.1884310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/cpuinfo.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-09-07T06:13:54.1885980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-09-07T06:13:54.1886900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly 2025-09-07T06:13:54.1887900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/core 2025-09-07T06:13:54.1888560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/core/ScalarType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/core 2025-09-07T06:13:54.1889900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1890570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/quint4x2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1891710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1893120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/TypeSafeSignMath.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1894230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/qint32.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1895310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Float4_e2m1fn_x2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1896450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Float8_e5m2fnuz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1897600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/shim_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1898760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Float8_e4m3fnuz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1899930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/quint8.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1900960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Float8_e5m2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1902070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Float8_e8m0fnu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1903180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/BFloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1904480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/quint2x4.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1905490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/floating_point_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1906590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/bit_cast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1907680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/qint8.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1908820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1909990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Float8_e4m3fn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1911270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1912660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/bits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1913960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util/Float8_fnuz_cvt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-09-07T06:13:54.1915390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu 2025-09-07T06:13:54.1916330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec 2025-09-07T06:13:54.1917160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/vec_half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec 2025-09-07T06:13:54.1918710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec/vec256 2025-09-07T06:13:54.1919590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/vec256/missing_vst1_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec/vec256 2025-09-07T06:13:54.1920790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/vec256/missing_vld1_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec/vec256 2025-09-07T06:13:54.1921950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/cpu/vec/intrinsics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/cpu/vec 2025-09-07T06:13:54.1923210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/macros 2025-09-07T06:13:54.1923960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros/cmake_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/macros 2025-09-07T06:13:54.1925130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros/Export.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/macros 2025-09-07T06:13:54.1926240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros/Macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/macros 2025-09-07T06:13:54.1928260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.1929110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-09-07T06:13:54.1929990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/stableivalue_conversions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-09-07T06:13:54.1931240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/library.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-09-07T06:13:54.1932450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/accelerator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-09-07T06:13:54.1933550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/tensor_struct.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-09-07T06:13:54.1934650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/tensor_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-09-07T06:13:54.1935850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-09-07T06:13:54.1936900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-09-07T06:13:54.1937950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.1939400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-09-07T06:13:54.1940250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_package 2025-09-07T06:13:54.1941010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_package 2025-09-07T06:13:54.1942250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_package 2025-09-07T06:13:54.1943510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_eager 2025-09-07T06:13:54.1944290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_eager 2025-09-07T06:13:54.1945410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_eager 2025-09-07T06:13:54.1946430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/inductor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-09-07T06:13:54.1947540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/array_ref_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-09-07T06:13:54.1948680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/static_cuda_launcher.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-09-07T06:13:54.1949940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-09-07T06:13:54.1950760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-09-07T06:13:54.1951850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-09-07T06:13:54.1953020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-09-07T06:13:54.1954160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-09-07T06:13:54.1955220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-09-07T06:13:54.1956400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-09-07T06:13:54.1957750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.1958430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.1959540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.1960660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.1961750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.1962810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.1963970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.1965100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.1966270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.1967340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.1968450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.1969540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/model.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.1970670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.1971800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/model_container.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.1973100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/model_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-09-07T06:13:54.1974550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-09-07T06:13:54.1975340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-09-07T06:13:54.1976430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-09-07T06:13:54.1977520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-09-07T06:13:54.1978580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-09-07T06:13:54.1979640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-09-07T06:13:54.1980760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/array_ref.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-09-07T06:13:54.1981820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_prefix.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-09-07T06:13:54.1983330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-09-07T06:13:54.1984200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-09-07T06:13:54.1984960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-09-07T06:13:54.1986290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-09-07T06:13:54.1987470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-09-07T06:13:54.1988760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-09-07T06:13:54.1990100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-09-07T06:13:54.1991210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-09-07T06:13:54.1992270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-09-07T06:13:54.1993340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-09-07T06:13:54.1994430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-09-07T06:13:54.1995520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-09-07T06:13:54.1996770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-09-07T06:13:54.1997580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-09-07T06:13:54.1998670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-09-07T06:13:54.1999810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-09-07T06:13:54.2000880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/shim_deprecated.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-09-07T06:13:54.2001980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-09-07T06:13:54.2003120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/shim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-09-07T06:13:54.2004520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-09-07T06:13:54.2005410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-09-07T06:13:54.2006230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-09-07T06:13:54.2007330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-09-07T06:13:54.2008380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-09-07T06:13:54.2009490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-09-07T06:13:54.2010470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-09-07T06:13:54.2011640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-09-07T06:13:54.2012650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-09-07T06:13:54.2013720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-09-07T06:13:54.2014780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-09-07T06:13:54.2015910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-09-07T06:13:54.2016870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2018100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/DeviceAccelerator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2019450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/monitor 2025-09-07T06:13:54.2020050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor/events.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/monitor 2025-09-07T06:13:54.2021170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor/counters.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/monitor 2025-09-07T06:13:54.2022230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor/python_init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/monitor 2025-09-07T06:13:54.2023440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/instruction_counter 2025-09-07T06:13:54.2024220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/instruction_counter/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/instruction_counter 2025-09-07T06:13:54.2025240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Export.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2026310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Device.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2027400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/THConcat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2028660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mps 2025-09-07T06:13:54.2029340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mps/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mps 2025-09-07T06:13:54.2030600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/onnx 2025-09-07T06:13:54.2031320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx/back_compat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/onnx 2025-09-07T06:13:54.2032430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/onnx 2025-09-07T06:13:54.2033440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx/onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/onnx 2025-09-07T06:13:54.2034520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Event.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2035760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cpu 2025-09-07T06:13:54.2036440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cpu/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cpu 2025-09-07T06:13:54.2037520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2038840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed 2025-09-07T06:13:54.2039700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-09-07T06:13:54.2040520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-09-07T06:13:54.2041750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2025-09-07T06:13:54.2042590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context/container.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2025-09-07T06:13:54.2043820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context/context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2025-09-07T06:13:54.2045030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:54.2045860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:54.2047020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:54.2048140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:54.2049270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:54.2050500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:54.2051630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:54.2052730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:54.2053830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:54.2055120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:54.2056370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-09-07T06:13:54.2057380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/python_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-09-07T06:13:54.2058520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-09-07T06:13:54.2059740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2025-09-07T06:13:54.2060540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2025-09-07T06:13:54.2061760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2025-09-07T06:13:54.2062890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/engine 2025-09-07T06:13:54.2063670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/engine 2025-09-07T06:13:54.2064970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2065800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/metrics 2025-09-07T06:13:54.2066650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/metrics 2025-09-07T06:13:54.2067690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2068870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rref_context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2070000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/request_callback_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2071220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/python_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2072290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rref_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2073620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/request_callback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2074800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2075980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rref_proto.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2076950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/py_rref.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2078030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rpc_agent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2079210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/python_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2080360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/message.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2081490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2082570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/python_remote_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2083680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/python_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2084910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2086140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/script_remote_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2087370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/testing 2025-09-07T06:13:54.2088090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing/testing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/testing 2025-09-07T06:13:54.2089260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/testing 2025-09-07T06:13:54.2090310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/script_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2091440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rpc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2092570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rpc_command_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2093820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/profiler 2025-09-07T06:13:54.2094620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/profiler 2025-09-07T06:13:54.2095850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/profiler 2025-09-07T06:13:54.2096850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/script_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2098060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2099140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/torchscript_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2100310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2101430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2102670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/agent_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2103730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-09-07T06:13:54.2105190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2106010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2108010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/error.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2109240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2110320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/logger.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2111520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Work.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2112680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2113840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2115210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-09-07T06:13:54.2116090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-09-07T06:13:54.2117290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-09-07T06:13:54.2118290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/debug.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2119390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2120540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Store.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2121610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2122840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2124090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/cuda 2025-09-07T06:13:54.2124850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda/CUDAEventCache.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/cuda 2025-09-07T06:13:54.2126010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/cuda 2025-09-07T06:13:54.2127000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/cuda 2025-09-07T06:13:54.2128160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2129250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/RankLocal.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2130330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2131510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/FileStore.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2132610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/reducer.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2133910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2135020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2136050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/logging.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2137190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2138280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/comm.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2139320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Functional.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2140590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/quantization 2025-09-07T06:13:54.2141460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization/quantization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/quantization 2025-09-07T06:13:54.2142600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/quantization 2025-09-07T06:13:54.2143740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/quantization 2025-09-07T06:13:54.2144770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/socket_fmt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2145870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Backoff.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2147040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/TCPStore.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2148070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/python_comm_hook.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2149220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2150470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2151640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/NanCheck.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2152780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2153820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2154910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2156070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/HashStore.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2157080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/c10d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2158200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/sequence_num.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2159350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_plane 2025-09-07T06:13:54.2160150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_plane 2025-09-07T06:13:54.2161420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_plane 2025-09-07T06:13:54.2162400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2163660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2164840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2166130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Backend.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2167420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2168580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/TraceUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2169870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:54.2170690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:54.2171940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:54.2173150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:54.2174210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:54.2175220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:54.2176270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:54.2177400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-09-07T06:13:54.2178480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Utils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2179620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Types.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2180740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2181850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2183000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/socket.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2184310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-09-07T06:13:54.2185700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2186610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-09-07T06:13:54.2187370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/python_return_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-09-07T06:13:54.2188490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/ViewFuncs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-09-07T06:13:54.2189830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/python_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-09-07T06:13:54.2190960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/VariableType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-09-07T06:13:54.2192030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/Functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-09-07T06:13:54.2195870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/variable_factories.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-09-07T06:13:54.2196950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2198020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/custom_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2199380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_linalg_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2200500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/saved_variable_hooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2201590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/record_function_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2202640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/engine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2203760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_enum_tag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2204910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/graph_task.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2205990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/edge.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2207220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_nested_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2208310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/variable_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2209410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/saved_variable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2210550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_engine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2211740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_legacy_variable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2212860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/profiler_python.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2214050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2215150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_saved_variable_hooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2216320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_cpp_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2217390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_hook.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2218540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/VariableTypeUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2219830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2220800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/profiler_kineto.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2221870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/variable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2223460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-09-07T06:13:54.2224230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/warnings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-09-07T06:13:54.2225380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/wrap_outputs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-09-07T06:13:54.2226490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/python_arg_parsing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-09-07T06:13:54.2227580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/grad_layout_contract.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-09-07T06:13:54.2228660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/lambda_post_hook.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-09-07T06:13:54.2229780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/error_messages.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-09-07T06:13:54.2230940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_fft_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2231980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_variable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2233110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_torch_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2234240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/function_hook.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2235360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/input_metadata.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2236460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/grad_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2237610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/jit_decomp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2238760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_sparse_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2239910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/symbolic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2240990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/input_buffer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2242110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/profiler_legacy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2243160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2244280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/cpp_hook.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2245770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-09-07T06:13:54.2246370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-09-07T06:13:54.2247430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-09-07T06:13:54.2248540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/comm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-09-07T06:13:54.2249590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/basic_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-09-07T06:13:54.2250680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/accumulate_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-09-07T06:13:54.2251790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-09-07T06:13:54.2252910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_special_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2254020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/FunctionsManual.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2255330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/forward_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2256530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_anomaly_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2257600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_nn_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2258790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/InferenceMode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2260120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_variable_indexing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2261450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/profiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2262640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2264130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/anomaly_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-09-07T06:13:54.2265540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/fx 2025-09-07T06:13:54.2266380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/fx/node.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/fx 2025-09-07T06:13:54.2267840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/multiprocessing 2025-09-07T06:13:54.2268620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/multiprocessing/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/multiprocessing 2025-09-07T06:13:54.2270040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-09-07T06:13:54.2271010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-09-07T06:13:54.2272080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/GdsFile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-09-07T06:13:54.2273390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-09-07T06:13:54.2278870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/THCP.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-09-07T06:13:54.2279410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/nccl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-09-07T06:13:54.2279810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/memory_snapshot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-09-07T06:13:54.2280180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/python_nccl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-09-07T06:13:54.2280550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/device_set.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-09-07T06:13:54.2280910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/Event.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-09-07T06:13:54.2281520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/python_comm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-09-07T06:13:54.2282590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/comm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-09-07T06:13:54.2283710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/Stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-09-07T06:13:54.2284810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-09-07T06:13:54.2285870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/serialization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2286940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Exceptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2288070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/itt_wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2289420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/xpu 2025-09-07T06:13:54.2290090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu/Event.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/xpu 2025-09-07T06:13:54.2291220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu/Stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/xpu 2025-09-07T06:13:54.2292310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/xpu 2025-09-07T06:13:54.2293440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/QScheme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2294630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-09-07T06:13:54.2295390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/cache_entry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-09-07T06:13:54.2296500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-09-07T06:13:54.2297580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/cpython_defs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-09-07T06:13:54.2298610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/cpp_shim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-09-07T06:13:54.2299710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/framelocals_mapping.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-09-07T06:13:54.2300910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/cpython_includes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-09-07T06:13:54.2301910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/extra_state.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-09-07T06:13:54.2302980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/compiled_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-09-07T06:13:54.2304380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/eval_frame_cpp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-09-07T06:13:54.2305520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/eval_frame.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-09-07T06:13:54.2306800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/debug_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-09-07T06:13:54.2308110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/python_compiled_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-09-07T06:13:54.2309120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-09-07T06:13:54.2310260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/guards.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-09-07T06:13:54.2311650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2312400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/object_ptr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2313510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_numpy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2314570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_dtypes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2315620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_tuples.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2316660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/nested.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2317830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_raii.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2318850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_numbers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2319940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_scalars.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2321030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2322140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2323220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_memoryformats.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2324260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_arg_parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2325620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_torch_function_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2326650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/schema_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2327810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/generated_serialization_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2329590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_new.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2330600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_qschemes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2331740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/verbose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2332810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2333920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_list.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2335030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/invalid_arguments.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2336200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/pythoncapi_compat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2337460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/cpp_stacktraces.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2338640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/device_lazy_init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2339690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2340750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_symnode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2341860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/byte_order.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2342930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/pycfunction_helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2344070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/cuda_enabled.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2345040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/numpy_stub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2346120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/out_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2347330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_layouts.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2348660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/structseq.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2349540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/throughput_benchmark.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2350670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/disable_torch_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2351780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/pyobject_preservation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2352930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/throughput_benchmark-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2354100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_flatten.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2355100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/torch_dispatch_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2356210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_apply.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2357270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2358290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_compat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2359280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/six.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2360370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_stub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2361450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/variadic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-09-07T06:13:54.2362510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2363600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/DataLoader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2364650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/THP.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2365710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/python_headers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2366760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Layout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2367890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/DynamicTypes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2368980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/copy_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2370280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit 2025-09-07T06:13:54.2371030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/jit_opt_limit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit 2025-09-07T06:13:54.2372540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2373160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/error_report.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2374260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/source_range.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2375480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/edit_distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2376630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2377630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/schema_matching.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2378830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/function_schema_parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2379800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/tree_views.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2381100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/ir_emitter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2382160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2383220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/strtod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2384280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/tree.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2385450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/concrete_module_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2386530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/builtin_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2387680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/exit_transforms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2388750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/parse_string_literal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2389820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/sugared_value.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2391160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/inline_loop_condition.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2392170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/name_mangler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2393240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/tracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2394300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/resolver.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2395440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/script_type_parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2396590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/schema_type_parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2397630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/lexer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2398930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/versioned_symbols.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2400050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/convert_to_ssa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2401130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/source_ref.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2402270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/mini_environment.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2403390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/parser_constants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-09-07T06:13:54.2404650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2405340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2406470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2407560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2408680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/script_init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2409740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_tree_views.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2410850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_list.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2411840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_ivalue.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2413090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_dict.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2414160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_custom_class.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2415260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/update_graph_executor_opt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2416370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_tracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2417470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/pybind_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2418850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2420020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_sugared_value.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2421130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_arg_flatten.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2422170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/module_python.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-09-07T06:13:54.2423680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2424480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2425660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2426740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2427810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2428940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/lowerings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2430080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/graph_opt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2431190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2432470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:54.2433280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:54.2434380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:54.2435670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/operators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:54.2436560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/misc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:54.2437640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:54.2438690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:54.2439840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:54.2440960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:54.2442050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-09-07T06:13:54.2443060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2444170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2445410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2446520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2447730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/exceptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2448830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2449930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/hash_provider.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2451080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_printer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2452190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2453240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2454410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/expr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2455580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/cuda_random.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2456760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2457950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2458920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2460030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2461120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/eval.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2462240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2463290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2464390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/block_codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2465590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2466790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2467720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/loopnest.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2468920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2470090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2471200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2472250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2473390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/external_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2474410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/stmt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2475770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/half_support.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2476880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/registerizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2477980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/reduction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2479000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2480120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2481260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-09-07T06:13:54.2482550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:54.2483280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/named_value.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:54.2484300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/irparser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:54.2485460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:54.2486830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/graph_node_list.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:54.2487960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/ir_views.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:54.2489040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/alias_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:54.2490140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/attributes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:54.2491180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/type_hashing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:54.2492280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/constants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:54.2493480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/subgraph_matcher.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:54.2494510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/scope.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:54.2495640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/graph_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:54.2496730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/node_hashing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-09-07T06:13:54.2498090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/cuda 2025-09-07T06:13:54.2498850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/cuda/cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/cuda 2025-09-07T06:13:54.2500420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2501220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import_read.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2502530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/export_bytecode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2503690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import_source.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2504860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/export.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2506000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import_export_helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2507200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/type_name_uniquer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2508290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/pickler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2509370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/storage_context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2510550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/python_print.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2511690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2512890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import_export_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2513980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2515000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/pickler_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2516120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/pickle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2517330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import_export_constants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2518510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2519530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2520750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2521880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/unpickler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2523090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/source_range_serialization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2524260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2525950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-09-07T06:13:54.2527160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:54.2528010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_debug_handler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:54.2529490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:54.2530320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:54.2531470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:54.2532640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml 2025-09-07T06:13:54.2533500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-09-07T06:13:54.2534310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/cpp/context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-09-07T06:13:54.2535530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-09-07T06:13:54.2536360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-09-07T06:13:54.2537490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-09-07T06:13:54.2538660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-09-07T06:13:54.2539770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-09-07T06:13:54.2540850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-09-07T06:13:54.2541840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_debug_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:54.2543110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack 2025-09-07T06:13:54.2543990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-09-07T06:13:54.2544900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-09-07T06:13:54.2546060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack 2025-09-07T06:13:54.2547180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-09-07T06:13:54.2548020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-09-07T06:13:54.2549200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-09-07T06:13:54.2549970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-09-07T06:13:54.2551010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_resolver.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:54.2552180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_preprocess.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:54.2553270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_detail.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:54.2554350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-09-07T06:13:54.2555760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2556630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-09-07T06:13:54.2557460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter/frame.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-09-07T06:13:54.2558580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-09-07T06:13:54.2559660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-09-07T06:13:54.2560820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-09-07T06:13:54.2562120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2563210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2564350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2565450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/operator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2566690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/script_profile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2567730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2568860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/register_ops_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2570390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/jit_exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2571850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/exception_message.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2573050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/argument_spec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2574220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/shape_function_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2575340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/logging.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2576630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/jit_trace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2577820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2578900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2580110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2581250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/custom_operator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2582560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:54.2583280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/te_wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:54.2584460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:54.2585630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/static_method.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:54.2586690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/memory_planner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:54.2587760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/fusion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:54.2588880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/passes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:54.2590140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:54.2591430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:54.2592880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:54.2594150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-09-07T06:13:54.2595240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/vararg_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2596330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/graph_iterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2597450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/symbolic_script.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2598670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/variable_tensor_list.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2599770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/decomposition_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2600860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2602090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/autodiff.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2603440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/print_handler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2604560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/profiling_record.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2606220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2607470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/graph_executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2609950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/operator_options.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2611790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/instruction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2613030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/graph_executor_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-09-07T06:13:54.2615550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2616210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_expands.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2617830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/restore_mutation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2619560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/peephole_list_idioms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2621080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/subgraph_rewrite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2622360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/fuse_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2623800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/guard_elimination.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2625020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2626260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/freeze_module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2627420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/clear_undefinedness.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2628530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dtype_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2629700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/peephole.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2631080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2632000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2633070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/value_refinement_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2634110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/metal_rewrite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2635250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/liveness.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2636720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2637520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2638680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/function_substitution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2639770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2640880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2642080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2643180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2644330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2645420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/onnx_log.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2646530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/peephole.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2647730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2648820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/constant_fold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2650010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/constant_map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2651130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/function_extraction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2652240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2653370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2654500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2655670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/naming.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2656710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2658150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-09-07T06:13:54.2658950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-09-07T06:13:54.2660100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-09-07T06:13:54.2661220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-09-07T06:13:54.2662390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-09-07T06:13:54.2663470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2664650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-09-07T06:13:54.2665710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_mutation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2667000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-09-07T06:13:54.2667830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-09-07T06:13:54.2668910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2670000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2671150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/batch_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2672160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_concat_linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2673280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/constant_pooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2674480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2675690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2676890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2677980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/fuse_linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2679140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/annotate_warns.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2680280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/specialize_autogradzero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2681400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_linear_folding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2682480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/prepack_folding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2683560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_conv_folding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2684760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/constant_propagation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2685870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2686960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/insert_guards.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2688190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-09-07T06:13:54.2688960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils/optimization_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-09-07T06:13:54.2690030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils/memory_dag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-09-07T06:13:54.2691140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-09-07T06:13:54.2692300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils/op_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-09-07T06:13:54.2693410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-09-07T06:13:54.2694450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/variadic_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2695590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/refine_tuple_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2696670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/inliner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2697610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/lower_grad_of.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2698870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:54.2699630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:54.2700870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/quantization_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:54.2702020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/insert_observers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:54.2703100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:54.2704190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:54.2705810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/finalize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:54.2706800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:54.2707940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:54.2709060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-09-07T06:13:54.2710070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/normalize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2711190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/device_type_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2712290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/vulkan_rewrite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2713340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/erase_number_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2714430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/integer_value_refinement.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2715480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/fold_linear_bn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2716630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2717720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/graph_fuser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2718820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/fold_conv_bn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2719910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2721040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/inline_forked_closures.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2722150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2723290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2724480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2725520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/add_if_then_else.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2726590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/decompose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2727750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/peephole_non_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2728830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_inplace_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2729920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/inline_fork_wait.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2731020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/check_strict_fusion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2732050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/concat_opt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2733160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2734290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/eliminate_no_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2735370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/requires_grad_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2736460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dead_code_elimination.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2737560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/clear_profiling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2738790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/create_functional_graphs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2739870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/bailout_graph.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2740920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/lower_tuples.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2742080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2743190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2744390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/canonicalize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2745470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2746610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2747610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/loop_unrolling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2748760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/shape_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2749840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2750960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_exceptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2752030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2753080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/inplace_check.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2754260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2755330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2756520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/pass_manager.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2757570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2758680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2759830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/lift_closures.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2760910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/autocast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2762090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2763240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/lower_graph.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-09-07T06:13:54.2764580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen 2025-09-07T06:13:54.2765430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/cuda 2025-09-07T06:13:54.2766230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/cuda/interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/cuda 2025-09-07T06:13:54.2767530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:54.2768360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:54.2769490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/operator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:54.2770630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:54.2771770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:54.2772840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:54.2773970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:54.2775100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:54.2776260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:54.2777370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:54.2778520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:54.2779660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-09-07T06:13:54.2781110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:54.2781690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:54.2782840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:54.2783920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/compiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:54.2785120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/fallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:54.2786280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-09-07T06:13:54.2787040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-09-07T06:13:54.2788180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-09-07T06:13:54.2789300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-09-07T06:13:54.2790640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-09-07T06:13:54.2791270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-09-07T06:13:54.2792390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-09-07T06:13:54.2793490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:54.2794560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:54.2795620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:54.2796720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:54.2797860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:54.2798940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:54.2800050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:54.2801150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-09-07T06:13:54.2802510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-09-07T06:13:54.2803550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing/catch_utils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-09-07T06:13:54.2804880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing/file_check.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-09-07T06:13:54.2806040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing/hooks_for_testing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-09-07T06:13:54.2807370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/jit_log.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit 2025-09-07T06:13:54.2808860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2809740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-09-07T06:13:54.2810640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility/backport.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-09-07T06:13:54.2811810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-09-07T06:13:54.2812940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-09-07T06:13:54.2814120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-09-07T06:13:54.2815500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:54.2816150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:54.2817450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:54.2818600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:54.2819780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:54.2820900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:54.2822110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:54.2823280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-09-07T06:13:54.2824270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2825500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/parse_operators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2826610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2827790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/upgrader_mobile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2828950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2830130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/quantization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2831220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/profiler_edge.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2832300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/code.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2833680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/nnc 2025-09-07T06:13:54.2834380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc/context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/nnc 2025-09-07T06:13:54.2835580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc/registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/nnc 2025-09-07T06:13:54.2836670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/nnc 2025-09-07T06:13:54.2837840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/interpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2839030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/frame.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2840090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/method.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2841240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/debug_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2842500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2843670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/prim_ops_registery.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2844840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/parse_bytecode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2846090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train 2025-09-07T06:13:54.2846870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/sequential.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train 2025-09-07T06:13:54.2848110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/export_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train 2025-09-07T06:13:54.2849400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train/optim 2025-09-07T06:13:54.2850150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/optim/sgd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train/optim 2025-09-07T06:13:54.2851310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/random.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train 2025-09-07T06:13:54.2852320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/import_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2853530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/import_export_common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2854730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/type_parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2855820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/import.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2856850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2857940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2859050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/file_format.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-09-07T06:13:54.2860510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-09-07T06:13:54.2861120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-09-07T06:13:54.2862280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders/version_map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-09-07T06:13:54.2863350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders/upgraders.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-09-07T06:13:54.2864410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-09-07T06:13:54.2865450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/resource_guard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit 2025-09-07T06:13:54.2866760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-09-07T06:13:54.2867430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api/function_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-09-07T06:13:54.2868540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api/method.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-09-07T06:13:54.2875260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api/compilation_unit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-09-07T06:13:54.2875790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api/object.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-09-07T06:13:54.2876180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api/module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-09-07T06:13:54.2876510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Storage.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2876890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/PyInterpreterHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2877200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/itt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.2877410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy 2025-09-07T06:13:54.2877930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/generated 2025-09-07T06:13:54.2878410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/generated 2025-09-07T06:13:54.2879570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/generated 2025-09-07T06:13:54.2880680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated/LazyIr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/generated 2025-09-07T06:13:54.2883770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2884240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/debug_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2885380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/tensor_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2886460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2887770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/internal_ops 2025-09-07T06:13:54.2888550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/internal_ops 2025-09-07T06:13:54.2889600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/multi_wait.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2890690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2891920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/permutation_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2893070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/lazy_graph_executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2894070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/cache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2895200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/tensor_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2896290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/shape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2897470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/thread_pool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2898580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/unique.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2899680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/shape_inference.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2900810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2901880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ir_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2903320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2025-09-07T06:13:54.2903920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2025-09-07T06:13:54.2905050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2025-09-07T06:13:54.2906180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/metrics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2907330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ir_dump_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2908410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/dynamic_ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2909500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ir_builder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2910660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2911930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/trie.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2913020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2914100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/hash.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2915260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ir_metadata.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-09-07T06:13:54.2916470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/python 2025-09-07T06:13:54.2917210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python/python_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/python 2025-09-07T06:13:54.2918350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/python 2025-09-07T06:13:54.2919610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:54.2920380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:54.2921570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:54.2922670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:54.2923830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:54.2924970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:54.2926360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:54.2927320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend/ops 2025-09-07T06:13:54.2928090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops/generic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend/ops 2025-09-07T06:13:54.2929160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend/ops 2025-09-07T06:13:54.2930310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend/ops 2025-09-07T06:13:54.2931420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:54.2932480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_node.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:54.2933600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ir_builder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:54.2934820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-09-07T06:13:54.2936080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-09-07T06:13:54.2936860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend/backend_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-09-07T06:13:54.2938090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend/backend_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-09-07T06:13:54.2939330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend/lowering_context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-09-07T06:13:54.2940440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend/backend_device.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-09-07T06:13:54.2941830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia 2025-09-07T06:13:54.2942660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia/profiler 2025-09-07T06:13:54.2943490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia/profiler 2025-09-07T06:13:54.2944550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia 2025-09-07T06:13:54.2945700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api 2025-09-07T06:13:54.2946470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include 2025-09-07T06:13:54.2947470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.2948240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/fft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.2949380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nested.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.2950570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.2951700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/version.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.2953060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:54.2954070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2954820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/normalization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2956140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/rnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2957310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2958460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2959630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2960880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2962100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/vision.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2963390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2964610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2965900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2967140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/embedding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2968330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/fold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2969560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2971090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/transformer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2972280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/pooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2973850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2974880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2976060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/conv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2977220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/padding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2978330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2979510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-09-07T06:13:54.2980780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:54.2982410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-09-07T06:13:54.2982950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-09-07T06:13:54.2984110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:54.2985380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-09-07T06:13:54.2986110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-09-07T06:13:54.2987240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-09-07T06:13:54.2988470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-09-07T06:13:54.2989550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:54.2990780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:54.2991850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:54.2993040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/pimpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:54.2994200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:54.2995790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.2996660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.2997730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.2998900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3000100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3001200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3002340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3003530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3004710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3005830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3007110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:54.3007960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:54.3009220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:54.3010490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:54.3011750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:54.3012830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:54.3014030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:54.3015230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:54.3016400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:54.3017520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:54.3018670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-09-07T06:13:54.3019750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3020920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3022100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3023260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3024360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/fold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3025500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3026810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3027950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3029210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3030260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3031360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/conv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3032520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/padding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3033710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3034700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-09-07T06:13:54.3035950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:54.3037320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/cloneable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-09-07T06:13:54.3038340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3039180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3040280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3041400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3042600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3043750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3044880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/vision.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3045960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3047090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3048210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3049360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/fold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3050500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3051740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3053110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/conv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3054270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/padding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3055440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3056610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-09-07T06:13:54.3057910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/python 2025-09-07T06:13:54.3058730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/python/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/python 2025-09-07T06:13:54.3059800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/enum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3060960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3062050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/all.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3063150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3064180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/arg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3065260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3066620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:54.3067350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/rmsprop.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:54.3068460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/lbfgs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:54.3069560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/optimizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:54.3070640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/adagrad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:54.3071810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/sgd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:54.3072930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/serialize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:54.3074060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/adamw.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:54.3075370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-09-07T06:13:54.3279330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-09-07T06:13:54.3281730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-09-07T06:13:54.3283030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-09-07T06:13:54.3284260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/adam.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-09-07T06:13:54.3631030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-09-07T06:13:54.3631810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize/archive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-09-07T06:13:54.3633480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize/input-archive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-09-07T06:13:54.3634970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize/output-archive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-09-07T06:13:54.3636370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-09-07T06:13:54.3637640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/torch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3639170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nativert 2025-09-07T06:13:54.3640300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nativert/ModelRunnerHandle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nativert 2025-09-07T06:13:54.3641660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3643030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/jit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3644520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2025-09-07T06:13:54.3645570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail/static.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2025-09-07T06:13:54.3647080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2025-09-07T06:13:54.3648380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3649910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/imethod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3652010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/ordered_dict.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3653070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3657610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3658990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/special.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3661010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/sparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3662610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3664200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/python.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3665840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3667730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:54.3668670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/example.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:54.3670320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader_options.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:54.3672140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:54.3673130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:54.3674880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/shared.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:54.3676270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:54.3677810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:54.3679670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:54.3681160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:54.3682640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-09-07T06:13:54.3684140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/worker_exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:54.3685650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:54.3687400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-09-07T06:13:54.3688400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-09-07T06:13:54.3689850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-09-07T06:13:54.3691330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail/queue.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-09-07T06:13:54.3692660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:54.3694400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-09-07T06:13:54.3695510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-09-07T06:13:54.3696840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms/stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-09-07T06:13:54.3698250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms/collate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-09-07T06:13:54.3699620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-09-07T06:13:54.3701000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-09-07T06:13:54.3702670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:54.3703540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:54.3705060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:54.3713610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:54.3715190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:54.3716690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:54.3718220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/random.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:54.3719660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-09-07T06:13:54.3721080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:54.3722510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:54.3724040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/iterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-09-07T06:13:54.3725810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-09-07T06:13:54.3726780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-09-07T06:13:54.3728270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-09-07T06:13:54.3729690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-09-07T06:13:54.3731090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/expanding_array.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-09-07T06:13:54.3732440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/MemoryFormat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.3734030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/StorageSharing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.3735820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-09-07T06:13:54.3736870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/stubs 2025-09-07T06:13:54.3737920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/stubs/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/stubs 2025-09-07T06:13:54.3739390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/combined_traceback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-09-07T06:13:54.3740760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-09-07T06:13:54.3741700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-09-07T06:13:54.3743200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone/nvtx_observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-09-07T06:13:54.3744550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone/itt_observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-09-07T06:13:54.3746060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-09-07T06:13:54.3747600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-09-07T06:13:54.3748550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-09-07T06:13:54.3749980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python/combined_traceback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-09-07T06:13:54.3751240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-09-07T06:13:54.3752580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/events.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-09-07T06:13:54.3753890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/kineto_shim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-09-07T06:13:54.3755200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/api.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-09-07T06:13:54.3756610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/kineto_client_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-09-07T06:13:54.3757950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-09-07T06:13:54.3759620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-09-07T06:13:54.3760490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration/vulkan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-09-07T06:13:54.3761820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration/observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-09-07T06:13:54.3763320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration/python_tracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-09-07T06:13:54.3764710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3765520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/unwinder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3766870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/dwarf_enums.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3768110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/unwind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3769430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/sections.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3770860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/unwind_error.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3772270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3773660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/debug_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3774850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/action.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3776340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/mem_file.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3777720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3779190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/fde.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3780320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/communicate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3781720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/lexer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3783100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/line_number_program.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3784530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3785700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/range_table.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-09-07T06:13:54.3786940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/containers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-09-07T06:13:54.3788180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/collection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-09-07T06:13:54.3789630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/perf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-09-07T06:13:54.3790870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/data_flow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-09-07T06:13:54.3792040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/perf-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-09-07T06:13:54.3793610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/tensor 2025-09-07T06:13:54.3794300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/tensor/python_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/tensor 2025-09-07T06:13:54.3795600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/PyInterpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.3796780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Dtype.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.3798370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-09-07T06:13:54.3799160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export/pt2_archive_constants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-09-07T06:13:54.3800500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-09-07T06:13:54.3801850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export/example_upgraders.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-09-07T06:13:54.3803080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export/upgrader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-09-07T06:13:54.3804250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.3805560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/python_dimname.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.3806890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/CudaIPCTypes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.3808250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/functorch 2025-09-07T06:13:54.3809140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functorch/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/functorch 2025-09-07T06:13:54.3810310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.3811730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/TypeInfo.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.3813110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/StorageMethods.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-09-07T06:13:54.3814360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/script.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-09-07T06:13:54.3815710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/library.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-09-07T06:13:54.3817290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/custom_class_detail.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-09-07T06:13:54.3818760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/custom_class.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-09-07T06:13:54.3820280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/extension.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-09-07T06:13:54.3821510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/nnpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-09-07T06:13:54.3823480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3824160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ClientInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3825480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/GenericTraceActivity.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3826670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/IActivityProfiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3827760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/Config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3828880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/TraceSpan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3829930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/LoggingAPI.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3831090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ITraceActivity.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3832260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ActivityProfilerInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3833470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ActivityTraceInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3834570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/output_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3835850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ThreadUtil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3837000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ActivityType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3838280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/libkineto.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3839470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/time_since_epoch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3840490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ILoggerObserver.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3841720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/AbstractConfig.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-09-07T06:13:54.3842870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/xnnpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-09-07T06:13:54.3845220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/libshm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-09-07T06:13:54.3846110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-09-07T06:13:54.3847300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/qnnpack_func.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-09-07T06:13:54.3848700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai 2025-09-07T06:13:54.3849410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/kai_common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai 2025-09-07T06:13:54.3850790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels 2025-09-07T06:13:54.3851790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul 2025-09-07T06:13:54.3852830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3853880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi4cxp8x4_8x8x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3855470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_8x8x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3856800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1vlx8_qsi4cxp4vlx8_1vlx4vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3858190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp4x8_1x4x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3859360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_4x4x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3860550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4vlx4_1x4vl_sme2_sdot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3861770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp_qsi4cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3863100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3864310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_8x4x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3865580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp8x8_1x8x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3866760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x4_16x4x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3867950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_4x8x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3869280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3870230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3871490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3872600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp_qsi4cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3873830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3875090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-09-07T06:13:54.3876170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-09-07T06:13:54.3877040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-09-07T06:13:54.3878300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-09-07T06:13:54.3879530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p16x1biasf16_6x16x8_neon_mla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-09-07T06:13:54.3880690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-09-07T06:13:54.3881580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-09-07T06:13:54.3882820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-09-07T06:13:54.3883940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-09-07T06:13:54.3885130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-09-07T06:13:54.3886380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:54.3887360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:54.3888590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:54.3889720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p_qsi4c32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:54.3890990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:54.3892270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:54.3893470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:54.3894600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:54.3895880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-09-07T06:13:54.3897080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-09-07T06:13:54.3898040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-09-07T06:13:54.3899330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-09-07T06:13:54.3900360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p_qai4c32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-09-07T06:13:54.3901650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3902480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3903670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3904880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3905980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3907110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3908330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3909520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3910750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3912060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3913230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3914480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3915610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3916860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3918090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3919160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3920460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3921580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3922850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3924050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3925280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3926470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3927590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3928760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3929980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3931290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32p_qau4c32s0s1_f32_f32_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3932380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3933700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3935000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3936320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3937310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3938580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3939770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3941020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3942200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3943300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3944480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3945820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3946960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3948070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3949200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3950490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-09-07T06:13:54.3951920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:54.3952930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp_qsi4c32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:54.3954260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:54.3955460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:54.3956760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:54.3958070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:54.3959180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:54.3960510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:54.3961670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:54.3962890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:54.3964120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:54.3965330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:54.3966590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-09-07T06:13:54.3967980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-09-07T06:13:54.3968900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-09-07T06:13:54.3970220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-09-07T06:13:54.3971330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-09-07T06:13:54.3972710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-09-07T06:13:54.3974290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p_qsi8cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-09-07T06:13:54.3975440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-09-07T06:13:54.3976390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-09-07T06:13:54.3977770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-09-07T06:13:54.3979030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-09-07T06:13:54.3980310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-09-07T06:13:54.3981720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp_qsi8cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-09-07T06:13:54.3983440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-09-07T06:13:54.3984180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-09-07T06:13:54.3985420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-09-07T06:13:54.3987220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp_qsi8cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-09-07T06:13:54.3988160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-09-07T06:13:54.3989740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-09-07T06:13:54.3990770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-09-07T06:13:54.3991780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-09-07T06:13:54.3993020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-09-07T06:13:54.3994270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p1x4_bf16p12x4b_1x36_neon_dot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-09-07T06:13:54.3995670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-09-07T06:13:54.3996680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-09-07T06:13:54.3997910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p_qai4c32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-09-07T06:13:54.3999100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-09-07T06:13:54.4000370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-09-07T06:13:54.4001250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-09-07T06:13:54.4002500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-09-07T06:13:54.4003610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-09-07T06:13:54.4004550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p_f32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-09-07T06:13:54.4005830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-09-07T06:13:54.4007090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-09-07T06:13:54.4008010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-09-07T06:13:54.4009140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p_f16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-09-07T06:13:54.4010410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-09-07T06:13:54.4011310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p_qsi8cxpsb_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-09-07T06:13:54.4012710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-09-07T06:13:54.4013870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-09-07T06:13:54.4014950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p_f16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-09-07T06:13:54.4016250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-09-07T06:13:54.4017410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-09-07T06:13:54.4018490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p_bf16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-09-07T06:13:54.4019960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-09-07T06:13:54.4021180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-09-07T06:13:54.4022100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p_f32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-09-07T06:13:54.4023470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-09-07T06:13:54.4024290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pthreadpool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-09-07T06:13:54.4026370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/clog.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-09-07T06:13:54.4027210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/omp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-09-07T06:13:54.4029620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4030150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Formatting.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4031420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NestedTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4032450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CPUFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4033610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseMPSFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4034700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/LegacyBatchedFallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4035790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CollapseDims.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4037040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4038100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MetaFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4039130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4040330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorOptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4041530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DeviceAccelerator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4042610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4043820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MemoryOverlap.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4045030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorSubclassLikeUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4046160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/LegacyVmapMode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4047240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/InitialTensorOptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4048410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Version.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4049480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DLConvertor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4050590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Device.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4051720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/FuncTorchTLS.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4053770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4054250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Dict_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4055400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Formatting.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4056510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/TensorBody.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4059420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/GeneratorForPrivateuseone.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4060480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-09-07T06:13:54.4061180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration/adaption.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-09-07T06:13:54.4062430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration/op_allowlist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-09-07T06:13:54.4063660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration/op_registration.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-09-07T06:13:54.4064930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration/infer_schema.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-09-07T06:13:54.4066050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/jit_type_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4067510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/typeid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4068430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/rref_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4073690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Range.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4074110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/interned_strings_class.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4074460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/operator_name.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4074890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4075250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/symbol.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4075590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Backtrace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4076660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/TransformationHelper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4077800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/blob.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4078980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/function_schema.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4080350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/type_factory.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4081690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-09-07T06:13:54.4082470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/OperatorOptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-09-07T06:13:54.4083670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/RegistrationHandleRAII.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-09-07T06:13:54.4084790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/ObservedOperators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-09-07T06:13:54.4086020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/DispatchKeyExtractor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-09-07T06:13:54.4087140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/Dispatcher.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-09-07T06:13:54.4088440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/CppSignature.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-09-07T06:13:54.4089550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/OperatorEntry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-09-07T06:13:54.4090640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/MT19937RNGEngine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4091760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ivalue_to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4093100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/aten_interned_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4094380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dynamic_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4095540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/class_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4096750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/LegacyTypeDispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4097900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/function_schema_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4099090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/NestedIntSymNodeImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4100190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/qualified_name.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4101340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/UndefinedTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4102460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/NamedTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4103570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Scalar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4104760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/CachingHostAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4106010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/functional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4107260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/DeprecatedTypeProperties.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4108260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/interned_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4109340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/List.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4110470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ATenOpList.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4111580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Dict.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4112820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/type_ptr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4113970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/grad_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4115140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/DistributionsHelper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4116250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/VariableHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4117400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/CheckMemoryFormat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4118520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ScalarType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4119640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Array.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4120700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ATen_fwd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4121830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4122950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ATenGeneral.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4124160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/custom_class.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4125310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/IListRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4126530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/UnsafeFromTH.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4127740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/PythonOpRegistrationTrampoline.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4128890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/TensorBase.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4130220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ATen_pch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4131370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/QuantizerBase.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4132590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/enum_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4133640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/alias_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4134820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/List_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4135960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/TorchDispatchUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4137000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/enum_tag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4138150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/jit_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4139700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/IListRef_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4140750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ivalue.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4142120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Dimname.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4143230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Vitals.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4144360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/PythonFallbackKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4145820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-09-07T06:13:54.4146570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-09-07T06:13:54.4147380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-09-07T06:13:54.4148710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl/boxing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-09-07T06:13:54.4149910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl/test_helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-09-07T06:13:54.4151090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-09-07T06:13:54.4152360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-09-07T06:13:54.4153460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/KernelFunction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-09-07T06:13:54.4154540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/OperatorKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-09-07T06:13:54.4155720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/KernelFunction_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-09-07T06:13:54.4156840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/BoxedKernel_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-09-07T06:13:54.4158070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/BoxedKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-09-07T06:13:54.4159190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/builtin_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4160380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/DimVector.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4161560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Reduction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4162690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4163790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4165110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4166190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/PhiloxRNGEngine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4167320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/TensorAccessor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4168450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ivalue_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4169990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Variadic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-09-07T06:13:54.4171260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4172430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/jiterator_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4173590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Operators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4175000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CPUFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4176790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-09-07T06:13:54.4177380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSProfiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-09-07T06:13:54.4178660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/EmptyTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-09-07T06:13:54.4179720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-09-07T06:13:54.4181030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSGuardImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-09-07T06:13:54.4182080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-09-07T06:13:54.4183190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSEvent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-09-07T06:13:54.4184310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSDevice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-09-07T06:13:54.4185480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSStream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-09-07T06:13:54.4186600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/IndexKernels.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-09-07T06:13:54.4187920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSAllocatorInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-09-07T06:13:54.4188990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSGeneratorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-09-07T06:13:54.4191210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4191620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/CompositeRandomAccessor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4193000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/MathBitsFallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4193880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorTransformations.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4194930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ComplexHelper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4196060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ConvUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4197300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Normalization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4198440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ReductionType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4199490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Repeat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4200670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/layer_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4201820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/GridSampler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4202950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TriangularOpsUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4204060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/UnfoldBackward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4205090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4206230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Unfold3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4207330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Fill.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4208650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse 2025-09-07T06:13:54.4209570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized 2025-09-07T06:13:54.4210430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-09-07T06:13:54.4211230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-09-07T06:13:54.4212370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-09-07T06:13:54.4213420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-09-07T06:13:54.4214450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/LinearAlgebra.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4215650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/RangeFactories.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4216730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/RNN.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4217880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/IndexKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4218980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Pool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4220070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/RangeUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4221190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Cross.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4222330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/im2col.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4223510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TransposeType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4224580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/DispatchStub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4225710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Unfold2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4226860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4228040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/FunctionOfAMatrixUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4229520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-09-07T06:13:54.4230360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/MetalShaderLibrary.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-09-07T06:13:54.4232150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/kernels 2025-09-07T06:13:54.4232950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels/GridSampler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/kernels 2025-09-07T06:13:54.4234160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels/UpSample.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/kernels 2025-09-07T06:13:54.4235350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels/Pooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/kernels 2025-09-07T06:13:54.4236760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-09-07T06:13:54.4237570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-09-07T06:13:54.4238910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-09-07T06:13:54.4240080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/BinaryKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-09-07T06:13:54.4241300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-09-07T06:13:54.4242540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-09-07T06:13:54.4243750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/MultiTensorApply.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-09-07T06:13:54.4244920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/TensorFactory.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-09-07T06:13:54.4246110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/MPSGraphSonomaOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-09-07T06:13:54.4247370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/MPSGraphVenturaOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-09-07T06:13:54.4248550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/MPSGraphSequoiaOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-09-07T06:13:54.4249660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/OperationUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-09-07T06:13:54.4251020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/Copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-09-07T06:13:54.4252190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Distributions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4253530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/MaxPooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4254690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Gelu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4255940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SparseTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4257030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/CPUFallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4258300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-09-07T06:13:54.4259100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalConvParams.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-09-07T06:13:54.4260350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalTensorImplStorage.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-09-07T06:13:54.4261510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-09-07T06:13:54.4262570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalContext.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-09-07T06:13:54.4263760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-09-07T06:13:54.4264870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalNeuronType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-09-07T06:13:54.4266040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalShaders.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-09-07T06:13:54.4268060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:54.4268600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:54.4269990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSImage+Tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:54.4271450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn/tests 2025-09-07T06:13:54.4272270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests/MetalOpTestRunner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn/tests 2025-09-07T06:13:54.4274650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests/MPSCNNTests.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn/tests 2025-09-07T06:13:54.4275490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNClampOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:54.4275950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:54.4276940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNNeuronOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:54.4278150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNConvOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:54.4279280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:54.4280480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSImageUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:54.4281620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSImageWrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-09-07T06:13:54.4282910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/ops 2025-09-07T06:13:54.4283710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops/MetalCopy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/ops 2025-09-07T06:13:54.4285020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops/MetalConvolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/ops 2025-09-07T06:13:54.4286190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalPrepackOpContext.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-09-07T06:13:54.4287440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalCommandBuffer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-09-07T06:13:54.4288500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalDevice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-09-07T06:13:54.4289990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4290670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/IsContiguous.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4291790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/zmath.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4293010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/ReduceUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4294260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/mixed_data_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4295570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4296570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4297660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/int_mm_kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4298890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/SampledAddmmKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4300010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/Gelu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4301230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/moments_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4302370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/ChannelShuffleKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4303630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/SpmmReduceKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4304810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/GridSamplerKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4306070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/SerialStackImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4307160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/Intrinsics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4308290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/LogAddExp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4309540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/WeightNormKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4310640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/MaxUnpoolKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4311750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/SoftmaxKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4312920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/AtomicAddFloat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4314010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/Elu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4315180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/Reduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4316380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/CatKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4317630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/StackKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4318850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4319980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/DepthwiseConvKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4321100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/DistributionTemplates.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4322470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/PixelShuffleKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4323650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4325170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/IndexKernelUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4326150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/avx_mathfun.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4327460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/CopyKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4328540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/Loops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-09-07T06:13:54.4329710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/FusedAdagrad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4331010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/GridSamplerUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4332040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TopKImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4333240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorAdvancedIndexingUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4334500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/DilatedConvolutionUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4335640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ForeachUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4336850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SobolEngineOpsUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4338450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ReduceAllOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4339900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4340730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/CompositeRandomAccessor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4341810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Normalization.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4343450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/SortingRadixSelect.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4344520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/MiscUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4345660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/block_reduce.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4346850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/GridSampler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4348010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/TensorModeKernel.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4349080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/MemoryAccess.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4350590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/CuFFTPlanCache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4351980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/RowwiseScaledMM.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4353130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/CUDAJitLoops.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4354310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/im2col.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4355470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/cutlass_common.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4356580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ScanKernels.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4357790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/IndexKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4358850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/SortUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4359990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ScaledGroupMM.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4361140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/DeviceSqrt.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4362270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Distributions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4363430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/UpSample.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4364480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Randperm.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4365550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/vol2col.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4366640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Pow.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4367810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/BinaryInternal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4368940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/reduction_template.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4370170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/GroupMM.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4371350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adamw_impl.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4372480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Math.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4374270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/CuFFTUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4375320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ReduceOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4376490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/SortingCommon.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4377540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/TensorTopK.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4378700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ScanUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4379960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/TensorModeKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4381010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/MultiTensorApply.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4382200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adagrad_impl.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4383370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4384420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/thread_constants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4385470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Resize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4386640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adagrad_utils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4387760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Sorting.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4388950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4390080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adam_utils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4391180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/GroupMMCommon.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4392250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4393400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/JitLoops.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4394540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/KernelUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4395630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ForeachFunctors.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4396860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4398010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Loops.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4399090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Sort.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4400270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/UniqueCub.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4401370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/CUDALoops.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4402830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/DistributionTemplates.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4404060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/GridSampler.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4405200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/PersistentSoftmax.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4406500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Reduce.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4407830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/IndexKernelUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4408930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/jit_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4410110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4411170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/SortStable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4412270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/LaunchUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4413410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adam_impl.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4414550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-09-07T06:13:54.4415920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-09-07T06:13:54.4416630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/ConvUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-09-07T06:13:54.4417790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/AffineQuantizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-09-07T06:13:54.4418890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/IndexKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-09-07T06:13:54.4420040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/library.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-09-07T06:13:54.4421830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4422290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/XnnpackUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4423450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/fbgemm_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4424590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/init_qnnpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4425720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/ACLUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4426920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/conv_serialization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4428100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/qlinear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4429520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4430490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/qembeddingbag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4431630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/QnnpackUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4432920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4434010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/OnednnUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4435160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/QuantUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4436310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/RuyUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4437470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/qconv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4438640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/BinaryOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4439790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/QuantizedOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-09-07T06:13:54.4440950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/AffineQuantizerBase.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-09-07T06:13:54.4442140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/FakeQuantAffine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-09-07T06:13:54.4443420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/PackedParams.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-09-07T06:13:54.4444440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/Copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-09-07T06:13:54.4446090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cudnn 2025-09-07T06:13:54.4446880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cudnn/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cudnn 2025-09-07T06:13:54.4448240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Lerp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4449540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ReduceOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4450750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorAdvancedIndexing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4451970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/UnaryOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4453130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SortingUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4454370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/MathBitFallThroughLists.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4455590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/StridedRandomAccessor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4456720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorShape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4457970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/IndexingUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4459060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/UpSample.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4460710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/utils 2025-09-07T06:13:54.4461390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils/ParamUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/utils 2025-09-07T06:13:54.4462650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils/ParamsHash.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/utils 2025-09-07T06:13:54.4463820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils/Factory.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/utils 2025-09-07T06:13:54.4465000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ResizeCommon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4466270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SharedReduceOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4467410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Resize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4468570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SpectralOpsUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4469780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Sorting.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4471010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/NonSymbolicBC.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4472110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorProperties.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4473410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers 2025-09-07T06:13:54.4474190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/sdp_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers 2025-09-07T06:13:54.4475460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers 2025-09-07T06:13:54.4476820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda 2025-09-07T06:13:54.4477870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/sdp_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda 2025-09-07T06:13:54.4479010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-09-07T06:13:54.4479870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-09-07T06:13:54.4480800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-09-07T06:13:54.4482690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-09-07T06:13:54.4484010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-09-07T06:13:54.4485430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:54.4486090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:54.4487280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:54.4488540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:54.4489960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:54.4491560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:54.4492700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:54.4493960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-09-07T06:13:54.4495340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-09-07T06:13:54.4496250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-09-07T06:13:54.4497440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-09-07T06:13:54.4498640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-09-07T06:13:54.4499860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-09-07T06:13:54.4501260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-09-07T06:13:54.4502850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-09-07T06:13:54.4504090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-09-07T06:13:54.4504920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-09-07T06:13:54.4506210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:54.4507130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:54.4508450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:54.4510030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:54.4511340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:54.4512590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:54.4513830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:54.4515030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-09-07T06:13:54.4516830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-09-07T06:13:54.4518310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/flash_attn 2025-09-07T06:13:54.4519100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/flash_attn 2025-09-07T06:13:54.4520320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/flash_attn 2025-09-07T06:13:54.4521570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/sdp_utils_cpp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers 2025-09-07T06:13:54.4523180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip 2025-09-07T06:13:54.4523960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/aotriton_versions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip 2025-09-07T06:13:54.4525360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/gemm_kernel_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip 2025-09-07T06:13:54.4526510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/aotriton_adapter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip 2025-09-07T06:13:54.4527850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn 2025-09-07T06:13:54.4528740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-09-07T06:13:54.4529530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-09-07T06:13:54.4530790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn 2025-09-07T06:13:54.4531910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/BucketizationUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4532970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/vol2col.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4534110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/LossMulti.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4535250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/NonEmptyUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4536420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorDimApply.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4537600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-09-07T06:13:54.4538340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/ck_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-09-07T06:13:54.4539440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/ck_bgemm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-09-07T06:13:54.4540640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/ck_gemm_template.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-09-07T06:13:54.4541970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip/bgemm_kernels 2025-09-07T06:13:54.4542780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip/bgemm_kernels 2025-09-07T06:13:54.4543900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip/bgemm_kernels 2025-09-07T06:13:54.4544970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/ck_gemm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-09-07T06:13:54.4546120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/verbose_wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4547300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/AdaptivePooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4548630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mtia 2025-09-07T06:13:54.4549310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mtia/EmptyTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mtia 2025-09-07T06:13:54.4550470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ConvolutionMM3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4551500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/group_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4552670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Histogram.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4553850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/kleidiai 2025-09-07T06:13:54.4554580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai/kai_pack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/kleidiai 2025-09-07T06:13:54.4555780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai/kai_ukernel_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/kleidiai 2025-09-07T06:13:54.4556870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai/kai_kernels.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/kleidiai 2025-09-07T06:13:54.4558000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4559110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4561230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/FusedAdam.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4562210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/GroupedMMUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4563350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ScatterGatherChecks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4564540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/CPUBlas.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4565680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/CompositeRandomAccessorCommon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4566790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/BatchLinearAlgebra.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4567910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/AmpKernels.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4569060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/DistributionTemplates.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4570330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorIterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4571450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorConversions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4572760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-09-07T06:13:54.4573480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested/NestedTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-09-07T06:13:54.4574720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested/NestedTensorTransformerUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-09-07T06:13:54.4575830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested/NestedTensorMath.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-09-07T06:13:54.4576970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested/NestedTensorBinaryOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-09-07T06:13:54.4578260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-09-07T06:13:54.4579340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/FractionalMaxPooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4580540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ReduceOpsUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4581820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorFactories.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4583160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn 2025-09-07T06:13:54.4583960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu 2025-09-07T06:13:54.4584750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/FusionUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu 2025-09-07T06:13:54.4585880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/qlinear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu 2025-09-07T06:13:54.4587260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-09-07T06:13:54.4587960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-09-07T06:13:54.4589140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/Attr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-09-07T06:13:54.4590380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-09-07T06:13:54.4591580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-09-07T06:13:54.4592880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-09-07T06:13:54.4593990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-09-07T06:13:54.4595100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/qconv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu 2025-09-07T06:13:54.4596200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/Conv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu 2025-09-07T06:13:54.4597340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/PointwiseOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4598490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/BinaryOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4599560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Pow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4600870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/EmbeddingBag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4601940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/im2col_shape_check.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4603000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SegmentReduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4604010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/FusedSGD.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4605180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Padding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4606350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorCompare.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4607540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/PixelShuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4608600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/LinearAlgebraUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4609780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TypeProperties.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4611050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4612220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/CanUse32BitIndexMath.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4613440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorIteratorDynamicCasting.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-09-07T06:13:54.4614490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ceil_div.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4615620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/EmptyTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4616990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NativeMetaFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4618260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/dlpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4619360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4620430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ThreadLocalPythonObjects.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4621690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/metal 2025-09-07T06:13:54.4622450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/metal/Context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/metal 2025-09-07T06:13:54.4623550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Backtrace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4624950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu 2025-09-07T06:13:54.4625630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu 2025-09-07T06:13:54.4626780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/FlushDenormal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu 2025-09-07T06:13:54.4627990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vml.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu 2025-09-07T06:13:54.4629460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-09-07T06:13:54.4630170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_quant.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-09-07T06:13:54.4631410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-09-07T06:13:54.4633030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-09-07T06:13:54.4633700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_convert.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-09-07T06:13:54.4634970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-09-07T06:13:54.4636250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-09-07T06:13:54.4637590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-09-07T06:13:54.4638890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-09-07T06:13:54.4640340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-09-07T06:13:54.4641560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-09-07T06:13:54.4643080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:54.4643730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:54.4644860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:54.4646060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:54.4647310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:54.4648440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_qint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:54.4649840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:54.4651120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:54.4652200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:54.4653580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:54.4654710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:54.4655890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:54.4657450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/zarch 2025-09-07T06:13:54.4658170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/zarch 2025-09-07T06:13:54.4659890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_convert.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:54.4661240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:54.4662030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:54.4663160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:54.4664260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:54.4665460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:54.4666640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:54.4667940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:54.4669230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:54.4670590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:54.4671830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:54.4673220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:54.4674280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:54.4675490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:54.4676820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-09-07T06:13:54.4677960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_int.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:54.4679370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-09-07T06:13:54.4680760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-09-07T06:13:54.4681940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_convert.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-09-07T06:13:54.4683110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/intrinsics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-09-07T06:13:54.4684400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/functional_bfloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-09-07T06:13:54.4685740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/functional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-09-07T06:13:54.4687240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:54.4688000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_int.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:54.4689610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_convert.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:54.4690680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:54.4696280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:54.4696920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_float8.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:54.4697350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:54.4697770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:54.4698170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:54.4699400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_qint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:54.4700220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:54.4701550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-09-07T06:13:54.4702860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:54.4703550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_bfloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:54.4704920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_qint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:54.4706280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:54.4707620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:54.4708840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_common_sve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:54.4709960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/sve_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:54.4711160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_int.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-09-07T06:13:54.4712390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_n.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-09-07T06:13:54.4713630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/functional_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-09-07T06:13:54.4714660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-09-07T06:13:54.4716140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseCsrTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4717520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TracerMode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4718740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/BlasBackend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4719880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Backend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4721200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/RegistrationDeclarations.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4727000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeImplicitAutogradFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4727690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/PTThreadPool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4728880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/OpaqueTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4729980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MapAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4731520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4732240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDADevice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4733420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4734490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDABlas.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4735640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAGeneratorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4736690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/AsmUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4737950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/cub-RadixSortPairs.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4739070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/Sleep.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4740230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/PinnedMemoryAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4741320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/DeviceUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4742370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/jiterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4743530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/cub_definitions.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4744770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDASparseDescriptors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4745970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/EmptyTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4747030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/ApplyGridUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4748280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/PeerToPeerAccess.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4749460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAEvent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4750540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/PhiloxUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4751740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAContext.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4752880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/Exceptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4754240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/ScanUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4755050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/NumericLimits.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4756330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDATensorMethods.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4757350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/cub.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4758590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAGraphsUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4759850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CachingHostAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4760960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDADataType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4762180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/cub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4763300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAContextLight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4764490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAGraph.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4765680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAApplyUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4767200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-09-07T06:13:54.4768140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/TensorInfo.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-09-07T06:13:54.4769080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/CUDAHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-09-07T06:13:54.4770260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/KernelUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-09-07T06:13:54.4771470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/IntegerDivider.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-09-07T06:13:54.4772540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/LazyNVRTC.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-09-07T06:13:54.4773760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-09-07T06:13:54.4775100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/DeviceThreadHandles.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-09-07T06:13:54.4776290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/OffsetCalculator.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-09-07T06:13:54.4777470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/IndexUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-09-07T06:13:54.4778590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/UnpackRaw.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-09-07T06:13:54.4779790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/ThrustAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4780900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/Atomic.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4782220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/llvm_jit_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4783290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDASparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4784400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/PhiloxCudaState.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4785620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/jiterator_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4787140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-09-07T06:13:54.4787790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/TunableOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-09-07T06:13:54.4788900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/StreamTimer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-09-07T06:13:54.4790190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/TunableGemm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-09-07T06:13:54.4791130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/GemmCommon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-09-07T06:13:54.4792520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/GemmHipblaslt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-09-07T06:13:54.4793750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/GemmRocblas.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-09-07T06:13:54.4794850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/Tunable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-09-07T06:13:54.4795970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/ATenCUDAGeneral.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4797790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDASparseBlas.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-09-07T06:13:54.4799370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/quantized 2025-09-07T06:13:54.4799970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized/QTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/quantized 2025-09-07T06:13:54.4801320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized/Quantizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/quantized 2025-09-07T06:13:54.4802450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/record_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4803760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/WrapDimUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4805190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-09-07T06:13:54.4805910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/XPUEvent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-09-07T06:13:54.4807120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/XPUDevice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-09-07T06:13:54.4808350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/PinnedMemoryAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-09-07T06:13:54.4809420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/CachingHostAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-09-07T06:13:54.4810770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu/detail 2025-09-07T06:13:54.4811490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/detail/XPUHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu/detail 2025-09-07T06:13:54.4812780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/XPUGeneratorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-09-07T06:13:54.4814110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/XPUContext.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-09-07T06:13:54.4815140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-09-07T06:13:54.4815830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-09-07T06:13:54.4816930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/Types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-09-07T06:13:54.4818070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/Descriptors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-09-07T06:13:54.4819270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/miopen-wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-09-07T06:13:54.4820350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/Exceptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-09-07T06:13:54.4821430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/Handle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-09-07T06:13:54.4822610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/RedispatchFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4834620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4835960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4837230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4838380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/div_rtn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4839500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ExpandUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4840860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MPSFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4842110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TypeDefault.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4843270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MPSFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4844390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/VmapGeneratedPlumbing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4854090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MethodOperators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4854990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CPUFixedAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4855940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NamedTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4857100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Scalar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4858270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorIteratorInternal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4859440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/LinalgBackend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4860680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/LegacyBatchedTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4861890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseCsrMPSFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4862920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ArrayRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4864100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SequenceNumber.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4865320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/FunctionalStorageImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4866310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ExpandBase.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4867500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Parallel-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4868650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MatrixRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4869890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CUDAFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4871380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeExplicitAutogradFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4872530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/FunctionalTensorWrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4873710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseCsrTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4874920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NumericUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4876030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ATen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4877180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorNames.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4878240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorMeta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4879360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorIndexing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4880660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Layout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4881820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4882900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SavedTensorHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4884840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-09-07T06:13:54.4885250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/PrivateUse1HooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-09-07T06:13:54.4886280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/AcceleratorHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-09-07T06:13:54.4887640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/CUDAHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-09-07T06:13:54.4888750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/MAIAHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-09-07T06:13:54.4889880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/XPUHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-09-07T06:13:54.4890980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/FunctionTraits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-09-07T06:13:54.4892170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/HIPHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-09-07T06:13:54.4893270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/MPSHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-09-07T06:13:54.4894470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/MTIAHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-09-07T06:13:54.4895460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/HPUHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-09-07T06:13:54.4896610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/IPUHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-09-07T06:13:54.4897820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4899030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/StorageUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4900250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/WrapDimUtilsMulti.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4901360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/code_template.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4902490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorOperators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4903570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CUDAFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4904940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip 2025-09-07T06:13:54.4905860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-09-07T06:13:54.4906650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-09-07T06:13:54.4907850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-09-07T06:13:54.4909020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-09-07T06:13:54.4910110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-09-07T06:13:54.4911140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ScalarType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4912330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpp_custom_type_hack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4913490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Dispatch_v2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4914970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Storage.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4916030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DeviceGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4917210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ParallelNative.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4918430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/OpMathType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4919830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/PythonTorchFunctionTLS.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4920620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/PadNd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4921760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseMPSFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4922840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4924210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CPUGeneratorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4925470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ParallelFuture.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4926620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4928140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseCsrMPSFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:54.4965480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4965910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_vulkan_available.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4967130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_atan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4968400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4969530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4970830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4971890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4973010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4974200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_ones.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4975400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4976440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4977660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4978920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4979840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4980930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4982070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4983200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4984310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4985510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4986550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4987870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/choose_qparams_optimized_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4989020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_static_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4990220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4991350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4992530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4993780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isfinite_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4994950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4996060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4997270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4998410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.4999480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vecdot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5000850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5002170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5003100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5004180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5005480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5006550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5007650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/result_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5008810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5009890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5011020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5012140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumulative_trapezoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5013330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5014460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5015560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5016870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5018050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5019150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5020280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5021430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_padded_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5022520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_embedding_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5023670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_ambiguous_defaults_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5024690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5025840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5026880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5028030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5029090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5030200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_propagate_xla_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5031400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5032650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5033680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5034860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5035940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5037020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_remove_batch_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5038230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/constant_pad_nd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5039520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5040520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5041550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lstm_mps_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5042690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5043870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5044970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5046090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5047140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_int_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5048260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5049390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inverse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5050710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5052210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5053720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5054490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5055800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5057010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_batch_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5058270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5059620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5060920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5062150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5063710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5065000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5066300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5067230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5068380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5069620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5070780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5072020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5073200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5074460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5075450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5076430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5077740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5078960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5080030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5081230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_lstm_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5082320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log10_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5083520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5084610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5085790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5086880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5088140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5089320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5090830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5091600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5092780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5093890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5095100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5096230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5097370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5098540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5099630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5100780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5101880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5103300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5104120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5105270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5106460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Long_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5107670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_max_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5108830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pdist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5109940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_ff_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5111050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_linear_prepack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5112160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5113260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5114460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_gru_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5115580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5116710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5117930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5119100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/absolute_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5120330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5121390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5122710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5123930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5125250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5126410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5127560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5128680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5129990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5131050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5132210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5133250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5134370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bilinear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5135560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5136760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5137780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eig_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5139040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5140220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5141290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5142450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5143590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5144790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concatenate_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5145930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5147070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5148220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5149360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5150570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5151690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_inference_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5152760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5153990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5155110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hstack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5156330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5157370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5158620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_differentiable_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5159820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5160950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5162030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_nonzero_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5163130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5164260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5165490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/positive_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5166620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5167800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5168880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Float_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5170200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5171260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5172310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5173460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5174660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5175920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5176870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5177980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5179070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5180440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5181550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mixed_dtypes_linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5182650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_max_seqlen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5183860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5185020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5186290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5187500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5188570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5189810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5190710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5191840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5193060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5194230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5195470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5196480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5197630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hann_window_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5198710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5199920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_add_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5201040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5202180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/coalesce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5203330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_backward_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5204470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5205670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5206830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5208070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5209340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5210460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5211820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5212780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5213940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5215390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5216300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5217430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5218560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5219760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5220900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5221990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5223150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5224380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5225460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5226630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5227740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5229010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5230070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5231180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5232540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5233430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5234630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5235700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chain_matmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5236810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5238000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5239010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5240260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5241340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5242390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5243600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5244800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_abs_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5245930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5247160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5248250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5249430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5250570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5251660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5252800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5254090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5255290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5256350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5257650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5258590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5259860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_sparse_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5260980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5262050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5263280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5264340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_same_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5265460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5266580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5267950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5268920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Double_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5270040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5271150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5272360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5273640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5274980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5275780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5277040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5278120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/and_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5279280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5280550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5281900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_reduce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5282660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5283890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5285250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5286330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5287380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5288460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vstack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5289580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5290760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5291880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_sum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5292940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5294290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5295460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5296640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5297690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5298860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5300160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5301210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5302340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5303540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5304840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5305780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5306810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5307910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5309040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5310200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5311320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5312480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5313610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5314920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5316210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_scalar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5317060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5318130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5319240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5320510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5321570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5322720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_reshape_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5323950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5325090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5326280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5327420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5328520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5329590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_floor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5330730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5331920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5333030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_sparse_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5334130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5335270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5336440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5337610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5338680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_view_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5339930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5341160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5342310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_check_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5343600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rot90_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5344450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5345590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5346680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5347710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/selu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5348850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5350120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5351490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5352500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5353650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5354780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5355830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5356960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5358080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5359170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5360260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5361320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5362380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5363570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5364730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5365870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5370740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5371280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5371740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5372100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5372530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5372990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5373740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5374960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5376000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5377030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5378150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5379200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5380570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5381760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5382930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5384020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_scramble.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5385240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5386380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftfreq_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5387500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5388650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmean_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5390130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5391240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5392350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5393640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5394730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5395910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5396950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5398300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5399320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5400370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5401470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5402530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5403770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5404900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5406060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5407160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5408360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5409620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5410830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_depthwise3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5412090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5413350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5414570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5415810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5417050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5418230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5419480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_full_precision_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5420680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5421790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5423000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5424220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5425330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_entropy_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5426590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5427770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5428860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5429950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5431200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5432360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5433550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5434630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5435780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5436900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5438080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5439220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5440260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5441410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5442540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5443730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5444830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5445930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5447270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5448180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5449260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_scalar_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5450370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5451520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5452790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5453920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5454940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5456220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svdvals_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5457310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/orgqr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5458550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5459630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5460760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/layer_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5462070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5463240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5464270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5465540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5466680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5467830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5468960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5470140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5471650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/record_stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5472550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5473700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5474810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5476000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5477110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5478480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5479250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5480390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isinf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5481490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5482680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5483900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_min_seqlen_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5485160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5486450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5487470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5488620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5489790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5490950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5492010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5493120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5494290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5495400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/allclose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5496690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5497850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nuclear_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5498860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5500090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5501270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5502380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pairwise_distance_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5503440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_to_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5504640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5505900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_lengths_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5507060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5508120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5509380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5510440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5511860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5512800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5513920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5515130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5516230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5517240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5518470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5519620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5520730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5521800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5523020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5524150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5525280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5526330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5527450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5528550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5529610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5530710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5531800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5532900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5534140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5535320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5536370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ldexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5537420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccosh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5538540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_rank.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5539620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_and_resize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5540740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5541800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5542890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5543980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5545060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5546170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5547220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5548370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5549630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5550760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5551800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5552900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5554070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5555220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5556300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5557550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5558620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5559730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_exp2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5560800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5562010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5563170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5564250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5565280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5566380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5567520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5568640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5569860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5570920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5572060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5573190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5574460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5575460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5576510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_chunk_cat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5577680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5578920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_distributed_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5580130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5581310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5582370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5583520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5584650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5585940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5587020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5588210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5589520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5590460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_gru_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5591590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5592790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5593890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5595220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5596260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5597340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vecdot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5598560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5599670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5600840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5602030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5603170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csr_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5604350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sinh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5605580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/moveaxis_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5606640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/positive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5607740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5608880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5610120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5611280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5612330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5613580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5614660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5615770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5616970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5618000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_propagate_xla_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5619130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5620360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5621460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_round_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5622540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5623700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_coalesced_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5624800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5625930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5627070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5628190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5629270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5630420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5631750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5632760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5633910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5634950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5636160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5637250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5638350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5639470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_gather_sparse_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5640700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5641850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5643380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5644510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5645450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5646390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5647590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5648660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5649700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5650870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5652120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5653280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_choose_qparams_per_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5654340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5655470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kl_div.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5656700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5658720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5659550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5660310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5661210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5662300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5663590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5664710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5665980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5667060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5668200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5669330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vsplit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5670430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5671650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5672810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5673910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5675110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5676170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/value_selecting_reduction_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5677320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5678370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log1p_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5679500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5680660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5681870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5682950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5684140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5685210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5686400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5687510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5688610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5689710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5690890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5692090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5693250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mixed_dtypes_linear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5694280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5695350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5696470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5697680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5698720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ctc_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5699770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_propagate_xla_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5700910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5702050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5703370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_except_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5704510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5705610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5706680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5707990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5708980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5710130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5711420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5712450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5713630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5714810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5715910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5717080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5718310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5719420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5720560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5721720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5722860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5723960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5725030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/deg2rad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5726150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5727280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5728480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5729530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5730670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_complex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5731790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5733010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5734080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5735290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5736370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5737480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5738660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5739770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5740820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/corrcoef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5741980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorsolve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5743320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5744350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaln_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5745640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5746580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5747730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5748950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5750070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_asin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5751080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5752170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5753460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5754450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5755560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cosh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5756710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5757830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5759040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5760090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5761420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5762670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5763980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5765240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5766600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5767760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5768990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5770260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5771570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5772830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5773920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5775060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5776340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5777490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5778560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5779730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5780850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5782020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cos_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5783090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5784210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/outer_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5785360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5786460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5787660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5788670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5789730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5795150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5796120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5797150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5798050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Short_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5798860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5799800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5800870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5801760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5802490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5803910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5804910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5805870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5806690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5807480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_scale_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5808310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5809410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5810610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mask_projection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5811690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5812820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_trilinear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5813980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5815150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5816290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5817410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5818680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5819760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5820960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5822190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5823300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5824400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5825550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5826670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5827770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5828960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5830150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_rank_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5831440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5832420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/output_nr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5833480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5834630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/not_equal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5835790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5836860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/meshgrid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5837930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5839110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_storage_offset_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5840290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5841440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5842540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5843610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5844870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5845940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5847130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5848340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5849490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5850720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5851810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/float_power_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5852990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5854160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5855290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5856400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5857520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5858690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5859790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5861100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5862270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5863330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5864550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5865770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5866880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5868060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5869110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5870410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5871430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_scale.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5872610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5873730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5874880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5875980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diff_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5877090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5878280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5879420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5880490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5881680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5882730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5883830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5885040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5886130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5887160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_storage_offset.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5888370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5889380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5890580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5891630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5892690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5893850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5894980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5896200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5897490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5898490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/and.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5899760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5900960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_sum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5902070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5903300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5904390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5905530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5906800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5907920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5909010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5910130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5911410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5912490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5913750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5915040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5916140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5917350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5918400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hann_window.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5919570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5920840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5921900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5922990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Int.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5924070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5925310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5926410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5927540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5928800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5929930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5931200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5932260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5933440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5934670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5935770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concatenate_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5936920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5938160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5939190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5940540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5941760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5942820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5943930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5945040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5946420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5947600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_mps_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5948610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5949830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5951100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5952420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5953400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5954410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5955570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5956780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_physical.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5957950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/square_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5959100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5960200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5961480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5962680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5963900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/margin_ranking_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5965020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_psi_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5966290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5967580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5968570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5969620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erfc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5970740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/selu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5971880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5973070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5974280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5975360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5976560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5977720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5979090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5980050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cov.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5981330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5982360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5983610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5984880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5985860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5986960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chain_matmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5988060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tile_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5989310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5990410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_reciprocal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5991490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5992650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5993770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_nonzero_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5994950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5996290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5997250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5998420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.5999810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6000890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6002090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_parallel_materialize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6003310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6004850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6005890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6006820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6008090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/int_repr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6008920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6010150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6011300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6012410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6013700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_mul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6014690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6015800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6016910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_int_mm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6018060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6019380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6020730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6021700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6022870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6024040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6025210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6026360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6027600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6028500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triplet_margin_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6029540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6030710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argwhere_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6031870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6032910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_frac.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6034050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/orgqr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6035170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6036380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_transpose_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6037510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6038560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6039660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6040810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6041910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6042910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6044110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6045180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6046370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6047520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6048550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6049650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6050710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_int_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6051850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6053080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6054140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6055360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6056440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6057540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6058760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6059800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6060890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6062040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6063080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6064110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_permuted_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6065380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6066530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6067640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6068790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6069830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6071060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6072230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6073340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6074360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6075630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6076750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6077820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6078890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6079980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6081180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6082350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6083610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_compressed_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6084550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6085720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6086740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hamming_window_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6087890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6088910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6090080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6091230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6092280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6093380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6094450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6095590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6096870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6097920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6099070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6100040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chunk_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6101330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6102460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6103570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6104600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6105830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6107030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6108070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6109220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6110220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6111410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6116520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_numel_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6117270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6118010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6118720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6119550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6120470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6121310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6122120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6122890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_numel_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6123860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6124770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6125840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6127020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6128340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6129520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6130780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6131950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6133130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6134450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6135420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6136510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6137530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6138640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6139930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6141150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spsolve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6142300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6143450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6144630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6145800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6146950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6148090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6149560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6150410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6151500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6152630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6153690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6154900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6156000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6157120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6158340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6159380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_compressed_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6160500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6161710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6162850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6163860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6165050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6166370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6167390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6168460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6169490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6170650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6171750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6172890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6173920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/not_equal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6175030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6176180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_exp2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6177460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6178450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6179550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6180690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6181850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6182920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6183980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6185130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6186260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6187340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_put.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6188490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6190270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multiply_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6191740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6192960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dim_arange_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6194330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6195580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6196850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6198100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6199120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6200220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6201390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6202480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6203700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6204790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6205910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnz_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6207010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6208150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6209200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slogdet_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6210460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6211490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6212670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6213730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log1p_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6214830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6216110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6217290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6218300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6219350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hspmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6220570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6221670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6222730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6223920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6225080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6226260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6227440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6228570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6229820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_shape_as_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6230960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6232200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6233280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6234430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6235510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6236860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6237760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6238850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6240040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_transpose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6241120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6242270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapdims_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6243380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6244450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6245610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6246680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6247700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6248860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6250000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_multigammaln_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6251100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6252150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6253390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6254430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6255630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6256660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6257760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6258950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6260220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6261340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6262370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6263470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_parallel_materialize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6264670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6265770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6266870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_circular_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6268090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6269170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6270290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6271400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frobenius_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6272530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6273620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6274720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6275900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6277000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6278090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6279230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lgamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6280250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6281400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6282490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6283590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6284650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_max_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6285770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6286920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6288010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6289180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6290240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6291370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rms_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6292490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6293790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6294820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6295880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/svd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6297030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6298310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6299350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6300490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_polygamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6301650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6302690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6303980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6305260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6306300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6307450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6308630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6309740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_leaf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6310850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6311970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6313220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_to_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6314270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_lengths_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6315360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6316430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6317570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6318740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6319760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6320930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slogdet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6322130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6323240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6324320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_scalar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6325450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lazy_clone.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6326570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6327780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6328920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6330180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_quantized_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6331330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_digamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6332450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6333520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6334760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6335920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6337010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6338180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_double_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6339300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6340510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6341670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6342760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6343870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6344990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6346050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6347150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensordot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6348370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6349410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6350590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6351540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6352750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6353870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6354900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6356140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6357210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6358240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6359340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6360400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6361560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6362670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6363760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6364850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_acos_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6365930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gradient_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6366980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6368070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/or_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6369190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6370350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6371410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6372510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6373640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6374840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6376000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6377090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6378130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_chunk_cat_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6379300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6380420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6381510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6382650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6383700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6384790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6385970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6386960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retains_grad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6388240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6389280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6390380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6391490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6392650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6393780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6395090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/output_nr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6396000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6397070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6398160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6399290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_alpha_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6400550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6401650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6402700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6403790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6405010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6406130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6407180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6408300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6409350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_except_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6410430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6411580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6412680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_stack_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6413850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6415230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6416140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6417130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6418230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6419310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6420370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/divide.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6421480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6422670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6423670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_neg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6424820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6425990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_resize_output_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6427080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6428170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_inverse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6429310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6430450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6431620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6432680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6433800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6434880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6436040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6437020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6438220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6439300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6440420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6441580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6442660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6443770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6444930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsr_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6446050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6447230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensor_split_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6448330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6449440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6450660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6451820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6453070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6454120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6455300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6456610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6457470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6458650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6459770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6460890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6461950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6463220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6464290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_scramble_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6465440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slogdet_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6466640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6467920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6469240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6470480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6471680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6473030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6474240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6475600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6476790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6478030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6479360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6480430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6481650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6482870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6484040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6485180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6486310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6487330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6488550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6489820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6490910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6492210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6493410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6494220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_full_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6495390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6496540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6497750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6498990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6500090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6501220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvalsh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6502350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6503540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6504620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6505730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isinf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6506840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_max.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6507940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6509130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6510420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6511500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6512650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6513730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6514970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6516080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6517200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6518340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6519610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6520710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6521790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6522840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_physical_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6523920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6525100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6526100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6527260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6528400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6529390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6530670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6531680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6532850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6533870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6535010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6536260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6537350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6538500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6539450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6540650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6541690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6542820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6543920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6544930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6546040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccosh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6547150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_reshape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6548240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_slogdet_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6549300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6550400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6551460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6552780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6553810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6554960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6555990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6557090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6558250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6559230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6560480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6561440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6562650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_scaled_dot_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6563730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_elemt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6564800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6565940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6567130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6568170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6569160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6570290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6571330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6572560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6573580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6574680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6575840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6576950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6578030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6579150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6580270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6581370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6582530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6583660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsr_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6584850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6585920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6586980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6588380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6589340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6590580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6591720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6592980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/instance_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6594110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6595230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6596350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6597500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6598610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geqrf_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6599680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6601100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6602260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6603450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_min_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6604540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmean.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6605660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6606870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6608080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6609290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6610410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6611520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6613060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6613750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6614860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6615960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6617110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6618340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6619510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6624880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6625450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scalar_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6625810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_bag_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6626190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6626530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6626900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6627270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6628300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6629350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6630500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6631630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6632700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6633930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6635070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6636210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6637440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6638490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6639710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6640820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6641940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6643140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6644230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_zero_points.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6645510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6646530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6647630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isclose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6648760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6649900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6651010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigvals_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6652190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6653530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_transpose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6654380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6655530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_euclidean_dist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6656630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6657690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6658770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_chunk_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6659870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_minimum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6661120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6662140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6663230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6664450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6665550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_maximum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6666640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6667890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hamming_window.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6669170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_dense_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6670350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6671450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6672660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6673830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6674950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6676180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6677310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6678380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6679700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6680780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6681920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6683110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6684150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6685240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapezoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6686460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6687510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6688600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6689720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6690890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6692020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6693220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6694220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6695530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6696560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dsplit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6697640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_vulkan_available_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6698740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_neg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6699900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6701000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rad2deg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6702070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6703150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6704240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6705400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6706720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6707980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6709000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6710110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6711340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_nd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6712600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6713830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6714820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/type_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6716010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6717150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6718370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6719410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6720510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6721830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6723050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6724050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6725170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorsolve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6726260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argwhere_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6727480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6728510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_neg_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6729770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6730860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_multi_head_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6732090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alpha_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6733270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6734400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6735440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stride_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6736590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6737930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6739030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6740080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6741140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6742350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6743450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_floor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6744560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6745640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6746720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6747940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6749010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6750080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stride.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6751240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6752410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6753440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6754630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_to_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6755750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6756980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6758180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6759220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6760340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6761420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6762680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6763750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6764820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clone_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6766040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6767190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6768300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6769400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_cpu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6770650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6771730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6772920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6774020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6775340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6776400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6777620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6778740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6779920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6781010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retain_grad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6782060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6783200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogramdd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6784480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6785560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6786610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanquantile_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6787820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6788830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6790190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/instance_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6791160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6792310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mixed_dtypes_linear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6793400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6794680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6795800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/refine_names_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6796970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_remove_batch_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6798250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6799310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6800680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6801650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6802890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6803960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6805250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6806430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6807660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6808670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chunk.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6809770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_async.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6810880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6811990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6813150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6814340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6815470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6816580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6817790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6818830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6819940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6821110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/absolute.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6822380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_async_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6823640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6825080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6826140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mT_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6827480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6828600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6830020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6831250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6832560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6834040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_ambiguous_defaults_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6835230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6836380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6837450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6838570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6839770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6841080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6842110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6843320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/record_stream_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6844410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/promote_types_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6845690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6846980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6848020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6848940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vecdot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6850370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6851380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6852600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6853710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6854960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6856100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6857260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6858330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6859460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6860510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6861640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6862760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6863770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6864910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6866180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6867400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6868430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6869480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6870590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6871590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6872680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6873810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6875050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6876080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6877140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/selu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6878260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6879390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6880370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_frac_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6881450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vander_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6882540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6883640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conv_depthwise2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6884700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_diagonal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6885710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6886830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alpha_dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6887900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6889090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6890320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6891310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adjoint_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6892440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6893650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6894660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6895720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6896900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6898020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6899070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6900170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6901310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_add_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6902390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_sinc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6903500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6904640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6905740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6906820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_maximum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6907960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_prod_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6909120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_reduced_precision_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6910180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaln_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6911270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_bag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6912390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6913470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6914590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6915730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6916770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6917940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_diagonal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6919040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6920060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6921150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6922330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6923460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6924590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6925760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6926760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6927870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6929020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6930180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_draw_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6931370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6932470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6933600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6934710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6935780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6936820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6938040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6939070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnz_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6940240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6941350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6942420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6943530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lstm_mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6944720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6945890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6947110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6948220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spsolve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6949320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6950430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6951430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6952790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6953880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_linear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6954920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6956160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6957210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6958340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6959490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6960560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6961800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6962910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6963940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6965170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6966330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6967390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6968610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6969780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6970940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6971980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6973140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6974450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6975460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pinverse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6976720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6977770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6979030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6980050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6981280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6982390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6983680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6984630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccosh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6985910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6987030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6988150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6989370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6990440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftfreq.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6991600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6992660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6993870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6995100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/not_equal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6996210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6997420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6998500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.6999550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7000830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7001860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7002970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7004110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7005220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_mode_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7006350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7007640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7008720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7009850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7011050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7012070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7013260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7014310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7015350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7016480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7017580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7018790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7019850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7020910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7022050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7023180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7024510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7025730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7026820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7027900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7029040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7030120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7031270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7032410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_functorch_fallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7033830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7034950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7036000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_clear_plan_cache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7037140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7038410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7039490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_input_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7040640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7041810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7042880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ger_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7044040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7045150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7046300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7047390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7048510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7049590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7050770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7051710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7052800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7053920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7055020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7056220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7057250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7058320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7059560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7061040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7061790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_quantized.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7062890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7064060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7065180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7066370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7067510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7068590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7069750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7070750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7071870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7072930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7073980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7075200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7076290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7077420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7078530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7079660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kl_div_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7080740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7081800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7082930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7083980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7085100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7086210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7087360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7088470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7089540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7090670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7091790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7092820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clone.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7094040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7095110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7096340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7097420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7098450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7099580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7100810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7101850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7102950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7104000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7105090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7106150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7107350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7108520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7109490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapdims.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7110780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7111940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7112980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7114070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7115260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7116470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7117500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7118510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7119710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7120810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7122100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7123110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7124170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7125270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7126440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7127640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7128720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7129740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7130830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7131900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foobar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7133050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7134230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7135260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7136370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_lstm_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7137440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7138680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7139700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7140790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7141870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_rowwise_prune_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7143020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_acos_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7144250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7145570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7146570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7147750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7148820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7149920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7151090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lerp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7152310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7153390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7154550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7155720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7156860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7158010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7159160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/movedim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7160320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7161330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccos.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7162550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7163570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7164790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7165850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7166860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dim_arange.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7168000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7169250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7170280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_nd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7171370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7172510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7173800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7175050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7176330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7177480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7178640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7179940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7181170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7182360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7183670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7184840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7186030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7187160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7188280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7189450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7190660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7191770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7192940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7193950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7195140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7196330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7197570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7198620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7199750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7200750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7201950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7203040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_for_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7204100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7205170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_power_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7206330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_transpose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7207460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7208700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7209690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7210790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Long.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7211930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7213120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7214230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hstack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7215270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7216470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7217600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7218710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7219870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7225570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7226120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7226520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7226910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7227250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/deg2rad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7227660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7228040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7228640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7229780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rename_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7231020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7232110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7233390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7234340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7235500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7236570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7237700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7238930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7240000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7241150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_rowwise_prune.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7242270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7243490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_depthwise_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7244600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7245710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7247010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7248100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7249260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7250310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7251430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7252740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7253910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7254990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7256170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7257280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7258420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7259460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7260640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7261780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7262840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7264090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7265090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanquantile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7266300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7267430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7268470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7269580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_select_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7270680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nested_to_padded_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7271820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7273000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7274390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7275170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7276260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7277420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7278630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7279910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7280970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7282340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7283160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7284240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7285350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7286630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_sparse_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7287690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_psi_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7288750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7289940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7291130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7292230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7293630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7294510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expm1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7295670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7296820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7297920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_trunc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7299170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7300280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7301400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_mul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7302450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bartlett_window_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7303690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7304990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7306130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7307210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7308440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7309790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7310680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7311730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7312840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7313940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7315080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cdist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7316230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_sampled_addmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7317280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7318530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7319650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7320780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7321930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7323100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7324330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7325380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_sum_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7326570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7327730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sinh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7328870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7330010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_functorch_fallback_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7331250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7332310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flipud_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7333480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7334860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7335710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_int_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7336990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7337980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7339130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7340370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7341460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7342570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7343670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Char_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7344930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7345980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_embed_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7347160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spdiags_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7348280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7349360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clone_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7350490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cov_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7351780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_scale_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7353020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7354110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7355370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7356230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7357360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7358400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_put.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7359610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7360740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7361990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7363050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7364160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7365270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log1p_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7366400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7367600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7368700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7369850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7371050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7372210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7373260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7374300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7375430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7376560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7377770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7378910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7380000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7381110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lerp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7382280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7383470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7384440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7385560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7386750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7387790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7388900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7390240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7391290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7392390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_rank_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7393570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_scale_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7395760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7396910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7398270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7399470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7400620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7401720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7403050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7404140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_padded_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7405260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7406660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7407560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/requires_grad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7408660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gradient.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7409800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7411050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7412160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7413520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7414440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7415620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7416720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7417890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7419110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7420310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7421420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7422500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_batch_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7423800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7424770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mH_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7425950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7427060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7428320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7429400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7430530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7431670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7432760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7434140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7435390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7436390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_chunk_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7437600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7438740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_channel_shuffle_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7439990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7440980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7442030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7443180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7444360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfinv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7445410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7446560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_and_resize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7447770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7448820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7450210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7451340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7452480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7453620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7454860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7456030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7457190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/true_divide_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7458520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7459450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7460570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7461670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7462800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7463960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7465110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7466200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_conj.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7467330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_gru_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7468610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7469640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erfc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7471080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7471970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7473210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7474210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7475480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7476540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7477740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7478860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7479970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7481190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7482360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7483640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7484700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7485710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7487030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7488080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inverse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7489240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_round_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7490370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7491400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7492690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7493650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/item.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7494960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7496120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7497120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7498220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_zero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7499300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7500570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7501640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7502810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7504010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7505240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7506360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7507590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7508690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eig_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7509760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7510910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7512040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7513100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7514190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7515360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7516530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7517770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7518870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7520030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7521190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7522330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7523470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_batch_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7524680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7525910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7527130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7528230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_power.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7529400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7530700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7532000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7533240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7534490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7535820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7537050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7538330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_power_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7539630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_with_sizes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7541140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7542530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7543880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7544940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7546150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_equal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7547280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7548510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7549590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7550780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7552010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7553100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7554180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_strided.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7555420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7556590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7557780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7558860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7560000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7561230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7562380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alpha_dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7563450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_abs_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7564610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7565790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kaiser_window.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7567110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7568240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7569330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7570440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7571570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/det_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7573120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7574410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7575710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7576820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7578210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7579200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7580450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_div_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7581430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prelu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7582720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7583770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7584930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_compress_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7586180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7587250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_ceil_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7588530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7589830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7590780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7591890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7593190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_put_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7594410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7595480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7596640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7597870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7598980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7600020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7601340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7602410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7603680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7604880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7606020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_stride_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7607190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isreal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7608300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7609480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spdiags_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7610590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_enum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7611840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7612950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_reduced_precision.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7614050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7615230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7616350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pin_memory_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7617500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7618820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7619910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7621000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7622180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7623190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/einsum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7624370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7625550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7626720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7627810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_conj.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7628990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7630180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7631200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7632390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multiply.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7633520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_stats_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7634770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7635820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7637060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7638310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7639350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapezoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7640540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prelu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7641750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7642940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_strides_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7644170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_zero_point.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7645170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_resize_output_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7646330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isfinite_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7647490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7648670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7649740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7651040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7652170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7653270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7654540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7655570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_backward_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7656770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7658050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7659200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7660650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7661640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7662800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7663900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7664990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7666240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7667340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7668450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7669650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7670720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7671900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7673010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7674230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_max_seqlen_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7675340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7676520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_double_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7677740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7678910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7679970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_ctc_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7681130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_neg_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7682340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7683570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nested_to_padded_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7684730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7685960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7687100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_conj_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7688530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7689380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7690440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7691520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_max.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7692780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7693790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7694960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7696230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7697510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7698620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7699630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7700880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7702200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7703020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7704290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7705380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_packed_sequence.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7706490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7707760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7708820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7709900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7711110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7712200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7713430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7714430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7715610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7716700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7717820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7718870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7719930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7721080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7722330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7723480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7724590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7725710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log10.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7726830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7728100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7729300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7730550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7731760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7732840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scalar_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7734100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7735140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_static.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7736320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7737430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7738550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_search_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7739700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7740840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7741960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7743050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7744090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7745280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_from_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7746570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7747470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qscheme_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7748750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7749750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_print.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7751130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7751980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7753250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_coalesced_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7754280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7755420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_init_dropout_state.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7756840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7757590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7758650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7759870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7761110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7762220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7763450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7764460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapaxes_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7765770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7766850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7768030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7769220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7770240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7771430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7772530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7773800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7774820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7775960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7777100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_available.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7778210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7779310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_zeros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7780540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7781700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7782930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7784070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7785120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7786350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7787510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7788620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7789790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mT_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7790840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7792160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7793100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_neg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7794270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_multi_dot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7795460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7796560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7797730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7799010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7800020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7801160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7802270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7803610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7804800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7805820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7807110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7808030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_sum_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7809040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7810130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7811210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ormqr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7812500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7813540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_nonzero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7814680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7815790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7816850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7818030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7819150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cos.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7820250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7821480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7822580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/subtract_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7823650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_compressed_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7824760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_ceil_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7825820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7826960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_choose_qparams_per_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7828000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_div_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7829220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7830320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7835020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7835780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7836120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapaxes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7836460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/divide_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7836890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7837200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7838660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7840050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7841080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7842230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7843410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7844570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7845630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7846780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7847880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7849010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7850360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7851520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/constant_pad_nd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7852540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7853770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7854830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_lstm_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7856010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7857030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7858220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7859210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_leaf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7860400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7861610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7862860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7864020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7865080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7866180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_conj_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7867540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7868740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7869990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_exp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7871250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/layer_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7872460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7873760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7874970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mask_projection_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7876260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7877480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7878720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7879920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7881160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7882200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7883400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7884670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7885840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvalsh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7887090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7888530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7889420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7890590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7891770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7892870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7893960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7895050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_complex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7896240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7897320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7898440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7899550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7900780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_check_errors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7902060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7903160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7904220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_min_seqlen_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7905410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7906610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7907850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7909070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7910200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7911530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lazy_clone_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7912530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7913680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7914750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/thnn_conv2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7915900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7917200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7918230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7919350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7920540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7921690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7922910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/contiguous_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7924070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7925260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_mask_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7926520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7927870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7928870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7930070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7931130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7932260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7933470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7934600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7935830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7937100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7938210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7939290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7940580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7941700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7942720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7943940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7944950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7946210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7947300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7948450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigvals_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7949580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_string_default_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7950750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csr_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7951840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7953060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7954150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pairwise_distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7955430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7956540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7957720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Long_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7958910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7960230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftshift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7961320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7962500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7963610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7964660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7965800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_transpose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7967080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7968340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7969160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7970330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7971400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7972600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7973710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/choose_qparams_optimized.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7974820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7975890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7977250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7978230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7979330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7982340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7982720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7983040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spdiags.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7983930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7985140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7986090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7987280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7988350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7989470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7990620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7991810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7992880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7993990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7995130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7996190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7997460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7998570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.7999610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8000710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_strides_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8001850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8002990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8004100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/value_selecting_reduction_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8005170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triplet_margin_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8006370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8007430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8008560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8009750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8010760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8011860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8012960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsinh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8014040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/type_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8015120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8016380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8017630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8018690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8019810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_safe_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8020930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_and_resize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8021950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8023060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logdet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8024120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8025260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8026360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8027470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8028520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8029560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8030640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8031690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8032740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8033930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8034900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8035980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8037070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8038320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8039370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8040490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_reshape_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8041660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8042760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8043840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8044950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8046110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8047320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8048410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8049510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8050620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_equal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8051670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_ones_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8052870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_static_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8053970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8055110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8056280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8057310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8058450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8059570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8060840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8061940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8063090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8064250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8065390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pinverse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8066400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_atan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8067680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8068660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8069950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8070990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8072030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8073290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8074780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8075460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8076520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8077580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8078960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8079940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_maximum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8081080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8082120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8083280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8084400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8085410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8086490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8087560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8088690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8089800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_resize_output_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8090890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8091970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8093070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8094210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8095260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_cpu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8096490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8097590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8098640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/block_diag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8099730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_offsets.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8100990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8102060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8103370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8104310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8105430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8106570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_depthwise_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8107710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8108890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8109960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geqrf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8111040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8112080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8113280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8114310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8115600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8116630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8117830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8118930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8120110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8121160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8122440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8123550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8124590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vander_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8125920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8127140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8128190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8129310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8130360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8131390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8132440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8133780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8134730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pinverse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8135930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8137230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8138290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8139460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8140670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8141800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8142840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8144020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8145270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8146230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8147280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8148450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8149670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8150700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8151810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8152920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8154340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8155300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8156600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8157740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8158880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8159960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_with_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8161030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8162060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8163160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8164320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8165470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_to_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8166750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8167930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8169020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8170070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gradient_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8171180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_compress.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8172510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8173620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8174760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8175870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_intlist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8176870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8177970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8178970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8180120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8181280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8182510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8183620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8184770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8185900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnz_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8187030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8188200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8189340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8190560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8191750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8192830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8193950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8194960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8196050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8197100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8198230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8199320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8200360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grouped_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8201430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8202520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8203640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8204700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8205790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_floor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8206970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8208130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8209130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8210260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8211410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8212500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8213540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8214690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8215790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8216870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8218020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8219060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8220280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_permuted_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8221530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8222850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8224110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8225580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8226890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8228130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8229630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8230530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8232900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8233250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8234180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logcumsumexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8235260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ravel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8236600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8237690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8238980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8240140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8241300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8242530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8243520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Short.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8244910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8245960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8247170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8248310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8249470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8250430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8251740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8252810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8253910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8255150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8256300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8257570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vsplit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8258760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8260010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8261090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8262160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_sum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8263330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8264390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8265600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8266830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8267970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/constant_pad_nd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8269130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8270160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8271270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/choose_qparams_optimized_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8272360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8273800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8274790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8275950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_version_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8277090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8278270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8279390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/corrcoef_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8280520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8281660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8282760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8283900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Half_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8285180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8286380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8287580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8288630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8289750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8290900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8292060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8293230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8294520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8295610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8296750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8297830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8299000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8300230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8301220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_circular.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8302450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8303590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8304670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_div.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8305920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8306970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8308100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8309310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8310380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8311490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8312630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8313830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8315000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8316100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8317210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8318310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsr_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8319370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/combinations_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8320430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8321550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8322850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8324010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8325290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8326370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8327480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8328660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8329760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8330920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8332100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8333180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8334230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8335390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8336490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_embed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8337810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8338740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8339890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8341010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8342080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8343270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8344320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8345520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8346540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pdist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8347820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8348880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8350020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_signed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8351250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8352270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8353390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8354400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8355520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_multi_dot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8356720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8357740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rad2deg_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8358790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eig_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8359870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8361060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8362080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8363210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8364350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8365440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8366490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8367610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8368660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cosh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8369870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8370870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rename_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8372100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8373190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8374210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8375380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8376490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8377530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_zerotensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8378590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8379730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8380800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_check_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8381890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8383020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8384020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8385150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8386280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8387460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8388520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_tensor_metadata_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8389670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8390890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8391960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8392970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_sequence_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8394050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8395280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8396330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8397500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8398650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8399600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8400810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8401810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8402890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8403970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8405090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8406120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8407260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8408380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8409440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8410580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8411660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8412700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8413810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8414930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8416060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8417140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_draw_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8418160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8419290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8420380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8421430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8422490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8423610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8424680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8425800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8426820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8427940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_multi_dot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8429150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8434010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8434480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8434820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8435210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8435570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8435930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_static_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8436800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8438020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8439200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8440220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8441330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8442420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8443590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8444610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8445650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8446780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8447990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8449060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8450040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8451220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8452320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8453400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8454550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_sum_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8455660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8457080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8458120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8459180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8460190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inner_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8461290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_scaled_dot_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8462400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_coalesced.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8463530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8464670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8465740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftfreq_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8466880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8468050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8469110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8470140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8471250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8472380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_addmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8473650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8475170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hinge_embedding_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8476370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8477490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8478850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8479820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8481050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_quantize_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8482120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8483210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_initialize_state_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8484460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8485540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8486880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8487920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8489050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8490120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_put_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8491410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8492530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8493600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8494690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sign_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8495840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8497020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8498110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_padded_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8499240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8500360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8501470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8502490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concatenate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8503580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8504710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_reduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8505810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigvals.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8506830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qscheme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8507960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8509020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/movedim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8510240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8511330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8512430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/thnn_conv2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8513780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8514960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8516110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8517290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_sampled_addmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8518470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8519630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8520730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8521950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8523040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8524140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8525250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_max_seqlen_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8526330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8527320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8528430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8529690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8530660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lgamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8531700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8532870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8534000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8535010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8536100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8537190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8538250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/svd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8539390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8540440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8541570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_zero_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8542610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8543800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8544920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8546000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8547190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8548240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8549280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_enum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8550520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8551570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8552640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_file.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8553760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_stack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8554800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8556020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8557080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/celu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8558180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8559230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8560410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8561430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8562600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8563790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummaxmin_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8565000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8566110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8567150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8568220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8569330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8570500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8571530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8572660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8573900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_add_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8575100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8576260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/real.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8577670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8578810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pairwise_distance_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8580020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8581230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8582440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8583640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8584880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8586100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8587400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8588750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8589870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8590930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8592130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8593390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8594430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8595470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8596810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8597970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8599040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8600140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8601210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8602480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8603610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8604700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_available_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8605770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8606970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8608210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8609450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8610420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_full_precision.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8611680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8612810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_min_seqlen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8613850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8614950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_det_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8616140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8617300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8618520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8619550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8620590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8621760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8622890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nested_to_padded_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8624190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8625210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8626430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8627470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isclose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8628690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_sparse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8629790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8630920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8632340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8633190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8634320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8635370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8636550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8637660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8638780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_lengths.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8639940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8640970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8642160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8643380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8644640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8645800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8646810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8647860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_along_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8649050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_from_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8650190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hsplit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8651290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8652400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8653530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8654540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8655620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8656790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8657870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/absolute_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8659050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8660180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8661280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8662370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8663620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8664830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8665890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8667130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8668250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8669470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8670500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8671590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_mask_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8672710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8673920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8674930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8676130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8677230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8678420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8679660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8680780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8681820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8682950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8684220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8685240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8686330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8687410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8688500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8689610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8690600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retain_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8691760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8692860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kron_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8694010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8695090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8696150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_no_update_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8697250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8698820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8699550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8700560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8701760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8702890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8703990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8704990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clip_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8706130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8707270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8708320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8709440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8710650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8711720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8712840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8714110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8715180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8716320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8717420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8718460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8719500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8720690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frobenius_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8721680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8722760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8723850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_pow_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8725000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8726040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8727160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_any_true.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8728390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8729520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8730550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8731710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8732790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8734010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8735190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8736360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8737540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8738680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8739960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8741050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8742160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8743210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8744250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_safe_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8745490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8746680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8747820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8749010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8750090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8751170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/numpy_T.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8752490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8753500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8754710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8755870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8756970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/float_power.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8758120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8759360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8760460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8761460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rot90.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8762640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8763930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8764910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8766010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8767200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8768330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapaxes_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8769630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8770570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8771750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8773000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8774140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sign.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8775270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8776320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8777360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_blob.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8778600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8779780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8780910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8782040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8783210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8784310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8785570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8786600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8787810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8788830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8790100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8791200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8792270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8793430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8794580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8795690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8796760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8798020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8799130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8800350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_compute_linear_combination_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8801560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8802700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8803870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8805140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8806120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8807140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8808300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8809360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8810570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8811690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8812980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8814020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_diagonal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8815210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8816380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8817500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8818730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8819860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8821250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8822080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8823290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8824370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8825460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8826640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8827780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/value_selecting_reduction_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8828770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unpack_dual.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8829890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8831060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8832130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csc_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8833300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8834450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8835550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8836770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_numel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8838020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svdvals_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8839140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8840230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8841320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8842500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8843560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8844680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8845790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8847170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8848170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8849280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8850420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8851590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8852770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8857870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8862610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8866840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8874460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8880920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_power_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8884350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8889700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8890670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccos_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8893920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8899230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8901510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8907180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_is_acceptable_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8908230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8910090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8916080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8917400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/deg2rad_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8923930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8924690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8925920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8932220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8933310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_mul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8940240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8941040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8947840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/moveaxis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8948670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8949710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8956210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8957100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8963680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8964760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8971520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8972440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8973650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8979580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8980570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8987290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8988500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8994910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8996080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.8996890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9002710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9004110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9010540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9011280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_ctc_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9013760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9019610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9020920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_jagged_to_padded_dense_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9027030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9028500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9035280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9036170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9037210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9043110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9043860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9050840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9051580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9052630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9058690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9059990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9066460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9067610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9074440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9075190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9076390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ger_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9099470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9113050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9113860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9114990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9116500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/result_type_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9117760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9123850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ormqr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9125880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9130260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9133160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9134190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_inverse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9138140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9141220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9143560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9148400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9150150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9156510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9157670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9165260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_addmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9166050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlogy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9167280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grouped_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9173620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9174490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_floating_point_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9181170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9182470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_pow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9183920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9189860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9190980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9197100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9199530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9204470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9205660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9207200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9212390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9217440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9221580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9225450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9226460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9231140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rad2deg_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9234090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9239420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9240390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/refine_names.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9243860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cond_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9249680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9252480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9256620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9257660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensordot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9261780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9264680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_and_nested_example.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9269810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9270690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sqrt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9274110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9278970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9281770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_elemt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9282780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9288450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9291930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9295910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9296640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9301260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9305180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9308830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_stats_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9309670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9314240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9317870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_tensor_metadata.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9322430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9323130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9326820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9331520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9335310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9339500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9340450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9344190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9348380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9351660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9352380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9357750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9359660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/istft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9366050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9366790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9373450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9375050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_stack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9380170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fliplr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9381350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9383370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9389170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9389870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9396720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9397620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9405000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9406120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9407100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9416730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9417240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_pinned.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9417590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9421880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9422720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9429140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9430550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9436220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9437690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9439520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9446140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9453360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9507600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9507940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9508290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9508790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9509120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9509550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9509960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9512180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9514930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9517370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9524060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9527800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagflat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9531180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9536290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9537090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9540630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9545530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9548680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9553620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9554480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9557440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9562690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9564580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9565560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chalf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9572620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9573440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svdvals.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9580380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9581280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9587880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9588660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9589880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9595760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9596780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9603620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9604420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9611930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9612700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9613790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9620020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9620910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9627390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9628690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9629850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9637210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9637960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9645340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9646350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9652890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9653880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_nll_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9654950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9660810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ger.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9661770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conv_depthwise2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9666690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9675140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9676130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9699990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9700860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9701840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/imag_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9710090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9711220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Float_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9712460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9713570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9714870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9715910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9717280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9718330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9719900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9721200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9726170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9727070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9732440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9734350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9735520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9740290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9741370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9742980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9749940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9750830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanquantile_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9757800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dep_token_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9758840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9765320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_elemt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9766410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9767590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_round_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9773480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9774300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9781060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9782190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_neg_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9783430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9789120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9789910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9797360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9798120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9805120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9806170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9807210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaincc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9813100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9813730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9820750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9821940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9829230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9829990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9831200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9836940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_multigammaln.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9837830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9845420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9846310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9847430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9852980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9853860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fliplr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9861460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/negative_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9862600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9870260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9891390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9892910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_strided_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9897000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9900360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9901410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9902500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9903670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cartesian_prod_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9904810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9906160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9907170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9908270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9909470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9910510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9914350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9918620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9922400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/output_nr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9923150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argsort_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9924350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9928300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9931660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9936080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9936740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9940310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9944740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9949140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9952350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9953220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9958540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9960520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9966090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9966860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9969700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlogy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9975740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9977370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9983290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9984120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9987070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9992310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:54.9995430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0000250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0001000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0003910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0008990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0011310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0012600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0018750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0063690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0064580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0065800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0066820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0067900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lgamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0069030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0070190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_batch_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0071310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0072610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0073660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0074840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0076050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0077220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0078480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0079710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0080870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0082040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0083310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geqrf_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0084340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0088540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0092480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0093180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0097990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0101260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0105470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0106650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0110750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0114170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0118950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0121900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0123010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0128560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0131070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0136000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0137390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0139360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0145550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0146550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foobar_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0153450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogram_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0154240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0161040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_channel_shuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0161820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0162980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grouped_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0168850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0169740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0176520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0177490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0184070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0184860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0186110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0193040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0193900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0200520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0201750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0208120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0208910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0209920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0216080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0217090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0224190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0225230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0232230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0233050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0234230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0240510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0241180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0248540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_with_sizes_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0249380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0250480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0257020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0258160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_sinc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0264390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_nd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0265640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0272960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0273910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0280260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0281590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0288940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0289940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0290990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0297750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_nll_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0298580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0305770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/item_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0306550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0307740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0313160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0314880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0321120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0322060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0323280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0329770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0330610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0336830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0338630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0344960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0346340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0346910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0353470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0361440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0362250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0369980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/subtract.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0370900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0372100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0378050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0379280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0386350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0387020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0388140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0394210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0395370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0402350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_from_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0403270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0404400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/blackman_window_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0410480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_elemt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0411670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0418920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0419720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_ff_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0420870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0426570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0427400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0434910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0435550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0436660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0443110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0444160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_inference.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0451210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0452200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0453470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0458790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0460050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_multi_head_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0466510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0467440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/corrcoef_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0474680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0475670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0476920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0482440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0483390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0490220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ldexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0491020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log1p.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0498070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0498970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0500020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0505730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0507210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0513290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0514630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0516050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_ragged_idx_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0523150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0530930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0531670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0539010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0539830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hspmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0540970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_saturate_weight_to_fp16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0546520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0547800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0554310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0556030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0562990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0563920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0570100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0570940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0578580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0579310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0580610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0586650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0588570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0593960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0595330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0596440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0601890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0602610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0609920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0611270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0617940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0618600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tile_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0619760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0626040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/movedim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0626880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0633690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0634830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0642130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0642940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_H_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0644490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0650310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0651080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0657860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0658640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_storage_offset_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0659680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ctc_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0665670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0666790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0673240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0674500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0675700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0682600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_along_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0683780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimI_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0691430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0692320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0699810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sparse_matmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0700670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_debug_has_internal_overlap.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0701820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0707550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0708780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0714860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_sparse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0716810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0721930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0723320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0729950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_mps_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0730970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0733280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0740020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/meshgrid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0746600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0747430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0754370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0755210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0756270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0761620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0762970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0769120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammainc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0769950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_sparse_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0776750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0778170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0784560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0785380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0786500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0793270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0794020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_permuted.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0801280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0802610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_expm1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0803890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0809570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_conj_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0810610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftshift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0817230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0819030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0820240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_for_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0827000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0828070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cdist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0835190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0836110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0837230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0843070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0844710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0851700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0852850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/record_stream_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0853810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0859390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0860260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0866480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0867530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0874790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0875560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0876760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hamming_window_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0883010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0883920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0891720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0897360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0898420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0903690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0905420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0906780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0913850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_pinned_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0914610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_quantized_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0922350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_inverse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0923200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0924330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0929660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0930410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0937750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0938700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0946330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/instance_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0947130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0953960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0954790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0961930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0962820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0963800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kron_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0969570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0971020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0977170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0978010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log1p_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0979210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0986000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sqrt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0987020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0993560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.0996120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1001770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1002860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1004120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1009950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bartlett_window.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1010770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1018720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1019740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1020620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1026540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1027970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1036050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_check_errors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1036890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1044100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_gather_sparse_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1045280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1046090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1052380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1053600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1060720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1061520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1062570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1070750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1071690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1078360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1079620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1086350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1087280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1088060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1094120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frobenius_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1094960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1099980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1102380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1103570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_trilinear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1109040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1110060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1117110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_add_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1118030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1125070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1125880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_floatlist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1127110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1132720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1134210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1140210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1141610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1143350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inner_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1150050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1150910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_round_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1157420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1158360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1159440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1166200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1167140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1173090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1174790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1179920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pin_memory_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1181270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1183240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1189240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_det.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1190040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chalf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1197430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_scramble_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1198350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1206280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1207170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_polygamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1214430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1215510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1222760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1223760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1224950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1229550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1232740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1237720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1238500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1240410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_async_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1242860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1245870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1250710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1255100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1258760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1259680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cond_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1264590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1266730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1272320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1273260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1280130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/allclose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1280900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1288060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1288880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kaiser_window_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1290050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unpack_dual_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1295930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1296830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1303740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1304570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1311550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1312580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1319180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1320270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1326910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_debug_has_internal_overlap_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1327840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1328860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1336200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1337150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1343740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1344720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1351620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1352390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1353350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1359090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1359860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1367170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1375440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scaled_dot_product_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1376280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1377210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1383120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1384080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1391080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_rsqrt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1391860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_ambiguous_defaults.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1393120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1399810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1400820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1408400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1409290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1413920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1415260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1416370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1422450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1423930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csc_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1430080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1430850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimV.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1432850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1438940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1439850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1447030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1448670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1454790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1455650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retain_grad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1457210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1462670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1463500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/column_stack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1467550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1472300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1475620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1476480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1481310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1483890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1488770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1489720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1493590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1498480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1502220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1505730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1506860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1510900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sub_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1514290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1519150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_linear_prepack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1519980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1527780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1529300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_leaf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1535720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1536970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1543120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ldexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1545210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1546400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1552980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1553750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1560540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1561620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1567900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1568920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1569920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1576310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1577120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1584000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1584770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1592300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1593120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1594250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1600070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/margin_ranking_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1601500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1607440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csr_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1608400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1609430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1615850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1616710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1623340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1624760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1631760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1632590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1633870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1639610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_expm1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1640450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1647520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1648290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1655440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1656190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Char.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1657420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1662910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1664850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hinge_embedding_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1670450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bartlett_window_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1671310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1672800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1679260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1680310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_chunk.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1687150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1688200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1695520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1696340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_ctc_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1702440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1703580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1710120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1711290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1712560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1720100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1721060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1728530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1729360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1734050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_available_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1735270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1736390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1741780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1742620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1749570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1751070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1757230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_shape_as_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1758070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1759320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1764700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diff.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1766160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1772630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1774630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1780190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1781710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1783040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1789340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1790180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1797630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1798520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1805500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1806350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_digamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1807570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1814540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1815530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1822090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1823000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1824000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1829660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1830730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1837650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1838450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Char_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1839530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1845530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/promote_types_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1846380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1853120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1855000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1860610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cov_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1861770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_equal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1863500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1869900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scaled_dot_product_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1870710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_all_true_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1873580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_numpy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1881760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1887140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1890160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1891220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/msort.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1899600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1900490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hstack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1907610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1908480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/divide_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1915210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1915980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1917150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1922770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1924820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1930540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1931520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1933980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1939210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_axis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1940060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1942380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1949080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1951140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fix_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1957260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1958150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1959320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1966830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_affine_quantized.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1967910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1973820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1976430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1982120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_div_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1983490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1984520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1989650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1990580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1997060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorinv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1998120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.1999290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2006800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2007830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2014440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2015810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2016600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_stride.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2021620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2022820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2029970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2031360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2038930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2039920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2041040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2046100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2047710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2054180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2054980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2056350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogram_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2062120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dstack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2063750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2069610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2071800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_int_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2079110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lu_with_info_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2080450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2087210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2088590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2094780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2095800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2097150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2102750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2103740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2106690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grouped_mm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2112120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2115750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2119850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2120910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2125200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2128420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_warn_in_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2132710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2133590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2137850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2140930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2145930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2146800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2150720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2155810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spsolve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2158680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2159470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2165400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2167210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2173260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2174140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2175600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2182420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_trilinear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2183210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2189500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2191520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2197520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2201090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2205480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2206350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2209730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_equal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2214310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2218680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2221700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qscheme_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2222470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2228520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2229750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2236450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2237470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/blackman_window.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2244490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2245510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2252680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2253470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2254570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2260030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2261500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2267350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2268590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2269630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2276080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_mps_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2277070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cartesian_prod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2282170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2285720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2289940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2291250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ormqr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2295090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2298790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2302770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2303650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2307950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2311200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2316520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2317510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2321360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2326030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2329070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2330420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2335580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2336610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2344100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimI_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2344860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2352010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2359220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2360100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/or.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2361260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_same_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2366890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2368250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2374770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2375950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2377200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2382440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2383740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2389980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2391530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2392990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2399600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2401160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2408410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2409600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2416900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2418060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sigmoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2419030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2424740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ormqr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2425850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2433390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hsplit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2434400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2435500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2440840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kaiser_window_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2442490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftfreq_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2448600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_equal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2449720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2450760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2455640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2457700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2463540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2464770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2465930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2472830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2473910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2481360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vsplit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2482090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2488830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2490220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2491010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2496660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2497850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2504770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2505340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2506930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2512900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_storage_offsets.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2513860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2520440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_all_true.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2528860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2530450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2530980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2537060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2538050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2540900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2546440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2547260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2550530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2555710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2556430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2562780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2563970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2570320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2571410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2572930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_bag_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2579510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_dense_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2580300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2588180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2588970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2595720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isreal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2596560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2597660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2598810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2603900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2604810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_physical_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2611700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2612540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2613830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2620080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2621020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2627550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2628700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2630100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2636710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2637430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2644500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2645220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2652380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2653370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2654570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2660290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2661500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2667810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2668720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2669900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2675480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2676210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsinh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2685070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2690180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2691120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2692930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2699700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2700650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2707700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2709010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2715120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2715970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2717080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2722680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2725160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2729110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2731950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2732850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_multi_head_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2738460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2741270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2745830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2746650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2750770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2754850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2759060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2759940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2764140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2768540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2772160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2773010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_with_logits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2778240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2781320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2786220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2787020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2790700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2795480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2798340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2799230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2805010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_full.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2807570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2813340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2814150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_slogdet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2816830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2822600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_atan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2823550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clip.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2830280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2831380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2838720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2839590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2840830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2846000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2847140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2853520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2854520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2862370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2863130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2870260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2871050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2878650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2879550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2880640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2886510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2887550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_minimum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2894820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/int_repr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2895580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2896670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/column_stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2902150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2903680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2910000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2910930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2912480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_file_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2919440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2920410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2926560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2928030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2934420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/real_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2935350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2936640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2943040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2943830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2950530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2952070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2958390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2959200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2960440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logdet_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2966660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2967520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2975100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_vulkan_available_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2976040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2977120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2982330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2983810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2990600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2991450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2992650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.2999640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3000390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3008250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3008900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3015530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3016370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3023460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3024390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3030960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3031950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3033300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3040330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3040950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3047530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3048770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3049530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3055890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3056880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3063520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3069120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3070860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_packed_sequence_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3072100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_zero_points_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3073130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3079090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/square.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3079980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_per_channel_affine_quantized.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3086220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagflat_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3087270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3094500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3095240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3096450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cdist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3103700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3104480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expm1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3111120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3112410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3119030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3119880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3120870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3126400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_async_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3127680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftfreq.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3134680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3135630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3136800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3142120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3143900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3150010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3151030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3153800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3159340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3160200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogram_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3166500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_acos.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3167780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3172260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3174410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3176890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3181190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3182950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3189440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_power.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3190300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3197510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3198560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_no_update_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3204690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3205460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3206630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3212110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3213740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3221310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3221950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3223250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3229710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3230580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3237540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3238540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3239890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3245560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3246590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3252860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3254250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3260310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3260980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3262070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_min_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3269330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3270200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3277300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3278280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3285510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3286450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3292220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3293660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3299880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3300610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rename.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3302950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3309210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3326350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3327160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3328320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3331800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3332460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3333630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3334840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3335880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3339810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3340880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3341890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3347720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3348840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3354920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3361430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3362710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3369920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3370740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_zerotensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3376400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3377200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3383260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3384050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3385310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3392260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vander.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3393130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3399200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3400410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3406110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3407060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3409090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3415160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_add_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3416400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3422190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3423070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3430100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3430760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3436430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3437550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3439150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3445650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3446530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3452560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_floatlist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3454360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lazy_clone_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3460150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3460880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3462090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3468960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/result_type_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3469820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3477060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3477690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_zero_points_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3484390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3485260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3486340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dep_token_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3490000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3493090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3499340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3500370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_packed_sequence_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3506760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3507520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3509200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_to_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3515960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3523150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3525020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3530570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3531650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3533500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3538770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/one_hot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3539740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3546470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3547660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3553690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3554950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3556170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3563320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3564140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3570750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3571520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3577950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3578790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3579770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3585860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3587140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftshift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3593270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3594830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3595990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3602750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3603820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3610730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3611460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3618270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3619040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3620270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3626370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3627750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3634370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3635260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3636340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3642920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3644140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3652500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/celu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3653550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_scalar_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3660660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3661460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3668310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3669500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3670840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3676190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3677090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3683580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3691780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3692630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3693820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3699890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3700700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3703780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu6.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3709790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3711750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3717880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3718700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3719830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_static_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3725950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_initialize_state.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3726820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3734870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3735680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3742600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3743340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3744550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3749910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3752280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3757780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/negative.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3758500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3761120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3766070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3767050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3769360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3775750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3776520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsinh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3783780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_scales.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3784730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3792130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_intlist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3792960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3794050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3800060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3800900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pdist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3807960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_string_default.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3808860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3809940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3816710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_tile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3817640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3824520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3826280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_signed_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3832040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3832840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_intlist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3833990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3839780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3840600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3847860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3848540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3849760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3856810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3864740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3865990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/square_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3872730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argsort.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3873520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3874570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3881470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3882070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3887480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3889350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3890400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3895540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3897840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3902460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_tensor_metadata_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3905000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_addmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3905800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_clear_plan_cache_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3911650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3913130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3920050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3920890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chalf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3927710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3928550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3929630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3936460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3937370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3944120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3946680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3951800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3952520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3953650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3959770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dim_arange_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3963400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3967980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3968840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3971670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3976460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3977280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3981080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3985380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3989020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3989870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3995010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sigmoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.3998000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4002470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4003720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_is_acceptable_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4006750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4011220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4012730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4019200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4020080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4026340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4028330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4029500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dep_token.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4035790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4036450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4043330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4044120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4050840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4051740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4052880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4058580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4059990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4066340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4067230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4073180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_inverse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4075120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4082700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4083880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4090740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4091820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4098050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4099270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4100560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4105420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4106430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4113050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4114350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4120790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4122950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4128610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4129930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4136240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_inverse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4137650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4144290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4145160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4146180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_stack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4152070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4152910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4160930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4161590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4168940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4169600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4170750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4176650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/moveaxis_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4177550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4184120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4185620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4186920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4191990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_asin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4193040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4199350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4200620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/deg2rad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4206760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4207630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4208790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4216060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4216930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4224440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4225190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_stats.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4232280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4233140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4234360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4240530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4241380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4248570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4249290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4250480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4256120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4258690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4263390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4264790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pin_memory.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4266780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4272080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4272800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4279300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4280770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4287210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4288120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4296080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4297020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_slogdet_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4303790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4305820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4311780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4312550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4313830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4319300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4320210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4323320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmean_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4328710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4331720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4336860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4337590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4341080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4344630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4348430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4349370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4354040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4357540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4361980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4362860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammainc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4367420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4371850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4376220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4381280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4384950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4389160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4390190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4394100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/svd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4397730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsc_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4401870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hspmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4402770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4407340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4411070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4415540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4418790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clone_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4419830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4425260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4426780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4432210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4433630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4436860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4442630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vander_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4443550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4450190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4451420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4458040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4458860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4460030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4466060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4466980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4474240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4475090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4481900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4482550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4483640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_diagonal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4489430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_digamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4490730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4497270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_serialization_subcmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4498080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4499110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4505050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4506460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4513160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorinv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4514040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4520880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4522690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4528920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4529800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4536850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4537750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4544750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4545990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4549860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4554010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4558910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4562480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4563230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4567800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4571530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4576150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4577140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4580470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimV_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4585130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4588710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4592730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4593530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4597790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4601770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4605350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4606110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4610560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4614310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu6_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4619330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4621290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4622400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4629040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kron.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4629890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4636850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4637770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_check_errors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4644360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triplet_margin_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4645120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4646350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4652490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4653510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4660670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4661320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_remove_batch_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4668500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4669240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_relu_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4670490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4676870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4677740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4684870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4685670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_semi_structured_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4692630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4693720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4700550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_stride_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4701230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4702400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4708990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4710030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4717380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4718140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4725680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4726560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4727770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4733430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4733960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4742560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4743270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4744380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4747670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4749300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4752430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4753420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_ff.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4762040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4762890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/block_diag_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4769760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4770830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4777390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4778110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4779300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4786560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4787320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4794240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4795080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4802370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4803000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4804160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4810450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4811440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4818610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4819510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4820700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4826020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4827100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4834650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4835550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4836610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4842780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4843690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4849890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_jagged_dummy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4857190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/record_stream_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4858240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4859720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4866180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4866850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4873800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4879190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4881250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4882340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4883620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4890280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_parallel_materialize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4891040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4898240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_circular_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4899020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4905860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4906810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4907880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4913890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4914670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4922360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4923170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_psi.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4924230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4930810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4931660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4939360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4940190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_multigammaln_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4941250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4946570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4949160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4954380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4955100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/type_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4956640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorsolve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4963060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4963860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isinf_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4969160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4973210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4976820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4977630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4981930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4984340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4985200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4991590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4992810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hann_window_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.4999490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5001080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5007330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5008250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5009300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummaxmin_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5015950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5023590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5024950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5031850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5032690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5033760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_channel_shuffle_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5039660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_equal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5040420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/imag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5047880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5048640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5049710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5055340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5056910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5061200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5064990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_H.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5065890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5071230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5079070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5087400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5088320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5094790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5095560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rms_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5096580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5102420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5103810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fliplr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5109960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5111530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5112570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5119670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5120510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5127210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5128040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_sampled_addmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5135610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5136500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5137660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5143060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5144220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5150820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5151550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5152640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5159860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5160550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5168290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5169010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5176600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5177450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5178540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5184460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5192400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_padded_dense_to_jagged_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5193360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5194550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5200950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5201820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5208630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5209130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5210280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5215900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_gather_sparse_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5216870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5223460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5224480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5225760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5232690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5233720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/coalesce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5240670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log10_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5241480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lu_with_info_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5248570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5249340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5250760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5256450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5257200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5263900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5264610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5265680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5273340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logsumexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5274130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5281320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5282130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_round.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5288910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5290120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5291180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/margin_ranking_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5297060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5298440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5304730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5306000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5307220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dstack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5312800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5313770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5321180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5321910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5325530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5329750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_spatial_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5330310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/contiguous.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5334960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5343040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5348310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/group_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5350690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5356210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5357210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5359940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multiply_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5365640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5366560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5374060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5375450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_signed_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5381650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5382500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5383510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5389350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/requires_grad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5390730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5397100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5397970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5399320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5406460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5407240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5414370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5415170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5422080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5422920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5423950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_reduce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5429850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5430740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5437720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5438930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5440020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5445440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5446880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_scales_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5452880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5455790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5462220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5463280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5469990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5470730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5477390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5478370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5479440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5485510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5493760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_search.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5494550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5501540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_prod_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5502340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5503430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5509290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5510260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5517300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5518570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pin_memory_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5521940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nuclear_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5527490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5531250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5535790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_affine_quantized_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5536750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5540670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5544760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5548460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5549210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5554210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5557120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5562280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5563090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5566240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5571370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5574380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5578450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5579320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5583580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5587570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argsort_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5592570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/column_stack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5595080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5595790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5601700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5603210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5609580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5610310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5616630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5618020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_entropy_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5624630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5625460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5626560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5633200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5634080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5640820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5642240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5648370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5649310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5650420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5656010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5657200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5663350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5664460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogram.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5665600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conv_depthwise2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5673070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5674150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5681340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5682130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5688850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5694760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5697790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_async_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5702520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5703830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5707180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retains_grad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5711520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5717420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5718310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5719600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5726320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5727240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5734570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5735430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5736710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5742970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5743780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/numpy_T_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5751300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5752600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftfreq_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5759000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5759810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5760860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5766700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_dense_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5767730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5773650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_add_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5775240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5776520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5782990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5783830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5790640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_expm1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5791380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftshift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5798470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5799480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5800670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5806110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5807410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5813660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5814520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Short_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5815640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5822320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5823100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5830510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bilinear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5831360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5838850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5839780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5840860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_asin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5846580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5847440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5854000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5855650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5863020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5863960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5870650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5871750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5878410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5879350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5880390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5886610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/outer_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5887670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5888620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5894980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5895860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adjoint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5903170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5910020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5911360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flipud.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5916540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5918240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_exp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5919580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5926510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5927300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5933890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5935270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5941430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flipud_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5942270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5943390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5949370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5950650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimV_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5957250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5958020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5959510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5964830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5966320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5973080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5974230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5981370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5982260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5983520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_transpose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5989750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5990520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5996950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5998450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.5999550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6007150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6008020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6014430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6015340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6022500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6023510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6029920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_rowwise_prune_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6031820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6038510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6039370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_embedding_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6040480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6046210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6047190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6054540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_view.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6055340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6056500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6062730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6063530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6070150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6071710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumulative_trapezoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6077900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6078950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6080070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6086210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6086990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6094500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6095410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/can_cast_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6096260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6101860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6103340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6106240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6111400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6112750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_euclidean_dist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6118900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6120340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6126580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6127480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6128650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6136220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6142560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_for_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6144230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6145450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isinf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6151830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6152900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6153910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6159410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6167220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_rsqrt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6168020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6176000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6176940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6183970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6191810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6192700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6193820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6199820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6201260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6207220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_transpose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6208110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6209360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6215320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6216280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6222890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6224120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sinh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6229020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6231680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_semi_structured.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6232660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6238000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6239980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6245550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6246390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6253070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6254450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_scale_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6260550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6261540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/or_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6262780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_coo_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6268460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6269320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6276680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6277640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6284550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6285700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6286960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6292850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6293700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6300450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/item_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6301850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6303000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6308980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6309930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6317440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6318470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6325390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6326410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6327430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6333280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6334600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_filled_intlist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6341340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6342210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6343260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_warn_in_autograd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6348800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6349680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6357500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6358360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaln.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6365620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6366420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6367570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6373840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6374830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6381820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6382650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsc_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6383530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6388160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6389980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6396290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6397180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6404000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6405440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6411730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6412640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_trunc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6413670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6420020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccos_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6420870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6427670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6428530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_frac_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6429650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_strided_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6435990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6437170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6444240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6445090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6446090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6452080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6453550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6461490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6462430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6463600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6469510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sign_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6471020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adjoint_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6476940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6478180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6479320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6486760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6487650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6494120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6495350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6501960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6502760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6504030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6509420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6511840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6517230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6520320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6525890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6533510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6534240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6541420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6542250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6543400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6549450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6550350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6556920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6558330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6559460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6566500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6567430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6574770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6575750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6576690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_overrideable_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6582660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6583930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6590420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6591290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6592370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6599670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6600460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6607130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6607910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_select_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6615520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6616420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6617430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6622930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_compressed_sparse_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6624940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaincc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6630730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6631720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6632910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6638580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_enum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6639340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inverse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6645990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_safe_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6648170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6654150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6655030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6656220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6662210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6663070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6669850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6671290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6677350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6678330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6679260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6685850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6686810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6693480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6695630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_depthwise3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6701650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6702510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_reciprocal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6703900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6709490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6710420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6713420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6718970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6719950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6726600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6728160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6733920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6735300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6736410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6741800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6742630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6749890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapezoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6750680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6757640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6758600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_jagged_dummy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6759770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6765320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unpack_dual_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6766280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6773240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6774580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6781140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6781900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6782880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vstack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6789010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_overrideable_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6790070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6796720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6798080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6804030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6805410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6806810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6812190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6813110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6819840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6821770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6827310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6828190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6829980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_ctc_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6836500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6845170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6851050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6853020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6858540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6859340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6866500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6875760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6883850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6892030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6899140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6900000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6901130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6906860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_overrideable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6908020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_embed_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6915060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6915930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6916830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6923240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6924220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6930630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6931720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6932890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6939580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6940330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6947200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/combinations.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6948440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6955070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6955950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6957010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/promote_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6963070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6963960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6970780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6971740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6972940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6980700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6981530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Int_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6988330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6989150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6996590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6997480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/negative_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.6998660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Byte.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7004020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7005770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7012210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7012990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7014140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7021110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7022910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7029100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7029920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7037330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7038240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7045010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7045890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7047050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7052220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7053790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7060610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7061500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7062610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7069640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7070620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7077570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_diagonal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7078440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7085390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7086180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foobar_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7087480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7093390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7094240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7101310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7102140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7116380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7119920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7120840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7125140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7130070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7130860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7131620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7133440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7134270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7138050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hinge_embedding_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7141740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7145480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7147340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7151130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7155140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vstack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7156570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7160670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7165010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/can_cast_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7169360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7171950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7173120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7179000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7180070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7187310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7188630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7196630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7197470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7204800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lerp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7205560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7212580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7213430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7214540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7220810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7221590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7228690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7229690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7230840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7236590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7237900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7244060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7244970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_neg_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7246400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7253800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7254600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7261780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7262590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7269640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7270490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7271550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammainc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7277060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7278320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7285380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7286330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7287490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7293280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7294150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7300800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7301590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7302850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7310470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dsplit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7311310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7318810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7319840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7321040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7326440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_debug_has_internal_overlap_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7327880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_scalar_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7334850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7335740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7336820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7342460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7343800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7349780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7351850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7359030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_with_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7359810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7366460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/int_repr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7367310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7374690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7375490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7376560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lstm_mps_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7382410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7384150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7390200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7391400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7392600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7399800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7400840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7407620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7408860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/coalesce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7415530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7416520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7417710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7422680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7424600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7430800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7432000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7433280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7439140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7439970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7443540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7449030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7451780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/real_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7456760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7457680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7460630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7465040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7469070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7470220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logcumsumexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7474880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7478050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7482010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_max_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7483440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7487860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7491300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_max_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7492390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7502280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7506680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7507550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7509710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7515010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7519030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7522750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7523610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7528300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7531410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7536320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7537050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7540650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_alpha_dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7545570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_affine_quantized_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7548860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7549580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7554770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7557500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_compatible_shallow_copy_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7558160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7563930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7565880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7571470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7573410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7579380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7580140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7583190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7588630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concat_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7589450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7596300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7597810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7603920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_zeros_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7604670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7605990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7612210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Int_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7613180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7619680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7620650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_add.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7627570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7628440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_with_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7629620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7635510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7636370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7643550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7644340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7650420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_dense_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7651510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_ones_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7652940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7659200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7660130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7667080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7667710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ravel_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7675340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcdiv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7676110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7677170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7682650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7690910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7691790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7692820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/msort_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7698460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_scales_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7699700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7707380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7708440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7715050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7715790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7716910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7723580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7724610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7732260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7733150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7734230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7739750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7740970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7747050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7748270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7749540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7756060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7756940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7763440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7764770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7771270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7772190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7773460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hsplit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7779140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7779840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7787210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7788000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7795070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7796140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7797190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7803490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7804390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7811950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7812740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7813710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7819520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/one_hot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7820270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7827090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7828390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7829600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7837330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7838090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log1p.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7845560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7846260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7853320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_trunc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7854200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7855250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7861050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_transpose_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7861740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7863070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_weights.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7868820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7870090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7876710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7878250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7879330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7886090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7886850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7891840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7895530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7899950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7900730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7904240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7908880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7909740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7914100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7918870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7921800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7922650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7928280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7930760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7935740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7936470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7940160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7945520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7947600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7953050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_view_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7956460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7962010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7964950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_compute_linear_combination_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7970010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7970790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7973950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7978910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/l1_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7981930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7982830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7988300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7990430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7996340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7997200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.7999210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8005190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8006800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8012630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8013410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8016220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/einsum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8022240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8029230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_zero_point_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8031670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8037810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8038590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8039730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8045430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8046240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8052930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8054220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8060850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8061480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8062660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8069750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8070620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_similarity_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8077630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fix_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8078400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8086020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_dense_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8086940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8088050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8093480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8095140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8102290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8103440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_overrideable_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8104810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8109340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8111310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eig_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8116660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8118570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8120190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8125470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8126690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8133550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8134510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8140370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8141710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8143130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8148290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8149630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/group_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8155980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8157440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_full_precision_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8163580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8164710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8166120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8172310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8173670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8179930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8181390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8188880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8190410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8195400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8196510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8205240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8212250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8213330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8219340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8220470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8227360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8228990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8235040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_round_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8236200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8237610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8243300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8244370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8250670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8252110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8260280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_diagonal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8518550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_numpy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8518890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8519190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/istft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:55.8519520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erfc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0057710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0058150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chain_matmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0058480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0058850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0059240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0059590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0059940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0060290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_compute_linear_combination.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0060730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0061040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnz_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0061390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummaxmin_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0061920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0062290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_stack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0062650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0063050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cartesian_prod_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0063630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0063980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_filled_intlist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.0064360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1226430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1230810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1235270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1240240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1245840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1249990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1254140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1258930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1265010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1269810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1274460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1278910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1283190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1287890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1292590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1296770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1300950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1304850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1308410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1311920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1315190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/istft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1318300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1321940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1340920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1345040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1348800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1589400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1592530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1595010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1597500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1600580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1603180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1605850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1608590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1611050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1613860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1617440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1620170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_with_sizes_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1622880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1625490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1628530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1631280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1633730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1636430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1638770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1641480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1644070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mT.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1646470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1649280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1651860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/orgqr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1654380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1657240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1659950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1662840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1665990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1668520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1670770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1673340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1676150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1678600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1680830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1683410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1685650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1688070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1690670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1693210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1695440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1697820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1700030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1702130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/can_cast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.1704160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3394410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3493500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3535230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kl_div_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3540000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3545100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3549910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3554000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3579760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3582640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3585480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsc_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3597750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3600520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_floating_point.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3602810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3606410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3608990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3611980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3614550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3616850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3619000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3621250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_check_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3623570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3625820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3627910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3630280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3633030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3635770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3636600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_distributed_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3637370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3638160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3638930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu6_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3639670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3640540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3641500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3642360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3643110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rad2deg_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3643930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3644940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3645850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3646800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3647650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3648420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3649240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3650020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_tanh_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3650880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3651840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3652810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sigmoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3653560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3654270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/outer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3654990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bilinear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3655720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rms_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3656490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3657670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3660980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3664170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3665370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3666260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3667200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3668070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3668790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3669590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3670430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3671260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3672060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3672810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3673650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3674510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3675300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_file_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3676090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_backward_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3676930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_serialization_subcmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3677770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3678580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_async_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3679350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3680380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3681660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3682810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3686280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3688620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3696760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_except_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3706170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3713810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3716870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3724030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3726610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3730790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3732870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3738860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3739720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3740960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3746320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3747450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3753750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_version.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3754730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3756050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3762730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3763550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3770690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3771470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3778930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3779810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clip_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3780790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3787160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3788010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3795100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_transpose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3795900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3796830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensor_split_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3804030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_to_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3805120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3811690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_overrideable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3812810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3813880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3818780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3820640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3827030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3827880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3829030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3835880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/requires_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3836740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3843710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3844530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3853400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3864670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3871840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3879050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlogy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3882010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3894480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3908210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3910230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3917600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3918690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3925960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3933650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3942280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3943730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3949380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3950240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3957050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3957840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3964300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_power_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3965190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3966310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3973190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3973990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lstm_mps_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3980230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3982000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3987800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3988950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3990090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3996050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_exp2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3996980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.3999800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4005910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4007470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4013600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scalar_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4014790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4016240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4022860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4024020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4030410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4031380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4032710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4039270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4063820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_reciprocal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4074080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4078960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_inference_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4079750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4083340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4088480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4092090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4095960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4096810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mH_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4101260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4104810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4108950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4109810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4114120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4117740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4121500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4122860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4127570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4131330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4134870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4136070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4140420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4143950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4149550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_serialization_subcmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4151010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4152330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4158830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4159610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4166440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4167290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4173820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4174660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4175830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4182260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4183160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4190020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4191090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vander_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4198070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4198980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4200110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4206100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4207100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_H_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4213450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_resize_output.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4214330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4221580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4222390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cond.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4229390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_polygamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4230240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4240420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4243830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4244910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4248860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4252540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4258040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4259070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4265710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ormqr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4284690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4285720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4286960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4288370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spdiags_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4289500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/float_power_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4290830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/imag_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4292210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4293430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_pow_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4294670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4296020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4297150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4302510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4303520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4307350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4312410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4314690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4319700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4327280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_scalar_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4328200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4329040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4332150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4333460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4341110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4342100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4346320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4347290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4349750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_neg_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4355550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4357660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4363530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4364580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prelu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4366340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_along_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4372950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4373960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4380600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4388210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_put_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4389010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4390270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4396210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4397180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4403480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4404800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4406440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4413570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4414530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4421350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4422200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4428990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4430050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4431160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4436420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4437570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_add_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4444430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/group_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4445310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4446960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_minimum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4454100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4455150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4458160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4460480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4463710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4467580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_ragged_idx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4469550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4473610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4476700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logsumexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4482650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvalsh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4483540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4490110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4490930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dsplit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4497900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4498800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4499840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4505790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4506630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4513780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4514650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4521590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4522610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4523570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/celu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4528650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4529720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4537020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4537930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcdiv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4544870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4546000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4547070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_chunk_cat_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4553570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4561340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4562150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4563350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftshift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4569430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4570480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4577050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4578490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4579420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4585650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4586570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4593860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4594700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_spatial_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4601460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4602300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_depthwise3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4603580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4608930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4611030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4617620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4618510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4619670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4625150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4626560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4632760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sub_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4634100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4641040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_semi_structured_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4641960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4643270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4664490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4672530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4673380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_neg_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4674650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/numpy_T_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4676050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4677160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4678420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4679680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4680890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_floating_point_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4687180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4688650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4694930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_strides.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4695850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4697170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4703490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4704280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4706270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4713600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4714570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4722200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4730020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4730840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4732080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4737710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chunk_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4738830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foobar_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4745850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4746950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4748160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4754610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4755530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_init_dropout_state_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4762550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_prod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4763440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4764640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4770880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4771820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4778840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4779720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isclose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4781010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4787000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4788260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4794910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4795690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4796820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4802640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4804030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_string_default_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4810620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4811470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4812850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4819970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4820790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_draw.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4828650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4829520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4835950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagflat_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4836680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4838090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4843450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4844800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4852930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_linear_prepack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4853900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4856330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/combinations_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4860910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4865200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4868990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4869850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapdims_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4872900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4877800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4882160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4882960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isreal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4886770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4892460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4900430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumulative_trapezoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4901230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4904810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4908610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4909600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4914500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4917010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4921450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4923190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4925410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4931110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4935470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4938710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4939550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4944650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4946410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4952480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4953720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4960440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4961190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4962370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4969340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4970220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesce_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4977120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4978340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4985200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4986110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4987320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4993130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.4995050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mH.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5000720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5001540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5002820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5008510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5009630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5017240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5018070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5025100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5026060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5027210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5032520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5034200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5040640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensor_split.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5041490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5042850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5049850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5058890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_alpha_dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5063450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5066980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5070740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5075620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5078890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5079650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5085580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5086820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5093390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5094350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5095630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5099670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_zero_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5104770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5108420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cosh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5112460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5113370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5118070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5121840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5126430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5127230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5131820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5135060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5139730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5140490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5143960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5148700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5151800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5152700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5158700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5160310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5166470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5167490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5168620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_inverse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5175500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5176290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ravel_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5183300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_select_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5184750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5190840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5191990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5193200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5198700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5199710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5206160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5207780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5214130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5214950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5216320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_file_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5221890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/layer_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5222740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5229540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5230360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5239230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5240250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5246030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense_sparsecsrmps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5246880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5252830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/allclose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5255390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5261130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensordot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5264560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5267160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5269250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/thnn_conv2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5274020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5276680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5282070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5282910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lu_with_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5290390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5291510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5298500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5299210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5300440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5306320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/positive_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5307720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5313990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5315160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5316340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_euclidean_dist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5322180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5322990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5330240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5331080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5337890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5338800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5340030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_sparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5345650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5346490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5352960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/einsum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5354280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5360220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5361460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5362790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5369170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5370460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5377480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5378470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5385540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5386410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5393160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_relu_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5394220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5400880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5401830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5402990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Byte_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5409420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dstack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5410490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5416820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5418540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5425540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_distributed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5426280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5427580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5432670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5433590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5438570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5441360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5446440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5447360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5450160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5455790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5458070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_offsets_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5467660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5472230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5475770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5476740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5481250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/one_hot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5484970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5487100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5490760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5494770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5496660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5500560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_zeros_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5504740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5506510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5513190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5514870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_saturate_weight_to_fp16_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5521550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5522490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5523650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5529280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5530470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5537450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_functorch_fallback_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5538480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5545750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5546580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5552460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5553210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5554650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5562470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/blackman_window_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5563590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5569670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5570310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5576660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5578140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5579380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5586670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5587500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_rsqrt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5591130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_to_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5594860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5598710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5599600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5604090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5607890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5611870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5612670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5617560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantile_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5621650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5625080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5626160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5631220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5633190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hash_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5638900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5639730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5646100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5647750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5653550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5654510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5656160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5662480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5663390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5676140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_scale.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5677220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5681000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5683280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rot90_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5684440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eig.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5689170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5690200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5693560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5698680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5701380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stride_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5706540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_is_acceptable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5707410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5710660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5715540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5718560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5719650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_coalesced_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5725580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5726560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5734240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/true_divide_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5735260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5742750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5743450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogram_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5750730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5751660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5758800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5759470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_nll_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5760680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5766220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5767270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5773920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5775560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5776490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5782140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5783220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5790000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5791190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5792500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5799450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Byte_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5800830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5808070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5809140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5810290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5815860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5816780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5823270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5824460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5826020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5832840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5833830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5839620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5840970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5847770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/contiguous_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5848600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5849980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_overrideable_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5855390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5856290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5863040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5864540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5871590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5878800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_entropy_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5881890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaincc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5886490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/subtract_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5888160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5889660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5893420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5903380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retains_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5904240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5911180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5912000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5918620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5919430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5920610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5926270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5927610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5934370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5935220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5938770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5941740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5942560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5948000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5950240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_input.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5956110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logsumexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5957050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5959450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5966100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5968140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5973230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/l1_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5974020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geqrf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5976500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5981790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5982700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_scale_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5989870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5990950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5998080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.5999010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6000220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6006050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6007520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6013380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6014300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6016360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6022510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6023420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6029770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6031110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6037720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6038800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfinv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6039690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6045900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6046790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_double_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6053300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6054690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6056160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6063110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6064060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/meshgrid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6071070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6071880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6079400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6080420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6083860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6087380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6091780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6092590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6094600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6101540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6103790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6109040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6110480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6112380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_put_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6118520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6119380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6126320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6127690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6133550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6134890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6136170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6142920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6143850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6150580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6151450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6158610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6159540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sparse_matmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6160860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6166790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6167580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6174890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_min.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6175660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6176890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6182600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6183520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6190750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6191810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6193020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/msort_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6198720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/refine_names_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6199980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6206720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6208060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6209210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6216200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6217170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mask_projection_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6223390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6224650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6232020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6232790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6240020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6241020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6248230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6249150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6250200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6257600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6262570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapz_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6267150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6273380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6274260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6275610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6277100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6282720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6286990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_embedding_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6292720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sparse_matmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6296020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6300720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6301610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6304030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6308190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6309110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pin_memory_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6313940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcdiv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6317970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6321980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6322990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6327330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6331150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6334950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concat_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6335830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6340080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogramdd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6344490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6349010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6352160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6353120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6358440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6359650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_offsets_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6366340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6367430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6373680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6374910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6382350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6383280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6384340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_max_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6389640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6390430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6397690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6398670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logcumsumexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6399820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6405980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6406880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6414230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6415190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6422410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6423410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6424610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6430000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_any_true_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6432160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorinv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6433850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6438520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6439700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6442790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6447830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_det_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6451510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6455980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6457010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6461020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_transpose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6466140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6467560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6468880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sqrt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6475460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6476420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6482960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6484960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6490380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6491330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6492950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6499090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6500050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6507130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6508490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6514730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6515700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6517000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6522360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6523340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6526600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogramdd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6532030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6541070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6541990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_ragged_idx_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6542870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6543710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6549100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6551630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6552840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6558520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6559430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_addmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6565530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6566570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_same_storage_numel_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6573590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimI.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6574390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6581150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6582020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6583460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6589430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_ceil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6590490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6596930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6598300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6599520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_print_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6606440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6607440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6614540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6615460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6622430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6623410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6624590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ctc_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6630510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argwhere.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6631600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6638080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6638870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6640110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6646140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6647090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6654280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6655120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diff_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6663270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fix.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6668820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6670560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6674460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6676340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6679000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6683940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6689060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6691670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_all_true_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6692870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6698790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6699830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6706580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6707590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6714130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_floatlist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6715260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6716450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6722010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6723150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6729700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6731390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6737420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6738370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6739600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6745410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6746180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6753710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6754650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6761410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6762430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6770490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expm1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6776610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfinv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6778150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6779330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6786430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_sequence.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6787380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6793890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geqrf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6794830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6801610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6802530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6803680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6809140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_filled_intlist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6811210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6816630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_warn_in_autograd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6817970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6819140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isfinite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6826040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6826960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_axis_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6834000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6835170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_no_update.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6836730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6842990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6843870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6851260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6852320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6853180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_coo_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6862820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_zerotensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6866210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6870330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_conj_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6871060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6874430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6878950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6882530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6883410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6888470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6890380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pin_memory.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6896260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6897150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6900640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_mode_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6905780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6909970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_similarity_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6915490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_shape_as_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6919390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6923050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6923960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6927740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6931670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6935790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_dense_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6940700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_version_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6949110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6954080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6957230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6962150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6963000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6966540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6971590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6974740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6979340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6980160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6984220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6988720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_tensor_list.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6992480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6993470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.6998640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_coo_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7000450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7006210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7007120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7009170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7015530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7016560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7022740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7024320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7030860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7031740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7032960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7038950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7039860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7046820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7048070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7054680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/det.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7055620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7068630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7069430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7071800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7076600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_batch_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7080130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7088300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7094470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7097680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vander.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7102570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7103400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7107730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7111520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_same_storage_numel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7112420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7116230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7120680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Double_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7125310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7128470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7129230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7135060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_full_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7136990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7142900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7143790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7146080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7152160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7153020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_round.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7159450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7160920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_same_storage_numel_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7167240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantile_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7168050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7169260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7175270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_matmul_4bit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7176280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_sequence_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7182470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7183760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_no_training.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7190680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7191630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7192970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7199030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7200000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7206360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7208260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7214830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7215770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7216880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7222310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7223130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7229820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_elemt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7230920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7237900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7238750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7239930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7245240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/det_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7246310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7263300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7264220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7265320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7270690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7272590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_similarity.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7273780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_add_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7278730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7279730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7284120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csc_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7288360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7292630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7293550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_axis_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7297380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logdet_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7301620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7305530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7306460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7311410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7314450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7319180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7320030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7323920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7328060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7331960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_depthwise_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7333110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_async_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7337180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7340810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_any_true_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7346090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7347960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7349010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7355500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7356320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Half_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7363230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7364200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7370590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7371830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7372980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7378940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7380000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7386580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7387570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7394050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7394950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7395950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_tile_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7402530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7403440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_exp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7410270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7411170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7418600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7419550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7426080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7427240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7433840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7435050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7436340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7441420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7442810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7465160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7485900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_pinned_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7487040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7488150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7489580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7490620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_compress_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7491960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7493030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_abs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7494470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7495730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7496740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7497970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7499190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7500490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7504300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7507780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7511650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7512690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7516800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7521000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7526000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7526910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapz_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7528530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/block_diag_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7534410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7535780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7542560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7543680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7549660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7550600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7551760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftshift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7558920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_elemt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7559800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_async.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7566590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_zero_point_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7567620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7573840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7574520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_same_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7575820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7581870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7583010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7591320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_sparsemps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7596660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7597850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7599050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7606400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scaled_dot_product_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7607180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7613070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/l1_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7614880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7620720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7621420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7622510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nuclear_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7628790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7629820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7636280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7638740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7644140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7644940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/and_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7646040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7653040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7653790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/true_divide.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7668380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7669120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7670330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7672960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_numpy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7676270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_sinc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7679810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7684310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cos_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7685680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7687710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7692410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7693290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7697310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7701430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7705190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7711490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_physical_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7713110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7718940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7719710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7726870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7727800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7734780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7735570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7736820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7741950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_print_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7743010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7749430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7750560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7757360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7758410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7765020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7766110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7773030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7774240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-09-07T06:13:56.7781890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ParallelOpenMP.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7782830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/jit_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7784390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CPUApplyUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7785620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ThreadLocalState.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7789090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ScalarOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7794920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NativeFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7798110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DynamicLibrary.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7802690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorGeometry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7803610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DTensorState.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7807300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorIterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7812870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NamedTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7815240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Dimname.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7816030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ROCmFABackend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7822490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7823550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/autocast_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7830040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Parallel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7831020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DimVector.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7838720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MetaFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7839500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/InferSize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7840720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/LegacyVmapTransforms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7846150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SmallVector.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7847290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7854530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-09-07T06:13:56.7855020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/BatchedFallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-09-07T06:13:56.7856290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/FunctionalizeInterpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-09-07T06:13:56.7866880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/ADInterpreters.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-09-07T06:13:56.7867860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/Interpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-09-07T06:13:56.7870690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/TensorWrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-09-07T06:13:56.7874360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/BatchRulesHelper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-09-07T06:13:56.7876020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/PlumbingHelper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-09-07T06:13:56.7879200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/VmapInterpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-09-07T06:13:56.7880500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/Macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-09-07T06:13:56.7888970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/BatchingMetaprogramming.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-09-07T06:13:56.7889860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/BatchedTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-09-07T06:13:56.7893730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/LegacyVmapTransforms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-09-07T06:13:56.7898910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/DynamicLayer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-09-07T06:13:56.7901680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7906460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/AccumulateType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7907160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorAccessor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7910470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SDPBackend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7919370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-09-07T06:13:56.7919870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/Handles.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-09-07T06:13:56.7921060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-09-07T06:13:56.7926310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/Types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-09-07T06:13:56.7928160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/Descriptors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-09-07T06:13:56.7933690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/Handle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-09-07T06:13:56.7934570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/cudnn-wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-09-07T06:13:56.7937190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CachedTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-09-07T06:13:56.7943280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10 2025-09-07T06:13:56.7944120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.7944840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/RefcountedDeleter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.7946880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7947330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/InlineStreamGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7948510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/SizesAndStrides.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7952110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/InlineDeviceGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7954860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/GPUTrace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7960010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/COWDeleter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7961030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/LocalDispatchKeySet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7962040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/alloc_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7969050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/PyInterpreterHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7969960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/VirtualGuardImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7976630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/HermeticPyObjectTLS.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7977560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/PyObjectSlot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7984820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/TorchDispatchModeTLS.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7985720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/PyInterpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7986940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/PythonDispatcherTLS.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7992520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/COW.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.7993360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/InlineEvent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.8000250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/DeviceGuardImplInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.8001120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/FakeGuardImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-09-07T06:13:56.8002230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/QEngine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8009800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/TensorOptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8010810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymFloat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8017370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/GradMode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8018240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Device.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8025290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/CPUAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8026050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DefaultDtype.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8027350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DefaultTensorOptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8032820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/alignment.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8034240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Event.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8040580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Backend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8041370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/AllocatorConfig.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8050520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/CompileTimeFunctionPointer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8051150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DeviceArray.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8052270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/PyHandleCache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8053390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/ConstantSymNodeImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8054630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/WrapDimMinimal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8055730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/QScheme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8056990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SafePyObject.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8058010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8059180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/UndefinedTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8060360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Scalar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8061470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/AutogradState.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8062580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymIntArrayRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8063610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/thread_pool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8064810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/CopyBytes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8065970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymNodeImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8067120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/StreamGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8068200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DynamicCast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8069260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Layout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8070510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/GeneratorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8071650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DispatchKeySet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8073040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Allocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8074060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/TensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8075860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Contiguity.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8076980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/ScalarType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8078250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Storage.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8079410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DeviceType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8081500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DeviceGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8088280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/StorageImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8090110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymbolicShapeMeta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8095370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/MemoryFormat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8096680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymBool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8098000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DispatchKey.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8103990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/ScalarTypeToTypeMeta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8105630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/InferenceMode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8110780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymInt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8112160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/OptionalRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8118720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/CachingDeviceAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-09-07T06:13:56.8119940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test 2025-09-07T06:13:56.8120810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test/util 2025-09-07T06:13:56.8121580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util/complex_test_common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test/util 2025-09-07T06:13:56.8126130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util/complex_math_test_common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test/util 2025-09-07T06:13:56.8127220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util/Macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test/util 2025-09-07T06:13:56.8133730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8134120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8135460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/order_preserving_flat_hash_map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8140160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e4m3fn-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8141300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/quint4x2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8142200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/FbcodeMaps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8149410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Semaphore.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8150260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/signal_handler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8157350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/error.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8158270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/safe_numerics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8167130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8173860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/flat_hash_map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8176200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/env.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8177410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/llvmMathExtras.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8183090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Gauge.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8184190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/WaitCounterDynamicBackend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8186340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e8m0fnu-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8194500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Synchronized.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8195460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Bitset.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8196580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/typeid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8201840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e4m3fnuz-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8202810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/TypeSafeSignMath.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8208790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/intrusive_ptr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8211260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/string_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8216460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/IntrusiveList.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8217370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/win32-headers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8218770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/AlignOf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8225400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/static_tracepoint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8226260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ssize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8232510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Enumerate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8233670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/numa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8240080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/qint32.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8240820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float4_e2m1fn_x2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8242850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/CallOnce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8249650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e5m2fnuz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8256840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/MaybeOwned.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8258200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Half-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8260790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/TypeTraits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8265390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/DeadlockDetection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8266320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/FunctionRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8269860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Backtrace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8275340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/overflows.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8278470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ExclusivelyOwned.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8279500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Load.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8285070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/BFloat16-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8286580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/static_tracepoint_elfx86.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8292440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ConstexprCrc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8293840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ThreadLocal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8295580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/IdWrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8302370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Flags.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8303150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/overloaded.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8310420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e4m3fnuz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8311430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/quint8.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8318220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e5m2-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8319270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/StringUtil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8320400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Logging.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8326130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/MathConstants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8327010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8334020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Optional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8334840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e5m2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8335920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/tempfile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8343860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/copysign.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8352510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ArrayRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8353330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/thread_name.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8354460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/strides.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8355760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Unicode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8356970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e8m0fnu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8360800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/TypeCast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8361670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/sparse_bitset.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8363220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/OptionalArrayRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8364370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/BFloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8366040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/TypeList.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8367250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/TypeIndex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8368410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/NetworkFlow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8369670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Array.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8370930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/logging_is_google_glog.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8372350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Metaprogramming.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8373590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/WaitCounter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8374800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/quint2x4.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8376070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/floating_point_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8377340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ParallelGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8381820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/BFloat16-math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8385330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/int128.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8386160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Lazy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8392020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Deprecated.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8393740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/irange.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8399950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/SmallBuffer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8400910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ScopeExit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8403270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Unroll.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8408560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/LeftRight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8411550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/bit_cast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8416360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/qint8.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8417280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/complex_math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8420760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/logging_is_not_google_glog.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8429250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/DynamicCounter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8430100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8434850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/UniqueVoidPtr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8436580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ThreadLocalDebugInfo.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8442870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e4m3fn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8443650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/AbortHandler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8446200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/DimVector.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8452160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/accumulate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8455090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/C++17.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8459790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/strong_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8461180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ApproximateClock.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8464120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/SmallVector.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8468850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e5m2fnuz-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8471500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/hash.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8472410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/python_stub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8478180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8481200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/bits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8485800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/string_view.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8486920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/complex_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8490220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ExclusivelyOwnedTensorTraits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8495670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/generic_math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-09-07T06:13:56.8499620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-09-07T06:13:56.8500060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-09-07T06:13:56.8511080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/igamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-09-07T06:13:56.8516250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/special_math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-09-07T06:13:56.8517400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/reduction_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-09-07T06:13:56.8518440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/expm1f.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-09-07T06:13:56.8519560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-09-07T06:13:56.8520740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/indexing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-09-07T06:13:56.8522050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/random.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-09-07T06:13:56.8523140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/atomic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-09-07T06:13:56.8524630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-09-07T06:13:56.8525370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda/impl 2025-09-07T06:13:56.8526050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl/CUDATest.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda/impl 2025-09-07T06:13:56.8527290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl/CUDAGuardImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda/impl 2025-09-07T06:13:56.8528570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDADeviceAssertion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-09-07T06:13:56.8529630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/driver_api.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-09-07T06:13:56.8530830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAMathCompat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-09-07T06:13:56.8531930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAAlgorithm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-09-07T06:13:56.8533150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAStream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-09-07T06:13:56.8534210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-09-07T06:13:56.8535330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAMiscFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-09-07T06:13:56.8536500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAGraphsC10Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-09-07T06:13:56.8537720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAMacros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-09-07T06:13:56.8538900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAAllocatorConfig.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-09-07T06:13:56.8540040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-09-07T06:13:56.8541080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAException.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-09-07T06:13:56.8542180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDACachingAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-09-07T06:13:56.8543520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDADeviceAssertionHost.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-09-07T06:13:56.8544890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-09-07T06:13:56.8545760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/impl 2025-09-07T06:13:56.8546490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/impl/XPUGuardImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/impl 2025-09-07T06:13:56.8547690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/test 2025-09-07T06:13:56.8548590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/test/impl 2025-09-07T06:13:56.8549260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test/impl/XPUTest.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/test/impl 2025-09-07T06:13:56.8550390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUStream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-09-07T06:13:56.8551510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUDeviceProp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-09-07T06:13:56.8552780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUCachingAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-09-07T06:13:56.8553870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUMacros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-09-07T06:13:56.8555110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUException.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-09-07T06:13:56.8556170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-09-07T06:13:56.8557530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/macros 2025-09-07T06:13:56.8558190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros/cmake_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/macros 2025-09-07T06:13:56.8559340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros/Export.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/macros 2025-09-07T06:13:56.8560480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros/Macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/macros 2025-09-07T06:13:56.8561760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/mobile 2025-09-07T06:13:56.8562520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile/CPUCachingAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/mobile 2025-09-07T06:13:56.8563640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile/CPUProfilingAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/mobile 2025-09-07T06:13:56.8564670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/psimd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-09-07T06:13:56.8566110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/experiments-config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-09-07T06:13:56.8567250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fxdiv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-09-07T06:13:56.8568570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/fp16 2025-09-07T06:13:56.8569260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16/fp16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fp16 2025-09-07T06:13:56.8570540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16/psimd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fp16 2025-09-07T06:13:56.8571710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16/bitcasts.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fp16 2025-09-07T06:13:56.8573790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/torch_version.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.8574900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends 2025-09-07T06:13:56.8575740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/opt_einsum 2025-09-07T06:13:56.8576690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/opt_einsum/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/opt_einsum 2025-09-07T06:13:56.8577680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mha 2025-09-07T06:13:56.8578320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mha/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/mha 2025-09-07T06:13:56.8579670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/nnpack 2025-09-07T06:13:56.8580310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/nnpack/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/nnpack 2025-09-07T06:13:56.8581620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mps 2025-09-07T06:13:56.8582230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mps/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/mps 2025-09-07T06:13:56.8583590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cpu 2025-09-07T06:13:56.8584200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/cpu 2025-09-07T06:13:56.8585550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/_coreml 2025-09-07T06:13:56.8586270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml/preprocess.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/_coreml 2025-09-07T06:13:56.8587470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/_coreml 2025-09-07T06:13:56.8588470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cuda 2025-09-07T06:13:56.8589190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cuda/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/cuda 2025-09-07T06:13:56.8591650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/quantized 2025-09-07T06:13:56.8592070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/quantized 2025-09-07T06:13:56.8595590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/miopen 2025-09-07T06:13:56.8596020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/miopen/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/miopen 2025-09-07T06:13:56.8599910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends 2025-09-07T06:13:56.8600940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkl 2025-09-07T06:13:56.8601600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkl/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkl 2025-09-07T06:13:56.8603020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/xnnpack 2025-09-07T06:13:56.8603720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xnnpack/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/xnnpack 2025-09-07T06:13:56.8605010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/kleidiai 2025-09-07T06:13:56.8605710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/kleidiai/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/kleidiai 2025-09-07T06:13:56.8606990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cusparselt 2025-09-07T06:13:56.8607660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cusparselt/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/cusparselt 2025-09-07T06:13:56.8609120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkldnn 2025-09-07T06:13:56.8609930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkldnn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkldnn 2025-09-07T06:13:56.8611210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/xeon 2025-09-07T06:13:56.8611790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/xeon 2025-09-07T06:13:56.8612730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon/run_cpu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/xeon 2025-09-07T06:13:56.8614260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/_nnapi 2025-09-07T06:13:56.8614890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/_nnapi 2025-09-07T06:13:56.8615840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi/serializer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/_nnapi 2025-09-07T06:13:56.8617480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi/prepare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/_nnapi 2025-09-07T06:13:56.8618790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/openmp 2025-09-07T06:13:56.8619460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/openmp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/openmp 2025-09-07T06:13:56.8620840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cudnn 2025-09-07T06:13:56.8621670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/cudnn 2025-09-07T06:13:56.8622770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/cudnn 2025-09-07T06:13:56.8624070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-09-07T06:13:56.8624780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/decompositions_for_jvp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-09-07T06:13:56.8625980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/decompositions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-09-07T06:13:56.8628300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-09-07T06:13:56.8629320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/decompositions_for_rng.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-09-07T06:13:56.8630390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_VF.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.8631840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-09-07T06:13:56.8632540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/streams.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-09-07T06:13:56.8633610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-09-07T06:13:56.8634690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-09-07T06:13:56.8635990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/_gpu_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-09-07T06:13:56.8637140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-09-07T06:13:56.8638330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-09-07T06:13:56.8639470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_streambase.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.8640830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-09-07T06:13:56.8641460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-09-07T06:13:56.8643240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-09-07T06:13:56.8644380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-09-07T06:13:56.8646030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-09-07T06:13:56.8646680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/binary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-09-07T06:13:56.8648060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/creation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-09-07T06:13:56.8649260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/_ops_refs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-09-07T06:13:56.8650560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-09-07T06:13:56.8651710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-09-07T06:13:56.8652930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/unary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-09-07T06:13:56.8654040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/reductions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-09-07T06:13:56.8655110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/passthrough.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-09-07T06:13:56.8656250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.8658490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8659090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/lr_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8660700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/rmsprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8661930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_adafactor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8663270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_muon.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8664350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/sparse_adam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8665510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/rprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8666720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/sgd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8667940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8669130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adamax.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8670300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adagrad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8671760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/optim/_multi_tensor 2025-09-07T06:13:56.8672420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/optim/_multi_tensor 2025-09-07T06:13:56.8674790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim/_multi_tensor 2025-09-07T06:13:56.8675690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adamw.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8676880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/swa_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8683300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/lbfgs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8691940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/radam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8693700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8695440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8700250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/nadam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8701250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/asgd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8702430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8703640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adadelta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-09-07T06:13:56.8704970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_weights_only_unpickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.8706290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.8708780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8709310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/dtype_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8710470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cudagraph_trees.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8712230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/select_algorithm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8714370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/ops_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8715210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/metrics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8716310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codecache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8718580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mock_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8719620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/optimize_indexing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8720740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/freezing_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8721890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8723050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cpp_builder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8725050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cpu_vec_isa.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8726080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8728100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/analysis 2025-09-07T06:13:56.8728560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis/device_info.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/analysis 2025-09-07T06:13:56.8729610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/analysis 2025-09-07T06:13:56.8730510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis/profile_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/analysis 2025-09-07T06:13:56.8731780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_fx_ext.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8733010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8734530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8735840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mkldnn_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8737320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/async_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8738610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/pattern_matcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8740160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/quantized_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8741220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/triton_bundler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8742820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/aoti_eager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8748260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8751880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8756190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-09-07T06:13:56.8756630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/cache_dir_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-09-07T06:13:56.8757790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/triton_heuristics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-09-07T06:13:56.8760530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/runtime_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-09-07T06:13:56.8764790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/halide_helpers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-09-07T06:13:56.8772180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/coordinate_descent_tuner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-09-07T06:13:56.8774210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/triton_compat.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-09-07T06:13:56.8775320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-09-07T06:13:56.8776210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/compile_tasks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-09-07T06:13:56.8777450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/triton_helpers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-09-07T06:13:56.8778820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/autotune_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-09-07T06:13:56.8780010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/hints.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-09-07T06:13:56.8781850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/static_cuda_launcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-09-07T06:13:56.8783000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/benchmarking.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-09-07T06:13:56.8784170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/debug_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-09-07T06:13:56.8786500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/jagged_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8787940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/test_operators.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8789170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8790490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8792900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cudagraph_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8793480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/sizevars.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8794870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/ir.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8798110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analyze_preserves_zero_mask.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8799050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_fx_async.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8800190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/index_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8801310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/constant_folding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8803340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8803810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_grouped_gemm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8805170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_wrapper_gpu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8806390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/wrapper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8808640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mps_device_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8809550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/triton_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8810680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8818210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cutedsl 2025-09-07T06:13:56.8818620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cutedsl 2025-09-07T06:13:56.8819790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cutedsl 2025-09-07T06:13:56.8820960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl/cutedsl_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cutedsl 2025-09-07T06:13:56.8826430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl/cutedsl_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cutedsl 2025-09-07T06:13:56.8827350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cutedsl/cutedsl_scheduling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cutedsl 2025-09-07T06:13:56.8834240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_bmm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8834950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mps.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8843160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_hipify_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8844750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/simd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8852440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-09-07T06:13:56.8856830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-09-07T06:13:56.8857400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-09-07T06:13:56.8857770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cuda_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-09-07T06:13:56.8858170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/gemm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-09-07T06:13:56.8858520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-09-07T06:13:56.8859170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_presets.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-09-07T06:13:56.8860040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_python_evt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-09-07T06:13:56.8863570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-09-07T06:13:56.8864320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-09-07T06:13:56.8865890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-09-07T06:13:56.8866880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-09-07T06:13:56.8868370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports 2025-09-07T06:13:56.8869380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-09-07T06:13:56.8870160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cudart.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-09-07T06:13:56.8871400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-09-07T06:13:56.8872740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cuda.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda 2025-09-07T06:13:56.8873890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports 2025-09-07T06:13:56.8875110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot 2025-09-07T06:13:56.8875830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot 2025-09-07T06:13:56.8876880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-09-07T06:13:56.8877790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-09-07T06:13:56.8879130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/special.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy 2025-09-07T06:13:56.8880200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/device_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-09-07T06:13:56.8881470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cuda_env.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-09-07T06:13:56.8882670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-09-07T06:13:56.8884060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-09-07T06:13:56.8885360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cuda_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-09-07T06:13:56.8886850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/xpu 2025-09-07T06:13:56.8887550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/xpu 2025-09-07T06:13:56.8888470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu/device_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/xpu 2025-09-07T06:13:56.8889760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/triton_combo_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8891200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/memory_planning.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8892420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8893400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_flex_attention_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8894660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/wrapper_fxir.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8896070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_micro_gemm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8897770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8900350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_wrapper_cpu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8901810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/block_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8903200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/aoti_runtime 2025-09-07T06:13:56.8904060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_runtime/interface.cpp -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/aoti_runtime 2025-09-07T06:13:56.8905130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8907190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_wrapper_mps.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8908280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_template_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8909730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_gemm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8911560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/segmented_tree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8912770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpu_device_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8914250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/mtia 2025-09-07T06:13:56.8915020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/mtia 2025-09-07T06:13:56.8916070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mtia/device_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/mtia 2025-09-07T06:13:56.8917330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8919440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-09-07T06:13:56.8919940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/ck_tile_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-09-07T06:13:56.8921250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-09-07T06:13:56.8922560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-09-07T06:13:56.8923840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-09-07T06:13:56.8925000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-09-07T06:13:56.8925960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/compile_command.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-09-07T06:13:56.8927250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-09-07T06:13:56.8928540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/ck_conv_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-09-07T06:13:56.8930040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_template_buffer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-09-07T06:13:56.8931350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/ck_universal_gemm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-09-07T06:13:56.8932940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/ck_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-09-07T06:13:56.8934210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_benchmark_request.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-09-07T06:13:56.8935340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-09-07T06:13:56.8936790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/triton_split_scan.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8937900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/halide.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8939310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8940500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda_combined_scheduling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8941740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/multi_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8943020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/subgraph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8944260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/python_wrapper_mtia.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8945390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8946730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/debug_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8948130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/simd_kernel_features.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-09-07T06:13:56.8949690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/inductor_prims.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8950680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/virtualized.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8951800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/test_case.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8952970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/script.ld -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8954260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autotune_process.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8955640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/standalone_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8957050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/template_heuristics 2025-09-07T06:13:56.8957820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/template_heuristics 2025-09-07T06:13:56.8959510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/contiguous_mm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/template_heuristics 2025-09-07T06:13:56.8960830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/template_heuristics 2025-09-07T06:13:56.8962020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/gemm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/template_heuristics 2025-09-07T06:13:56.8963260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/template_heuristics 2025-09-07T06:13:56.8964490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/triton_addmm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/template_heuristics 2025-09-07T06:13:56.8968790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/decompose_k.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/template_heuristics 2025-09-07T06:13:56.8969580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/aten.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/template_heuristics 2025-09-07T06:13:56.8975830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics/base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/template_heuristics 2025-09-07T06:13:56.8976480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/await_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8983340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-09-07T06:13:56.8983760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/tracked_process_pool.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-09-07T06:13:56.8985090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-09-07T06:13:56.8986010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-09-07T06:13:56.8991720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/subproc_pool.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-09-07T06:13:56.8992700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/__main__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-09-07T06:13:56.8993820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/exc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.8999000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9000780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9007610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel_inputs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9008560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/__autotune_main__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9009780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fuzzer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9015840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comm_lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9016910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/decomposition.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9023830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-09-07T06:13:56.9024990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-09-07T06:13:56.9025440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-09-07T06:13:56.9026880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/_PadMMA100.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-09-07T06:13:56.9028070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-09-07T06:13:56.9033340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-09-07T06:13:56.9033990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-09-07T06:13:56.9035360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-09-07T06:13:56.9041840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/autoheuristic.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-09-07T06:13:56.9042630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/autoheuristic_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-09-07T06:13:56.9050200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/learned_heuristic_controller.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-09-07T06:13:56.9050960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-09-07T06:13:56.9051960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/learnedheuristic_interface.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-09-07T06:13:56.9059190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9059640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/post_grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9061230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/fsdp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9063900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/replace_random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9067970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/ddp_fusion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9069060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/numeric_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9070330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/decompose_mem_bound_mm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9071450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/reinplace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9072740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/quantization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9074960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/split_cat.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9076510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/dedupe_symint_uses.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9077740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/efficient_conv_bn_eval.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9078910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9079690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/group_batch_fusion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9081240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/pre_grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9083430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/binary_folding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9084360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/fuse_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9085850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/micro_pipeline_tp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9088010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9088510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9089760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9090930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9092110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9093530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9094760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9096070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9097330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9098490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9099970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9101800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9107260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9108130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9112870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9113680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9116400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9122530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9123620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9129970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9131000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9137970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9138760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9139960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9146330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9147420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9154770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9155930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9162810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-09-07T06:13:56.9163630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/joint_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9165120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/bucketing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9169720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/b2b_gemm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9170990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/mkldnn_fusion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9177780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/pad_mm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9178810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/freezing_patterns.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9179950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/misc_patterns.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-09-07T06:13:56.9185050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9187590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/shape_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9188380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_fx_subproc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9192960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9195220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comms_debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9197350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/remote_gemm_autotune_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9198470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mkldnn_ir.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9199880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/wrapper_benchmark.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9200900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/choices.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9202250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/remote_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9203470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comm_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9204540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compiler_bisector.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9205880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/extern_node_serializer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9206940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/bounds.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9208260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel_template_choice.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9209410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/output_code.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9210780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/custom_graph_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9211870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/freezing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9213520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/dependencies.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9214870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/tiling_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9216670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-09-07T06:13:56.9217840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/mm_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-09-07T06:13:56.9218570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/mm_grouped.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-09-07T06:13:56.9219910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-09-07T06:13:56.9221060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/mm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-09-07T06:13:56.9222480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/bmm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-09-07T06:13:56.9223690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-09-07T06:13:56.9225090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/mm_plus_mm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-09-07T06:13:56.9226590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex 2025-09-07T06:13:56.9227270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/flex_decoding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex 2025-09-07T06:13:56.9228560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex 2025-09-07T06:13:56.9229680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/flex_cpu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex 2025-09-07T06:13:56.9230780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex 2025-09-07T06:13:56.9232220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex/templates 2025-09-07T06:13:56.9233000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates/flex_backwards.py.jinja -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex/templates 2025-09-07T06:13:56.9234330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates/flex_decode.py.jinja -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex/templates 2025-09-07T06:13:56.9235640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates/utilities.py.jinja -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex/templates 2025-09-07T06:13:56.9239840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates/flex_attention.py.jinja -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex/templates 2025-09-07T06:13:56.9240680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/templates/common.py.jinja -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex/templates 2025-09-07T06:13:56.9241700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex/flex_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel/flex 2025-09-07T06:13:56.9243270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/package 2025-09-07T06:13:56.9243950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package/package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/package 2025-09-07T06:13:56.9245070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package/build_package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/package 2025-09-07T06:13:56.9246260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/package 2025-09-07T06:13:56.9247520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/loop_body.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9248710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/subgraph_lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-09-07T06:13:56.9250860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9251130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9253120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark 2025-09-07T06:13:56.9253850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark 2025-09-07T06:13:56.9255130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-09-07T06:13:56.9256070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/binary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-09-07T06:13:56.9257020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/sparse_binary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-09-07T06:13:56.9258190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/sparse_unary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-09-07T06:13:56.9259310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-09-07T06:13:56.9260200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/spectral.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-09-07T06:13:56.9261320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/unary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-09-07T06:13:56.9262710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-09-07T06:13:56.9263410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/timer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-09-07T06:13:56.9264840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-09-07T06:13:56.9265970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/sparse_fuzzer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-09-07T06:13:56.9266960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-09-07T06:13:56.9268210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-09-07T06:13:56.9269390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/fuzzer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-09-07T06:13:56.9270970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/timeit_template.cpp -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-09-07T06:13:56.9272260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-09-07T06:13:56.9273080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-09-07T06:13:56.9274700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-09-07T06:13:56.9278430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-09-07T06:13:56.9279180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-09-07T06:13:56.9280110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-09-07T06:13:56.9281250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-09-07T06:13:56.9282430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/cpp_jit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-09-07T06:13:56.9283770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/compare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-09-07T06:13:56.9285000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/_stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-09-07T06:13:56.9286700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-09-07T06:13:56.9287140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/op_benchmark.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-09-07T06:13:56.9288220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-09-07T06:13:56.9289140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/simple_timeit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-09-07T06:13:56.9290270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/fuzzer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-09-07T06:13:56.9291470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/spectral_ops_fuzz_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-09-07T06:13:56.9292590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/compare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-09-07T06:13:56.9293890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_appending_byte_serializer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9294930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_foreach_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9296100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9297250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_traceback.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9298450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_cpp_extension_versioner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9299750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_mode_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9301050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/checkpoint.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9302400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/show_pickle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9303540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/deterministic.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9304800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/file_baton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9306000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backend_registration.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9307340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/module_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9308420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_zoo.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9309540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_zip.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9310770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/collect_env.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9312150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/throughput_benchmark.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9313300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/dlpack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9314700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-09-07T06:13:56.9315340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-09-07T06:13:56.9316830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-09-07T06:13:56.9317700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/symbol.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-09-07T06:13:56.9318830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/numbers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-09-07T06:13:56.9319950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/reference.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-09-07T06:13:56.9321040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/singleton_int.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-09-07T06:13:56.9322270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/value_ranges.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-09-07T06:13:56.9323640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/printers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-09-07T06:13:56.9324950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/solve.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-09-07T06:13:56.9325950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/interp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-09-07T06:13:56.9327320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/serialization 2025-09-07T06:13:56.9328060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/serialization 2025-09-07T06:13:56.9329230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/serialization 2025-09-07T06:13:56.9330530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/backcompat 2025-09-07T06:13:56.9331200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backcompat/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/backcompat 2025-09-07T06:13:56.9332410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_cxx_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9333720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9334880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_functools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9339060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_import_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9339880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_cpp_embed_headers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9343390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-09-07T06:13:56.9343850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify/version.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-09-07T06:13:56.9348120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify/cuda_to_hip_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-09-07T06:13:56.9352880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify/constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-09-07T06:13:56.9353710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-09-07T06:13:56.9354920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify/hipify_python.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-09-07T06:13:56.9356270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_dtype_abbrs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9357460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_config_typing.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9358630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bundled_inputs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9360280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/bottleneck 2025-09-07T06:13:56.9360970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/bottleneck 2025-09-07T06:13:56.9362180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck/__main__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/bottleneck 2025-09-07T06:13:56.9363040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_helion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9364160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/mkldnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9365640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/viz 2025-09-07T06:13:56.9366280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/viz 2025-09-07T06:13:56.9367170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz/_cycles.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/viz 2025-09-07T06:13:56.9368510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/cpp_backtrace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9369630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_contextlib.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9370920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/jit 2025-09-07T06:13:56.9371550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/jit 2025-09-07T06:13:56.9372470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit/log_extract.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/jit 2025-09-07T06:13:56.9373620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_python_dispatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9375250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-09-07T06:13:56.9375940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_pytorch_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-09-07T06:13:56.9377190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_proto_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-09-07T06:13:56.9378290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-09-07T06:13:56.9379510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_embedding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-09-07T06:13:56.9380710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_onnx_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-09-07T06:13:56.9381870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/summary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-09-07T06:13:56.9383280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_convert_np.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-09-07T06:13:56.9384480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/writer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-09-07T06:13:56.9385790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-09-07T06:13:56.9386900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_exposed_in.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9388070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_filelock.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9389310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_thunk.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9390460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_config_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9391810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_device.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9392930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/flop_counter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9394340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_typing_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9395490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_stats.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9396950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-09-07T06:13:56.9397570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/code.js -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-09-07T06:13:56.9398820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/preact.mjs -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-09-07T06:13:56.9400000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/skeleton.html -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-09-07T06:13:56.9401160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/htm.mjs -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-09-07T06:13:56.9402320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-09-07T06:13:56.9403570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/__main__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-09-07T06:13:56.9404790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/cpp_extension.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9406970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_backport_slots.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9407900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_get_clean_triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9408900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9409990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_content_store.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9411460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-09-07T06:13:56.9412370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-09-07T06:13:56.9413020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/fetch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-09-07T06:13:56.9414210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/worker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-09-07T06:13:56.9415340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/collate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-09-07T06:13:56.9416530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/pin_memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-09-07T06:13:56.9417660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-09-07T06:13:56.9418900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/signal_handling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-09-07T06:13:56.9420110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/graph_settings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-09-07T06:13:56.9421300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-09-07T06:13:56.9422390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-09-07T06:13:56.9423460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/dataset.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-09-07T06:13:56.9424750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-09-07T06:13:56.9425890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/backward_compatibility.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-09-07T06:13:56.9427040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/dataloader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-09-07T06:13:56.9428510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/sampler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-09-07T06:13:56.9430030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-09-07T06:13:56.9430790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/_decorator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-09-07T06:13:56.9432350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-09-07T06:13:56.9433120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-09-07T06:13:56.9434500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe/datapipes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-09-07T06:13:56.9435750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe/dataframe_wrapper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-09-07T06:13:56.9437070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe/structures.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-09-07T06:13:56.9438470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe/dataframes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-09-07T06:13:56.9439890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-09-07T06:13:56.9440660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/fileopener.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-09-07T06:13:56.9441860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/callable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-09-07T06:13:56.9443110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/sharding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-09-07T06:13:56.9444320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/grouping.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-09-07T06:13:56.9445480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-09-07T06:13:56.9446780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/selecting.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-09-07T06:13:56.9448000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/combining.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-09-07T06:13:56.9449200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/filelister.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-09-07T06:13:56.9450370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-09-07T06:13:56.9451720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/combinatorics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-09-07T06:13:56.9452970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/streamreader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-09-07T06:13:56.9454230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/routeddecoder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-09-07T06:13:56.9455320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/_typing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-09-07T06:13:56.9456450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/_hook_iterator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-09-07T06:13:56.9457800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/datapipe.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-09-07T06:13:56.9459080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-09-07T06:13:56.9460480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-09-07T06:13:56.9461510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils/decoder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-09-07T06:13:56.9462390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-09-07T06:13:56.9463400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-09-07T06:13:56.9464460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils/snapshot.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-09-07T06:13:56.9465570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/datapipe.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-09-07T06:13:56.9467090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-09-07T06:13:56.9467890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/callable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-09-07T06:13:56.9469590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/grouping.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-09-07T06:13:56.9471020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-09-07T06:13:56.9472090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/combining.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-09-07T06:13:56.9473240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-09-07T06:13:56.9474530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/combinatorics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-09-07T06:13:56.9475730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/gen_pyi.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-09-07T06:13:56.9477320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/_strobelight 2025-09-07T06:13:56.9477980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight/cli_function_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_strobelight 2025-09-07T06:13:56.9479050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_strobelight 2025-09-07T06:13:56.9479930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_ordered_set.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9481200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/weak.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9482410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/mobile_optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-09-07T06:13:56.9483530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.9485640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_namedtensor_internals.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.9486390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/return_types.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.9487750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/types.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.9488920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_linalg_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.9490120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__config__.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.9491180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.9492880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-09-07T06:13:56.9493500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/contrib/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-09-07T06:13:56.9494440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/contrib/_tensorboard_vis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-09-07T06:13:56.9495490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.9496550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/hub.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.9498580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9499020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/observer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9500260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fuse_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9501460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantization_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9502650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9504110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-09-07T06:13:56.9504600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/graph_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-09-07T06:13:56.9505820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/fusion_patterns.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-09-07T06:13:56.9506960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/_equalize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-09-07T06:13:56.9508140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/quantization_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-09-07T06:13:56.9509290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/convert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-09-07T06:13:56.9510370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-09-07T06:13:56.9511560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-09-07T06:13:56.9512850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/pattern_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-09-07T06:13:56.9513970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/fuse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-09-07T06:13:56.9515090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/match_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-09-07T06:13:56.9516280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/prepare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-09-07T06:13:56.9517590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/quantization_patterns.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-09-07T06:13:56.9518740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/_numeric_suite.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9520040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fake_quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9521110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/qconfig.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9522580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9523990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/_quantized_conversions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9525120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9526320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9527630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fuser_method_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9528760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize_jit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9529970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quant_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9531190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9532370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/_numeric_suite_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-09-07T06:13:56.9533560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor_str.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.9535190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_sources.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.9536360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/special 2025-09-07T06:13:56.9537040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/special/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/special 2025-09-07T06:13:56.9539070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9539480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_profiler.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9540650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_onnx.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9541850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_c10d.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9543270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_autograd.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9544410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_monitor.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9545600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_itt.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9547620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C/_export 2025-09-07T06:13:56.9547930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_export 2025-09-07T06:13:56.9549070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export/pt2_archive_constants.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_export 2025-09-07T06:13:56.9550250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_lazy.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9551390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9555030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_nvtx.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9555930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cpu.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9557130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_nn.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9558320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cusparselt.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9559510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_instruction_counter.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9560740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_jit_tree_views.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9562100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_lazy_ts_backend.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9563050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_functorch.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9564300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_VariableFunctions.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9571400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_rpc.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9572530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-09-07T06:13:56.9573260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-09-07T06:13:56.9574400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo/compiled_autograd.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-09-07T06:13:56.9575660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo/guards.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-09-07T06:13:56.9576770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo/eval_frame.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-09-07T06:13:56.9577930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_verbose.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9579130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_aoti.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9580310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_functions.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9581490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_rpc_testing.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9587040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cudnn.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9590000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_autograd.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-09-07T06:13:56.9597790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-09-07T06:13:56.9598610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9599550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/generated 2025-09-07T06:13:56.9600310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/generated 2025-09-07T06:13:56.9601320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated/annotated_fn_args.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/generated 2025-09-07T06:13:56.9607450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-09-07T06:13:56.9607970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-09-07T06:13:56.9611480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-09-07T06:13:56.9613290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-09-07T06:13:56.9614470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/refs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-09-07T06:13:56.9615880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:56.9616600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/signal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:56.9617990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:56.9619200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/_masked.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:56.9620670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/linalg.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:56.9622450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:56.9623940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/fft.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:56.9625330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/special.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:56.9626680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/nested.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-09-07T06:13:56.9628050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_dtype.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9629320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_pruning.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9630750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/test_module 2025-09-07T06:13:56.9631490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/test_module 2025-09-07T06:13:56.9632530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module/future_div.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/test_module 2025-09-07T06:13:56.9635320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module/no_future_div.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/test_module 2025-09-07T06:13:56.9636090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/fake_config_module3.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9643850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/hop_db.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9644720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/triton_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9651240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/static_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9652220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/subclasses.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9653340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_nn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9659540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/custom_op_db.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9660580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/fake_config_module2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9667520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/autocast_test_lists.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9668280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_fsdp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9669740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/two_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9676550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/torchbind_impls.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9677710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-09-07T06:13:56.9678550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_tensor 2025-09-07T06:13:56.9679310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_tensor 2025-09-07T06:13:56.9680260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor/common_dtensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_tensor 2025-09-07T06:13:56.9683560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-09-07T06:13:56.9684930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn 2025-09-07T06:13:56.9685730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn 2025-09-07T06:13:56.9686790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn/api 2025-09-07T06:13:56.9687550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn/api 2025-09-07T06:13:56.9688530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api/remote_module_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn/api 2025-09-07T06:13:56.9689900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/fake_pg.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-09-07T06:13:56.9691120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-09-07T06:13:56.9697070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard 2025-09-07T06:13:56.9697800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/test_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard 2025-09-07T06:13:56.9698090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-09-07T06:13:56.9698640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-09-07T06:13:56.9699160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-09-07T06:13:56.9699710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-09-07T06:13:56.9705870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard 2025-09-07T06:13:56.9708710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/checkpoint_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-09-07T06:13:56.9713450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/distributed_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-09-07T06:13:56.9714570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:56.9715460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:56.9716660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:56.9722640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:56.9723310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/dist_autograd_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:56.9725590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:56.9726500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:56.9731870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-09-07T06:13:56.9732400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-09-07T06:13:56.9733350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-09-07T06:13:56.9734590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit/rpc_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-09-07T06:13:56.9740940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-09-07T06:13:56.9741880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-09-07T06:13:56.9742660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-09-07T06:13:56.9743740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-09-07T06:13:56.9751260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-09-07T06:13:56.9757780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/rpc_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:56.9762300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/dist_optimizer_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-09-07T06:13:56.9771800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/distributed_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-09-07T06:13:56.9776930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/multi_threaded_pg.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-09-07T06:13:56.9783200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/common_state_dict.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-09-07T06:13:56.9784190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-09-07T06:13:56.9786960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_optimizers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9788600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_device_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9790190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/autograd_function_db.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9791660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_mkldnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9796810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/inductor_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9798430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9801280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9802330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-09-07T06:13:56.9802830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-09-07T06:13:56.9804210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/fake_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-09-07T06:13:56.9805460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/aot_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-09-07T06:13:56.9806620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/make_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-09-07T06:13:56.9808020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/generate_tests.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-09-07T06:13:56.9809770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/autograd_registration.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-09-07T06:13:56.9815080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_methods_invocations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9831990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/custom_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9837280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/codegen 2025-09-07T06:13:56.9837720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/codegen/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/codegen 2025-09-07T06:13:56.9839000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/logging_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9840210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/hypothesis_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9846430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_cuda.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9848880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_quantization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9850360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9856810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_jit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9857980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_mps.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9865480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/jit_metaprogramming_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9866570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/dynamo_test_failures.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9867780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/check_kernel_launches.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9871040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9875090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/quantization_torch_package_models.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9880060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/data 2025-09-07T06:13:56.9880490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data/network1.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/data 2025-09-07T06:13:56.9881470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/data 2025-09-07T06:13:56.9884160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data/network2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/data 2025-09-07T06:13:56.9887940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_quantized.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9888780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_dist_composable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9889900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_subclass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9890980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/composite_compliance.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9892340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/logging_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9893410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/dist_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9894530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/fake_config_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9895680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/jit_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-09-07T06:13:56.9897010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_creation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-09-07T06:13:56.9898110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-09-07T06:13:56.9899250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_comparison.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-09-07T06:13:56.9900720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-09-07T06:13:56.9901910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vmap_internals.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.9903300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-09-07T06:13:56.9903960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-09-07T06:13:56.9905110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/fake_profile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-09-07T06:13:56.9906190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/infer_schema.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-09-07T06:13:56.9907270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/simple_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-09-07T06:13:56.9908390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-09-07T06:13:56.9909690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-09-07T06:13:56.9910890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/fake_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-09-07T06:13:56.9911910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-09-07T06:13:56.9917940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-09-07T06:13:56.9918800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/fake_class_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-09-07T06:13:56.9921510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.9922790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lowrank.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.9925970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_appdirs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:56.9929630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-09-07T06:13:56.9930180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-09-07T06:13:56.9931380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-09-07T06:13:56.9932660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-09-07T06:13:56.9936140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-09-07T06:13:56.9936500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/autocast_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-09-07T06:13:56.9937800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/grad_scaler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-09-07T06:13:56.9942160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-09-07T06:13:56.9945410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9946030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_ir_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9950080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_monkeytype_config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9951500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_decompositions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9954400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_recursive.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9959250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9960130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9963450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/quantized.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9968410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_script.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9969620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_script.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9976400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_shape_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9978000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_decomposition_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9984350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_freeze.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9985150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_pickle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9986240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_check.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9992540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/unsupported_tensor_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:56.9993410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/frontend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:57.0003750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/supported_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:57.0012040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:57.0012850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_fuser.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:57.0014010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_builtins.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:57.0015170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_dataclass_impls.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:57.0018810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:57.0020120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit/_passes 2025-09-07T06:13:57.0020790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes/_property_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit/_passes 2025-09-07T06:13:57.0026340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit/_passes 2025-09-07T06:13:57.0026910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/generate_bytecode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:57.0028040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:57.0030400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit/mobile 2025-09-07T06:13:57.0030710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/mobile/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit/mobile 2025-09-07T06:13:57.0031850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_async.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:57.0033080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/annotations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:57.0034370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_await.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-09-07T06:13:57.0036590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0036880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0038120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/cache_size.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0039180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/callback.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0040320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/comptime.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0041630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0043000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/_trace_wrapped_higher_order_op.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0044200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0045640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/precompile_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0047040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_break_hints.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0048270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0049770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/guards.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0052430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/test_minifier_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0053440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/create_parameter_op.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0054750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/aot_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0056140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_region_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0057550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/device_interface.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0059810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-09-07T06:13:57.0060190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-09-07T06:13:57.0061510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-09-07T06:13:57.0062480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/debugging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-09-07T06:13:57.0064040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-09-07T06:13:57.0065500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-09-07T06:13:57.0066710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/inductor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-09-07T06:13:57.0067970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/onnxrt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-09-07T06:13:57.0069290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/tvm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-09-07T06:13:57.0070540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/cudagraphs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-09-07T06:13:57.0071810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/tensorrt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-09-07T06:13:57.0073090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/torchxla.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-09-07T06:13:57.0074440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0075800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0076910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/mutation_guard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0078040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0081650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/metrics_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0082590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/bytecode_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0083790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/tensor_version_op.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0089850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/external_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0090620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/test_case.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0097570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0098680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/resume_execution.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0100140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/output_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0105370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/compiled_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0106840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/exc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0114310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0116910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0117310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0122190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/iter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0124540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/misc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0132150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/lists.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0134570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/script_object.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0137730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/torch_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0138480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0142630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/user_defined.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0145140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/nn_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0146210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/builder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0148130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0149620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/higher_order_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0152050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/sdpa.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0152740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0153960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0155030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/builtin.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0157240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/constant.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0158020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/lazy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0159160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/torch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0160830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/ctx_manager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0162140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/dicts.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0163560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-09-07T06:13:57.0167200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_break_registry.json -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0169480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-09-07T06:13:57.0169860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro/after_dynamo.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-09-07T06:13:57.0170740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-09-07T06:13:57.0171610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro/after_aot.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-09-07T06:13:57.0173020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro/aoti.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-09-07T06:13:57.0174390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/test_dont_skip_tracing_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0175570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/replay_record.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0176610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/side_effects.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0178450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-09-07T06:13:57.0179130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/functools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-09-07T06:13:57.0180260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/builtins.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-09-07T06:13:57.0181430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/operator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-09-07T06:13:57.0182700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/os.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-09-07T06:13:57.0183890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-09-07T06:13:57.0185230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-09-07T06:13:57.0186450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/_collections.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-09-07T06:13:57.0187660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/loader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-09-07T06:13:57.0188900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-09-07T06:13:57.0190230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/struct.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-09-07T06:13:57.0191420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/sys.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-09-07T06:13:57.0192540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-09-07T06:13:57.0193610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/itertools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-09-07T06:13:57.0194680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/trace_rules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0196970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/bytecode_transformation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0198190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/convert_frame.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0199770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/funcname_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0200840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/testing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0202290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/pgo.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0203620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0204650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/symbolic_convert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0206860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/codegen.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0207750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/source.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0209080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/eval_frame.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0210690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/functional_export.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0212090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/code_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0213280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_deduplication.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0214660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/current_scope_id.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0215790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/debug_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0217100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/decorators.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-09-07T06:13:57.0218490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_environment.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:57.0220130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-09-07T06:13:57.0220720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/metrics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-09-07T06:13:57.0221940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-09-07T06:13:57.0223090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-09-07T06:13:57.0224280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/tensor_factory_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-09-07T06:13:57.0225340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-09-07T06:13:57.0226520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/extract_compiled_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-09-07T06:13:57.0227660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/ir_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-09-07T06:13:57.0228750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/ts_backend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-09-07T06:13:57.0229990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/computation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-09-07T06:13:57.0230980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/closure.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-09-07T06:13:57.0232150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/device_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-09-07T06:13:57.0233260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/storage.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:57.0234800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C.cpython-312-darwin.so -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:57.0237000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao 2025-09-07T06:13:57.0237700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn 2025-09-07T06:13:57.0238580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat 2025-09-07T06:13:57.0239450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic 2025-09-07T06:13:57.0240200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic 2025-09-07T06:13:57.0241600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2025-09-07T06:13:57.0242450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2025-09-07T06:13:57.0243570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2025-09-07T06:13:57.0244670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat 2025-09-07T06:13:57.0246100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-09-07T06:13:57.0246750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-09-07T06:13:57.0247920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-09-07T06:13:57.0249060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-09-07T06:13:57.0250240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules/embedding_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-09-07T06:13:57.0251540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized 2025-09-07T06:13:57.0252470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic 2025-09-07T06:13:57.0253190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic 2025-09-07T06:13:57.0254610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-09-07T06:13:57.0255420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-09-07T06:13:57.0256570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-09-07T06:13:57.0257690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-09-07T06:13:57.0259060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-09-07T06:13:57.0260470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized 2025-09-07T06:13:57.0261600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized 2025-09-07T06:13:57.0263290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-09-07T06:13:57.0263910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/batchnorm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-09-07T06:13:57.0265190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/functional_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-09-07T06:13:57.0266250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-09-07T06:13:57.0267400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-09-07T06:13:57.0268510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-09-07T06:13:57.0269720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-09-07T06:13:57.0270870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/dropout.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-09-07T06:13:57.0271940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-09-07T06:13:57.0273360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/normalization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-09-07T06:13:57.0274530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-09-07T06:13:57.0275750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/embedding_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-09-07T06:13:57.0278480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference 2025-09-07T06:13:57.0279060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference 2025-09-07T06:13:57.0280430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-09-07T06:13:57.0281150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-09-07T06:13:57.0285430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-09-07T06:13:57.0286240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-09-07T06:13:57.0292920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-09-07T06:13:57.0293850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-09-07T06:13:57.0300340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-09-07T06:13:57.0301600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn 2025-09-07T06:13:57.0308520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable 2025-09-07T06:13:57.0308920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable 2025-09-07T06:13:57.0310290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable/modules 2025-09-07T06:13:57.0311050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable/modules 2025-09-07T06:13:57.0312190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules/activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable/modules 2025-09-07T06:13:57.0313460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable/modules 2025-09-07T06:13:57.0315270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic 2025-09-07T06:13:57.0315720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat 2025-09-07T06:13:57.0316440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat 2025-09-07T06:13:57.0317830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-09-07T06:13:57.0318480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules/conv_fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-09-07T06:13:57.0319860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-09-07T06:13:57.0321040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-09-07T06:13:57.0322170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules/linear_fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-09-07T06:13:57.0323450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized 2025-09-07T06:13:57.0324270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic 2025-09-07T06:13:57.0325110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic 2025-09-07T06:13:57.0326410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-09-07T06:13:57.0327210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-09-07T06:13:57.0328380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-09-07T06:13:57.0329450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized 2025-09-07T06:13:57.0330890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-09-07T06:13:57.0331510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules/bn_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-09-07T06:13:57.0332710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-09-07T06:13:57.0333910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules/conv_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-09-07T06:13:57.0335040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-09-07T06:13:57.0336140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules/conv_add.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-09-07T06:13:57.0337150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic 2025-09-07T06:13:57.0338560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/modules 2025-09-07T06:13:57.0339320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules/fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/modules 2025-09-07T06:13:57.0340450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/modules 2025-09-07T06:13:57.0341690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse 2025-09-07T06:13:57.0342560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized 2025-09-07T06:13:57.0343410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2025-09-07T06:13:57.0344150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2025-09-07T06:13:57.0345360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2025-09-07T06:13:57.0346520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized 2025-09-07T06:13:57.0347590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized 2025-09-07T06:13:57.0348740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized 2025-09-07T06:13:57.0349940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse 2025-09-07T06:13:57.0351310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns 2025-09-07T06:13:57.0352150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-09-07T06:13:57.0352800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/graph_passes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-09-07T06:13:57.0354190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/weight_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-09-07T06:13:57.0355300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/graph_matcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-09-07T06:13:57.0356580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-09-07T06:13:57.0357440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-09-07T06:13:57.0358730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/pattern_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-09-07T06:13:57.0359860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/ns_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-09-07T06:13:57.0361090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/n_shadows_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-09-07T06:13:57.0362480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-09-07T06:13:57.0363750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/qconfig_multi_mapping.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-09-07T06:13:57.0364870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/_numeric_suite.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns 2025-09-07T06:13:57.0366070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns 2025-09-07T06:13:57.0366950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/_numeric_suite_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns 2025-09-07T06:13:57.0368260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao 2025-09-07T06:13:57.0369790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0370650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/observer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0371970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fuse_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0373150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/_learnable_fake_quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0374520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-09-07T06:13:57.0375320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/_common_operator_config_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-09-07T06:13:57.0376610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/qnnpack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-09-07T06:13:57.0377730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/fbgemm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-09-07T06:13:57.0378840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-09-07T06:13:57.0380080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/native.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-09-07T06:13:57.0381220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/onednn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-09-07T06:13:57.0382540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-09-07T06:13:57.0383610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/_qnnpack_pt2e.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-09-07T06:13:57.0384790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/executorch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-09-07T06:13:57.0386090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/backend_config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-09-07T06:13:57.0387280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/x86.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-09-07T06:13:57.0389120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/tensorrt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-09-07T06:13:57.0390290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantization_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0399970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/_correct_bias.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0405530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-09-07T06:13:57.0406090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/port_metadata_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-09-07T06:13:57.0407450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/export_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-09-07T06:13:57.0408630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/qat_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-09-07T06:13:57.0410040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/duplicate_dq_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-09-07T06:13:57.0411150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-09-07T06:13:57.0413140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/graph_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-09-07T06:13:57.0414110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-09-07T06:13:57.0415220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e/representation 2025-09-07T06:13:57.0415990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e/representation 2025-09-07T06:13:57.0417180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation/rewrite.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e/representation 2025-09-07T06:13:57.0418420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-09-07T06:13:57.0419690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/_affine_quantization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-09-07T06:13:57.0421030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/prepare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-09-07T06:13:57.0422270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/_numeric_debugger.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-09-07T06:13:57.0423450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0425400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0425810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/graph_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0427040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/lower_to_fbgemm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0428290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_equalize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0429650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/lower_to_qnnpack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0430810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/convert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0432250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0433640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-09-07T06:13:57.0434380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report/detector.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-09-07T06:13:57.0435950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report/model_report_visualizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-09-07T06:13:57.0437220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report/model_report_observer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-09-07T06:13:57.0438370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-09-07T06:13:57.0439250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report/model_report.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-09-07T06:13:57.0440520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/quantize_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0441650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0443040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/pattern_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0444430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_lower_to_native_backend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0445850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/custom_config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0447140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/fuse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0448280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/qconfig_mapping_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0449380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/match_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0450520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/prepare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0452150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/tracer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0453310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_decomposed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0454650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/fuse_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0456180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/lstm_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-09-07T06:13:57.0461480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/_equalize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0462480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fake_quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0470960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/qconfig.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0478940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0480470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/qconfig_mapping.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0487880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0488650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0490060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fuser_method_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0491290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantize_jit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0492440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantize_pt2e.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0493810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-09-07T06:13:57.0494540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/embedding_quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-09-07T06:13:57.0495760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/x86_inductor_quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-09-07T06:13:57.0497250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/xnnpack_quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-09-07T06:13:57.0498380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/composable_quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-09-07T06:13:57.0499640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/xpu_inductor_quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-09-07T06:13:57.0501180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-09-07T06:13:57.0502410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-09-07T06:13:57.0503590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-09-07T06:13:57.0504880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-09-07T06:13:57.0506150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quant_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0507340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantize_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-09-07T06:13:57.0508860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning 2025-09-07T06:13:57.0509730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-09-07T06:13:57.0510590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier/weight_norm_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-09-07T06:13:57.0511700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-09-07T06:13:57.0512600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-09-07T06:13:57.0513800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-09-07T06:13:57.0514930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier/base_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-09-07T06:13:57.0516260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental 2025-09-07T06:13:57.0517190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-09-07T06:13:57.0518150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-09-07T06:13:57.0519080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-09-07T06:13:57.0519990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-09-07T06:13:57.0521180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-09-07T06:13:57.0522150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-09-07T06:13:57.0523310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-09-07T06:13:57.0524250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-09-07T06:13:57.0525490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-09-07T06:13:57.0526720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-09-07T06:13:57.0527840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-09-07T06:13:57.0529120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:57.0529880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/FPGM_pruner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:57.0531070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/saliency_pruner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:57.0532230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:57.0533650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:57.0534970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/prune_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:57.0536510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:57.0538030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/parametrization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:57.0539570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/match_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-09-07T06:13:57.0540830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental 2025-09-07T06:13:57.0542320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2025-09-07T06:13:57.0543350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2025-09-07T06:13:57.0544940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2025-09-07T06:13:57.0546200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2025-09-07T06:13:57.0547200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2025-09-07T06:13:57.0548800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2025-09-07T06:13:57.0555250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-09-07T06:13:57.0555900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler/base_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-09-07T06:13:57.0562380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler/cubic_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-09-07T06:13:57.0563170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-09-07T06:13:57.0564170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler/lambda_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-09-07T06:13:57.0565310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning 2025-09-07T06:13:57.0566480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning 2025-09-07T06:13:57.0568050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-09-07T06:13:57.0568570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-09-07T06:13:57.0569740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-09-07T06:13:57.0570850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-09-07T06:13:57.0572270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-09-07T06:13:57.0572940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch_python.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-09-07T06:13:57.1199550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-09-07T06:13:57.1200230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch_global_deps.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-09-07T06:13:57.1200870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libomp.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-09-07T06:13:57.1202430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm_windows 2025-09-07T06:13:57.1203200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm_windows/libshm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm_windows 2025-09-07T06:13:57.1204630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-09-07T06:13:57.1205250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm/err.h -> build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-09-07T06:13:57.1206560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm/libshm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-09-07T06:13:57.1207690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm/socket.h -> build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-09-07T06:13:57.1208820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm/alloc_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-09-07T06:13:57.1210090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch_cpu.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-09-07T06:13:58.8534990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libc10.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-09-07T06:13:58.8544060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-09-07T06:13:58.8545620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_VF.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:58.8554510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:58.8555690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/py.typed -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:58.8556770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lobpcg.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:58.8559230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-09-07T06:13:58.8560190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/linalg 2025-09-07T06:13:58.8560850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/linalg/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs/linalg 2025-09-07T06:13:58.8562420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn 2025-09-07T06:13:58.8563280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn 2025-09-07T06:13:58.8565140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn/functional 2025-09-07T06:13:58.8565750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/functional/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn/functional 2025-09-07T06:13:58.8567300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/_conversions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-09-07T06:13:58.8568510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-09-07T06:13:58.8571320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/special 2025-09-07T06:13:58.8571870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/special/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs/special 2025-09-07T06:13:58.8572970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/fft.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-09-07T06:13:58.8574450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fft 2025-09-07T06:13:58.8575090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fft/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fft 2025-09-07T06:13:58.8576660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__future__.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:58.8578210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-09-07T06:13:58.8578940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_memory_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-09-07T06:13:58.8580360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/itt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-09-07T06:13:58.8581520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_pattern_matcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-09-07T06:13:58.8582780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-09-07T06:13:58.8584020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-09-07T06:13:58.8585460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/python_tracer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-09-07T06:13:58.8586720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-09-07T06:13:58.8588070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-09-07T06:13:58.8588750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/_semi_structured_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-09-07T06:13:58.8590170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/_semi_structured_conversions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-09-07T06:13:58.8591210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-09-07T06:13:58.8592790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/semi_structured.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-09-07T06:13:58.8594100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/_triton_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-09-07T06:13:58.8595670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/_triton_ops_meta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-09-07T06:13:58.8599760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_awaits 2025-09-07T06:13:58.8600210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_awaits 2025-09-07T06:13:58.8601390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_guards.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:58.8602730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_python_dispatcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:58.8604210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8604850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_safeguard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8606280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/experimental 2025-09-07T06:13:58.8606950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/experimental 2025-09-07T06:13:58.8608350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/experimental 2025-09-07T06:13:58.8609500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/exported_program.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8610900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/unflatten.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8612460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8613820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/custom_obj.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8615250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/passes 2025-09-07T06:13:58.8615840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/passes 2025-09-07T06:13:58.8617070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_remove_effect_tokens_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8618280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_remove_auto_functionalized_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8619430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8620660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_unlift.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8621970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8623620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/graph_signature.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8624890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_wrapper_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8626130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/decomp_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8627440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-09-07T06:13:58.8628120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive/_package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-09-07T06:13:58.8629690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive/_package_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-09-07T06:13:58.8650710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive/constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-09-07T06:13:58.8660770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-09-07T06:13:58.8661840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_swap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8663340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_draft_export.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8664730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/dynamic_shapes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8666300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_tree_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8667490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_leakage_detection_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-09-07T06:13:58.8668900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nested 2025-09-07T06:13:58.8669850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-09-07T06:13:58.8670570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal/nested_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-09-07T06:13:58.8672000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-09-07T06:13:58.8672860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal/ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-09-07T06:13:58.8674530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal/sdpa.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-09-07T06:13:58.8675890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal/nested_int.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-09-07T06:13:58.8677010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested 2025-09-07T06:13:58.8678610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C_flatbuffer 2025-09-07T06:13:58.8679240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C_flatbuffer/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C_flatbuffer 2025-09-07T06:13:58.8680370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_classes.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:58.8681820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-09-07T06:13:58.8682530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight/cli_function_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-09-07T06:13:58.8683690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-09-07T06:13:58.8684670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight/compile_time_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-09-07T06:13:58.8686100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/numa 2025-09-07T06:13:58.8686790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/numa/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/numa 2025-09-07T06:13:58.8687760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/numa/binding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/numa 2025-09-07T06:13:58.8689380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-09-07T06:13:58.8690010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-09-07T06:13:58.8691300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-09-07T06:13:58.8692340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-09-07T06:13:58.8693820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/signal 2025-09-07T06:13:58.8694430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/signal/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/signal 2025-09-07T06:13:58.8695890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/signal/windows 2025-09-07T06:13:58.8696490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/signal/windows 2025-09-07T06:13:58.8697750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows/windows.py -> build/bdist.macosx-14.0-arm64/wheel/torch/signal/windows 2025-09-07T06:13:58.8698930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:58.8701260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8701790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/inverse_gamma.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8711830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/laplace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8720480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/relaxed_bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8729370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/categorical.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8733050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/transforms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8742090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/dirichlet.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8753290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/log_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8798420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/transformed_distribution.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8816330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/geometric.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8817280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/generalized_pareto.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8818520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/weibull.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8822370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/studentT.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8824550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/multivariate_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8825710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8831390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/poisson.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8832220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/beta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8833340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/kumaraswamy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8834550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/half_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8835740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/relaxed_categorical.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8837020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/lowrank_multivariate_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8838340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/half_cauchy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8839200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8840430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/lkj_cholesky.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8845990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/independent.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8878640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/multinomial.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8890790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/exponential.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8897090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/pareto.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8898090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/negative_binomial.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8899150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/cauchy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8900350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/von_mises.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8901860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/distribution.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8903080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/gumbel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8904930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/constraint_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8907350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8912460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/kl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8913670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/mixture_same_family.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8914890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/continuous_bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8915980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/fishersnedecor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8917230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/constraints.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8918450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/uniform.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8919700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8920810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/exp_family.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8922010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/logistic_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8923160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/one_hot_categorical.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8924300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/wishart.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8925410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/gamma.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8926560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/chi2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8927790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/binomial.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-09-07T06:13:58.8929270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8929960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/package_exporter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8931780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/file_structure_representation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8932830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_mock.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8934090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/importer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8935130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_stdlib.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8936330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_mangling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8937440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8938610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/package_importer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8939870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_package_unpickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8941010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/glob_group.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8942230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/find_file_dependencies.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8943370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_package_pickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8944770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-09-07T06:13:58.8945480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze/trace_dependencies.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-09-07T06:13:58.8946880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze/find_first_use_of_broken_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-09-07T06:13:58.8948000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-09-07T06:13:58.8949160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze/is_from_package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-09-07T06:13:58.8950290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_importlib.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8951390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_directory_reader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8952630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_digraph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-09-07T06:13:58.8953740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-09-07T06:13:58.8955380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share 2025-09-07T06:13:58.8956210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake 2025-09-07T06:13:58.8957140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-09-07T06:13:58.8957910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Caffe2Config.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-09-07T06:13:58.8959370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/FindSYCLToolkit.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-09-07T06:13:58.8960930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-09-07T06:13:58.8961780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-09-07T06:13:58.8963300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-09-07T06:13:58.8965020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-09-07T06:13:58.8966030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-09-07T06:13:58.8966960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-09-07T06:13:58.8968370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-09-07T06:13:58.8969800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-09-07T06:13:58.8971060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-09-07T06:13:58.8972570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-09-07T06:13:58.8973870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-09-07T06:13:58.8975820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-09-07T06:13:58.8977030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-09-07T06:13:58.8977850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/LoadHIP.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-09-07T06:13:58.8979130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/mkldnn.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-09-07T06:13:58.8980350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/glog.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-09-07T06:13:58.8981620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/utils.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-09-07T06:13:58.8983120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/protobuf.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-09-07T06:13:58.8984390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/mkl.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-09-07T06:13:58.8985610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/gflags.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-09-07T06:13:58.8986720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/cuda.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-09-07T06:13:58.8987910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/xpu.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-09-07T06:13:58.8994520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/FindCUSPARSELT.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-09-07T06:13:58.8995380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/FindCUDAToolkit.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-09-07T06:13:58.8996620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Caffe2Targets.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-09-07T06:13:58.8997890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-09-07T06:13:58.8999110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/FindCUDSS.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-09-07T06:13:58.9000390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Torch 2025-09-07T06:13:58.9001120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch/TorchConfig.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Torch 2025-09-07T06:13:58.9002290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch/TorchConfigVersion.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Torch 2025-09-07T06:13:58.9003600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/ATen 2025-09-07T06:13:58.9004290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/ATen/ATenConfig.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/ATen 2025-09-07T06:13:58.9005540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/func 2025-09-07T06:13:58.9006190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/func/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/func 2025-09-07T06:13:58.9008670Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9009290Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/native_function_generation.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9011100Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/selective_build 2025-09-07T06:13:58.9011670Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build/selector.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/selective_build 2025-09-07T06:13:58.9012650Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build/operator.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/selective_build 2025-09-07T06:13:58.9013810Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/selective_build 2025-09-07T06:13:58.9014480Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_vmap_plumbing.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9015570Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9017460Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged 2025-09-07T06:13:58.9018310Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9019060Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/load_derivatives.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9020390Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/build.bzl -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9021530Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9022760Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_python_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9024250Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_autograd_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9025580Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_variable_factories.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9026640Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9027510Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_variable_type.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9029140Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/README.md -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9030260Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/context.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9031470Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_inplace_or_view_type.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9032700Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/deprecated.yaml -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9033830Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/BUILD.bazel -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9035440Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9036150Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_return_types.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9037240Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_enum_tag.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9038340Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_nn_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9039510Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9040690Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_fft_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9041850Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_sparse_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9042980Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_linalg_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9044070Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/ViewFuncs.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9045270Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_return_types.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9046480Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9052010Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/TraceType.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9053010Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_variable_methods.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9053950Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/ViewFuncs.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9054870Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9055840Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_nested_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9056790Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/VariableType.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9057720Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/annotated_fn_args.py.in -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9058640Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/VariableType.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9059540Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/Functions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9060470Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_special_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9061420Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/variable_factories.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9062370Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_torch_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9063320Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/Functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-09-07T06:13:58.9064190Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_trace_type.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9065610Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_annotated_fn_args.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9066600Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/derivatives.yaml -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9068620Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_view_funcs.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-09-07T06:13:58.9069980Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen 2025-09-07T06:13:58.9070940Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/native 2025-09-07T06:13:58.9071690Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native/native_functions.yaml -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/native 2025-09-07T06:13:58.9075900Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native/tags.yaml -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/native 2025-09-07T06:13:58.9077180Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9078000Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9079180Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/TensorBody.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9080530Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/UnboxingFunctions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9081710Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/DispatchKeyFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9082910Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RedispatchFunctions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9084030Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Operators.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9085240Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/NativeMetaFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9086370Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/NativeFunction.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9087480Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Operator.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9088730Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegistrationDeclarations.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9089830Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/UfuncCPU.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9090960Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/UfuncCUDA.cu -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9092140Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9093420Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9094580Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RedispatchFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9095770Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/aten_interned_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9096940Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/MethodOperators.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9098120Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9099260Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Operators.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9100410Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/ATenOpList.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9101680Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9102910Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9104070Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/TensorMethods.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9105290Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9106470Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/DispatchKeyFunction.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9107680Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/UnboxingFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9108990Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9110140Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Functions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9111410Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/NativeFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9112660Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9113810Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9114980Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/enum_tag.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9116130Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9117530Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterSchema.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9118720Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/LazyNonNativeIr.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9119910Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Function.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9121130Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/FunctionalInverses.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9122350Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/NativeMetaFunction.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9123470Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/LazyIr.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-09-07T06:13:58.9124860Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-09-07T06:13:58.9125560Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime/config.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-09-07T06:13:58.9126840Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-09-07T06:13:58.9127710Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime/generator.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-09-07T06:13:58.9129040Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime/gen_static_runtime_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-09-07T06:13:58.9130120Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/local.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9131350Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_functionalization_type.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9141650Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/code_template.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9149660Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/operator_versions 2025-09-07T06:13:58.9150280Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/operator_versions 2025-09-07T06:13:58.9151090Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions/gen_mobile_upgraders_constant.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/operator_versions 2025-09-07T06:13:58.9152330Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions/gen_mobile_upgraders.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/operator_versions 2025-09-07T06:13:58.9153420Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9154660Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/yaml_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9155930Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_aoti_c_shim.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9157210Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/model.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9158950Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_schema_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9160180Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/context.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9161340Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9162980Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-09-07T06:13:58.9163660Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/lazy_ts_lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-09-07T06:13:58.9164780Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/ufunc.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-09-07T06:13:58.9166050Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-09-07T06:13:58.9167250Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/native_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-09-07T06:13:58.9168380Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/lazy_ir.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-09-07T06:13:58.9169690Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/register_dispatch_key.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-09-07T06:13:58.9171300Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-09-07T06:13:58.9171970Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/dispatcher.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-09-07T06:13:58.9173170Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/translate.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-09-07T06:13:58.9174680Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-09-07T06:13:58.9175470Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-09-07T06:13:58.9176610Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types/types.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-09-07T06:13:58.9177820Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types/signatures.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-09-07T06:13:58.9179010Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types/types_base.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-09-07T06:13:58.9180120Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/ufunc.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-09-07T06:13:58.9181310Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-09-07T06:13:58.9182210Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/native.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-09-07T06:13:58.9183350Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/cpp.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-09-07T06:13:58.9184410Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/unboxing.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-09-07T06:13:58.9185570Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/functionalization.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-09-07T06:13:58.9186650Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-09-07T06:13:58.9188030Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/structured.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-09-07T06:13:58.9189150Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/python.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-09-07T06:13:58.9190570Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/lazy.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-09-07T06:13:58.9191840Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/meta.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-09-07T06:13:58.9192960Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_backend_stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9194480Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-09-07T06:13:58.9195180Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-09-07T06:13:58.9196000Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti/fallback_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-09-07T06:13:58.9197230Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_lazy_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-09-07T06:13:58.9199030Z creating build/bdist.macosx-14.0-arm64/wheel/functorch 2025-09-07T06:13:58.9199980Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-09-07T06:13:58.9200730Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/control_flow.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-09-07T06:13:58.9201900Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-09-07T06:13:58.9203140Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/ops.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-09-07T06:13:58.9204440Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src 2025-09-07T06:13:58.9205290Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/make_functional 2025-09-07T06:13:58.9206060Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/make_functional/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src/make_functional 2025-09-07T06:13:58.9207150Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src 2025-09-07T06:13:58.9208210Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/eager_transforms 2025-09-07T06:13:58.9208930Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/eager_transforms/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src/eager_transforms 2025-09-07T06:13:58.9210240Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/aot_autograd 2025-09-07T06:13:58.9210870Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/aot_autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src/aot_autograd 2025-09-07T06:13:58.9212240Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/vmap 2025-09-07T06:13:58.9212890Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/vmap/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src/vmap 2025-09-07T06:13:58.9214350Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-09-07T06:13:58.9215040Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/magic_trace.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-09-07T06:13:58.9216130Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-09-07T06:13:58.9217270Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/op_properties.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-09-07T06:13:58.9218400Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/wrap_type.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-09-07T06:13:58.9219510Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/tree_map.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-09-07T06:13:58.9220660Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch 2025-09-07T06:13:58.9222110Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/compile 2025-09-07T06:13:58.9222740Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/compile/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/compile 2025-09-07T06:13:58.9223980Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_C.cpython-312-darwin.so -> build/bdist.macosx-14.0-arm64/wheel/functorch 2025-09-07T06:13:58.9226540Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-09-07T06:13:58.9227070Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/_parsing.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-09-07T06:13:58.9228130Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-09-07T06:13:58.9229380Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/rearrange.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-09-07T06:13:58.9231250Z running install_egg_info 2025-09-07T06:13:58.9262950Z running egg_info 2025-09-07T06:13:58.9263260Z creating torch.egg-info 2025-09-07T06:13:58.9290620Z writing torch.egg-info/PKG-INFO 2025-09-07T06:13:58.9298530Z writing dependency_links to torch.egg-info/dependency_links.txt 2025-09-07T06:13:58.9299710Z writing entry points to torch.egg-info/entry_points.txt 2025-09-07T06:13:58.9302800Z writing requirements to torch.egg-info/requires.txt 2025-09-07T06:13:58.9303920Z writing top-level names to torch.egg-info/top_level.txt 2025-09-07T06:13:58.9304940Z writing manifest file 'torch.egg-info/SOURCES.txt' 2025-09-07T06:13:59.4114300Z reading manifest file 'torch.egg-info/SOURCES.txt' 2025-09-07T06:13:59.4114960Z reading manifest template 'MANIFEST.in' 2025-09-07T06:13:59.4455740Z warning: no files found matching 'BUILD' 2025-09-07T06:13:59.4456530Z warning: no files found matching '*.BUILD' 2025-09-07T06:13:59.4457860Z warning: no files found matching 'BUCK' 2025-09-07T06:13:59.4512550Z warning: no files found matching '[Mm]akefile.*' 2025-09-07T06:13:59.4514140Z warning: no files found matching '*.[Dd]ockerfile' 2025-09-07T06:13:59.4515160Z warning: no files found matching '[Dd]ockerfile.*' 2025-09-07T06:14:04.1646960Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-09-07T06:14:04.2221790Z warning: no previously-included files matching '*.obj' found anywhere in distribution 2025-09-07T06:14:04.6358670Z no previously-included directories found matching '*/.git' 2025-09-07T06:14:04.7344000Z warning: no previously-included files matching '*~' found anywhere in distribution 2025-09-07T06:14:04.7908330Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-09-07T06:14:04.7908660Z adding license file 'LICENSE' 2025-09-07T06:14:04.7908850Z adding license file 'NOTICE' 2025-09-07T06:14:08.5178420Z writing manifest file 'torch.egg-info/SOURCES.txt' 2025-09-07T06:14:08.5500980Z Copying torch.egg-info to build/bdist.macosx-14.0-arm64/wheel/torch-2.9.0a0+git93fb23d-py3.12.egg-info 2025-09-07T06:14:08.5677530Z running install_scripts 2025-09-07T06:14:08.5758940Z creating build/bdist.macosx-14.0-arm64/wheel/torch-2.9.0a0+git93fb23d.dist-info/WHEEL 2025-09-07T06:14:08.5762080Z creating 'dist/torch-2.9.0a0+git93fb23d-cp312-cp312-macosx_11_0_arm64.whl' and adding 'build/bdist.macosx-14.0-arm64/wheel' to it 2025-09-07T06:14:08.5840030Z adding 'functorch/_C.cpython-312-darwin.so' 2025-09-07T06:14:08.5842600Z adding 'functorch/__init__.py' 2025-09-07T06:14:08.5843740Z adding 'functorch/_src/__init__.py' 2025-09-07T06:14:08.5845040Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-09-07T06:14:08.5846180Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-09-07T06:14:08.5847260Z adding 'functorch/_src/make_functional/__init__.py' 2025-09-07T06:14:08.5848370Z adding 'functorch/_src/vmap/__init__.py' 2025-09-07T06:14:08.5849450Z adding 'functorch/compile/__init__.py' 2025-09-07T06:14:08.5851450Z adding 'functorch/dim/__init__.py' 2025-09-07T06:14:08.5852240Z adding 'functorch/dim/magic_trace.py' 2025-09-07T06:14:08.5854310Z adding 'functorch/dim/op_properties.py' 2025-09-07T06:14:08.5854850Z adding 'functorch/dim/tree_map.py' 2025-09-07T06:14:08.5855880Z adding 'functorch/dim/wrap_type.py' 2025-09-07T06:14:08.5856920Z adding 'functorch/einops/__init__.py' 2025-09-07T06:14:08.5859970Z adding 'functorch/einops/_parsing.py' 2025-09-07T06:14:08.5862140Z adding 'functorch/einops/rearrange.py' 2025-09-07T06:14:08.5863140Z adding 'functorch/experimental/__init__.py' 2025-09-07T06:14:08.5863750Z adding 'functorch/experimental/control_flow.py' 2025-09-07T06:14:08.5864460Z adding 'functorch/experimental/ops.py' 2025-09-07T06:14:08.5869090Z adding 'torch/_C.cpython-312-darwin.so' 2025-09-07T06:14:08.5869910Z adding 'torch/_VF.py' 2025-09-07T06:14:08.6017970Z adding 'torch/_VF.pyi' 2025-09-07T06:14:08.6023960Z adding 'torch/__config__.py' 2025-09-07T06:14:08.6025810Z adding 'torch/__future__.py' 2025-09-07T06:14:08.6049380Z adding 'torch/__init__.py' 2025-09-07T06:14:08.6054280Z adding 'torch/_appdirs.py' 2025-09-07T06:14:08.6055430Z adding 'torch/_classes.py' 2025-09-07T06:14:08.6056660Z adding 'torch/_compile.py' 2025-09-07T06:14:08.6059810Z adding 'torch/_custom_ops.py' 2025-09-07T06:14:08.6060420Z adding 'torch/_environment.py' 2025-09-07T06:14:08.6069790Z adding 'torch/_guards.py' 2025-09-07T06:14:08.6083110Z adding 'torch/_jit_internal.py' 2025-09-07T06:14:08.6084900Z adding 'torch/_linalg_utils.py' 2025-09-07T06:14:08.6094340Z adding 'torch/_lobpcg.py' 2025-09-07T06:14:08.6097010Z adding 'torch/_lowrank.py' 2025-09-07T06:14:08.6146230Z adding 'torch/_meta_registrations.py' 2025-09-07T06:14:08.6149190Z adding 'torch/_namedtensor_internals.py' 2025-09-07T06:14:08.6162520Z adding 'torch/_ops.py' 2025-09-07T06:14:08.6164950Z adding 'torch/_python_dispatcher.py' 2025-09-07T06:14:08.6165720Z adding 'torch/_size_docs.py' 2025-09-07T06:14:08.6167740Z adding 'torch/_sources.py' 2025-09-07T06:14:08.6168630Z adding 'torch/_storage_docs.py' 2025-09-07T06:14:08.6169690Z adding 'torch/_streambase.py' 2025-09-07T06:14:08.6184840Z adding 'torch/_tensor.py' 2025-09-07T06:14:08.6211220Z adding 'torch/_tensor_docs.py' 2025-09-07T06:14:08.6217620Z adding 'torch/_tensor_str.py' 2025-09-07T06:14:08.6218290Z adding 'torch/_thread_safe_fork.py' 2025-09-07T06:14:08.6305530Z adding 'torch/_torch_docs.py' 2025-09-07T06:14:08.6317120Z adding 'torch/_utils.py' 2025-09-07T06:14:08.6320370Z adding 'torch/_utils_internal.py' 2025-09-07T06:14:08.6322910Z adding 'torch/_vmap_internals.py' 2025-09-07T06:14:08.6327280Z adding 'torch/_weights_only_unpickler.py' 2025-09-07T06:14:08.6346110Z adding 'torch/functional.py' 2025-09-07T06:14:08.6353860Z adding 'torch/hub.py' 2025-09-07T06:14:08.6368060Z adding 'torch/library.py' 2025-09-07T06:14:08.6384590Z adding 'torch/overrides.py' 2025-09-07T06:14:08.6385570Z adding 'torch/py.typed' 2025-09-07T06:14:08.6388010Z adding 'torch/quasirandom.py' 2025-09-07T06:14:08.6390190Z adding 'torch/random.py' 2025-09-07T06:14:08.6391050Z adding 'torch/return_types.py' 2025-09-07T06:14:08.6393200Z adding 'torch/return_types.pyi' 2025-09-07T06:14:08.6411140Z adding 'torch/serialization.py' 2025-09-07T06:14:08.6420310Z adding 'torch/storage.py' 2025-09-07T06:14:08.6422630Z adding 'torch/torch_version.py' 2025-09-07T06:14:08.6424560Z adding 'torch/types.py' 2025-09-07T06:14:08.6425360Z adding 'torch/version.py' 2025-09-07T06:14:08.6574710Z adding 'torch/_C/_VariableFunctions.pyi' 2025-09-07T06:14:08.6638050Z adding 'torch/_C/__init__.pyi' 2025-09-07T06:14:08.6641340Z adding 'torch/_C/_aoti.pyi' 2025-09-07T06:14:08.6642720Z adding 'torch/_C/_autograd.pyi' 2025-09-07T06:14:08.6643730Z adding 'torch/_C/_cpu.pyi' 2025-09-07T06:14:08.6644720Z adding 'torch/_C/_cudnn.pyi' 2025-09-07T06:14:08.6645530Z adding 'torch/_C/_cusparselt.pyi' 2025-09-07T06:14:08.6646510Z adding 'torch/_C/_distributed_autograd.pyi' 2025-09-07T06:14:08.6651240Z adding 'torch/_C/_distributed_c10d.pyi' 2025-09-07T06:14:08.6652700Z adding 'torch/_C/_distributed_rpc.pyi' 2025-09-07T06:14:08.6653800Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-09-07T06:14:08.6654740Z adding 'torch/_C/_functions.pyi' 2025-09-07T06:14:08.6655910Z adding 'torch/_C/_functorch.pyi' 2025-09-07T06:14:08.6656730Z adding 'torch/_C/_instruction_counter.pyi' 2025-09-07T06:14:08.6657580Z adding 'torch/_C/_itt.pyi' 2025-09-07T06:14:08.6659070Z adding 'torch/_C/_jit_tree_views.pyi' 2025-09-07T06:14:08.6659940Z adding 'torch/_C/_lazy.pyi' 2025-09-07T06:14:08.6660750Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-09-07T06:14:08.6661920Z adding 'torch/_C/_monitor.pyi' 2025-09-07T06:14:08.6663900Z adding 'torch/_C/_nn.pyi' 2025-09-07T06:14:08.6664360Z adding 'torch/_C/_nvtx.pyi' 2025-09-07T06:14:08.6665220Z adding 'torch/_C/_onnx.pyi' 2025-09-07T06:14:08.6667190Z adding 'torch/_C/_profiler.pyi' 2025-09-07T06:14:08.6667670Z adding 'torch/_C/_verbose.pyi' 2025-09-07T06:14:08.6668860Z adding 'torch/_C/_dynamo/__init__.pyi' 2025-09-07T06:14:08.6669710Z adding 'torch/_C/_dynamo/compiled_autograd.pyi' 2025-09-07T06:14:08.6670970Z adding 'torch/_C/_dynamo/eval_frame.pyi' 2025-09-07T06:14:08.6673320Z adding 'torch/_C/_dynamo/guards.pyi' 2025-09-07T06:14:08.6678330Z adding 'torch/_C/_export/__init__.pyi' 2025-09-07T06:14:08.6678550Z adding 'torch/_C/_export/pt2_archive_constants.pyi' 2025-09-07T06:14:08.6678780Z adding 'torch/_C_flatbuffer/__init__.pyi' 2025-09-07T06:14:08.6678980Z adding 'torch/_awaits/__init__.py' 2025-09-07T06:14:08.6679160Z adding 'torch/_custom_op/__init__.py' 2025-09-07T06:14:08.6681440Z adding 'torch/_custom_op/autograd.py' 2025-09-07T06:14:08.6686760Z adding 'torch/_custom_op/impl.py' 2025-09-07T06:14:08.6690690Z adding 'torch/_decomp/__init__.py' 2025-09-07T06:14:08.6727610Z adding 'torch/_decomp/decompositions.py' 2025-09-07T06:14:08.6731130Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-09-07T06:14:08.6733620Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-09-07T06:14:08.6734410Z adding 'torch/_dispatch/__init__.py' 2025-09-07T06:14:08.6736650Z adding 'torch/_dispatch/python.py' 2025-09-07T06:14:08.6739160Z adding 'torch/_dynamo/__init__.py' 2025-09-07T06:14:08.6741660Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-09-07T06:14:08.6743760Z adding 'torch/_dynamo/aot_compile.py' 2025-09-07T06:14:08.6745990Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-09-07T06:14:08.6760310Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-09-07T06:14:08.6762930Z adding 'torch/_dynamo/cache_size.py' 2025-09-07T06:14:08.6764290Z adding 'torch/_dynamo/callback.py' 2025-09-07T06:14:08.6765350Z adding 'torch/_dynamo/code_context.py' 2025-09-07T06:14:08.6771340Z adding 'torch/_dynamo/codegen.py' 2025-09-07T06:14:08.6784310Z adding 'torch/_dynamo/compiled_autograd.py' 2025-09-07T06:14:08.6788010Z adding 'torch/_dynamo/comptime.py' 2025-09-07T06:14:08.6795870Z adding 'torch/_dynamo/config.py' 2025-09-07T06:14:08.6812020Z adding 'torch/_dynamo/convert_frame.py' 2025-09-07T06:14:08.6813370Z adding 'torch/_dynamo/create_parameter_op.py' 2025-09-07T06:14:08.6814590Z adding 'torch/_dynamo/current_scope_id.py' 2025-09-07T06:14:08.6822170Z adding 'torch/_dynamo/debug_utils.py' 2025-09-07T06:14:08.6830200Z adding 'torch/_dynamo/decorators.py' 2025-09-07T06:14:08.6833870Z adding 'torch/_dynamo/device_interface.py' 2025-09-07T06:14:08.6834800Z adding 'torch/_dynamo/distributed.py' 2025-09-07T06:14:08.6855080Z adding 'torch/_dynamo/eval_frame.py' 2025-09-07T06:14:08.6861230Z adding 'torch/_dynamo/exc.py' 2025-09-07T06:14:08.6863560Z adding 'torch/_dynamo/external_utils.py' 2025-09-07T06:14:08.6864530Z adding 'torch/_dynamo/funcname_cache.py' 2025-09-07T06:14:08.6866620Z adding 'torch/_dynamo/functional_export.py' 2025-09-07T06:14:08.6867350Z adding 'torch/_dynamo/graph_break_hints.py' 2025-09-07T06:14:08.6883470Z adding 'torch/_dynamo/graph_break_registry.json' 2025-09-07T06:14:08.6889280Z adding 'torch/_dynamo/graph_deduplication.py' 2025-09-07T06:14:08.6893780Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-09-07T06:14:08.6894780Z adding 'torch/_dynamo/graph_utils.py' 2025-09-07T06:14:08.6932110Z adding 'torch/_dynamo/guards.py' 2025-09-07T06:14:08.6933740Z adding 'torch/_dynamo/hooks.py' 2025-09-07T06:14:08.6934980Z adding 'torch/_dynamo/logging.py' 2025-09-07T06:14:08.6937510Z adding 'torch/_dynamo/metrics_context.py' 2025-09-07T06:14:08.6938840Z adding 'torch/_dynamo/mutation_guard.py' 2025-09-07T06:14:08.6973880Z adding 'torch/_dynamo/output_graph.py' 2025-09-07T06:14:08.6981880Z adding 'torch/_dynamo/package.py' 2025-09-07T06:14:08.6989800Z adding 'torch/_dynamo/pgo.py' 2025-09-07T06:14:08.6992790Z adding 'torch/_dynamo/precompile_context.py' 2025-09-07T06:14:08.6994190Z adding 'torch/_dynamo/profiler.py' 2025-09-07T06:14:08.6996220Z adding 'torch/_dynamo/replay_record.py' 2025-09-07T06:14:08.7001410Z adding 'torch/_dynamo/resume_execution.py' 2025-09-07T06:14:08.7011540Z adding 'torch/_dynamo/side_effects.py' 2025-09-07T06:14:08.7017260Z adding 'torch/_dynamo/source.py' 2025-09-07T06:14:08.7056440Z adding 'torch/_dynamo/symbolic_convert.py' 2025-09-07T06:14:08.7058640Z adding 'torch/_dynamo/tensor_version_op.py' 2025-09-07T06:14:08.7060820Z adding 'torch/_dynamo/test_case.py' 2025-09-07T06:14:08.7061580Z adding 'torch/_dynamo/test_dont_skip_tracing_functions.py' 2025-09-07T06:14:08.7064810Z adding 'torch/_dynamo/test_minifier_common.py' 2025-09-07T06:14:08.7068530Z adding 'torch/_dynamo/testing.py' 2025-09-07T06:14:08.7092690Z adding 'torch/_dynamo/trace_rules.py' 2025-09-07T06:14:08.7095140Z adding 'torch/_dynamo/types.py' 2025-09-07T06:14:08.7134640Z adding 'torch/_dynamo/utils.py' 2025-09-07T06:14:08.7136920Z adding 'torch/_dynamo/backends/__init__.py' 2025-09-07T06:14:08.7138800Z adding 'torch/_dynamo/backends/common.py' 2025-09-07T06:14:08.7141520Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-09-07T06:14:08.7145360Z adding 'torch/_dynamo/backends/debugging.py' 2025-09-07T06:14:08.7152040Z adding 'torch/_dynamo/backends/distributed.py' 2025-09-07T06:14:08.7152990Z adding 'torch/_dynamo/backends/inductor.py' 2025-09-07T06:14:08.7154030Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-09-07T06:14:08.7156250Z adding 'torch/_dynamo/backends/registry.py' 2025-09-07T06:14:08.7156820Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-09-07T06:14:08.7157820Z adding 'torch/_dynamo/backends/torchxla.py' 2025-09-07T06:14:08.7160160Z adding 'torch/_dynamo/backends/tvm.py' 2025-09-07T06:14:08.7163410Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-09-07T06:14:08.7164140Z adding 'torch/_dynamo/polyfills/_collections.py' 2025-09-07T06:14:08.7165610Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-09-07T06:14:08.7166520Z adding 'torch/_dynamo/polyfills/functools.py' 2025-09-07T06:14:08.7167470Z adding 'torch/_dynamo/polyfills/fx.py' 2025-09-07T06:14:08.7169780Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-09-07T06:14:08.7170500Z adding 'torch/_dynamo/polyfills/loader.py' 2025-09-07T06:14:08.7171730Z adding 'torch/_dynamo/polyfills/operator.py' 2025-09-07T06:14:08.7172680Z adding 'torch/_dynamo/polyfills/os.py' 2025-09-07T06:14:08.7175970Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-09-07T06:14:08.7176670Z adding 'torch/_dynamo/polyfills/struct.py' 2025-09-07T06:14:08.7177490Z adding 'torch/_dynamo/polyfills/sys.py' 2025-09-07T06:14:08.7178500Z adding 'torch/_dynamo/polyfills/tensor.py' 2025-09-07T06:14:08.7179510Z adding 'torch/_dynamo/repro/__init__.py' 2025-09-07T06:14:08.7188650Z adding 'torch/_dynamo/repro/after_aot.py' 2025-09-07T06:14:08.7193320Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-09-07T06:14:08.7198250Z adding 'torch/_dynamo/repro/aoti.py' 2025-09-07T06:14:08.7200570Z adding 'torch/_dynamo/variables/__init__.py' 2025-09-07T06:14:08.7205880Z adding 'torch/_dynamo/variables/base.py' 2025-09-07T06:14:08.7239580Z adding 'torch/_dynamo/variables/builder.py' 2025-09-07T06:14:08.7260840Z adding 'torch/_dynamo/variables/builtin.py' 2025-09-07T06:14:08.7264030Z adding 'torch/_dynamo/variables/constant.py' 2025-09-07T06:14:08.7272330Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-09-07T06:14:08.7281480Z adding 'torch/_dynamo/variables/dicts.py' 2025-09-07T06:14:08.7284970Z adding 'torch/_dynamo/variables/distributed.py' 2025-09-07T06:14:08.7304170Z adding 'torch/_dynamo/variables/functions.py' 2025-09-07T06:14:08.7330020Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-09-07T06:14:08.7334410Z adding 'torch/_dynamo/variables/iter.py' 2025-09-07T06:14:08.7336680Z adding 'torch/_dynamo/variables/lazy.py' 2025-09-07T06:14:08.7345810Z adding 'torch/_dynamo/variables/lists.py' 2025-09-07T06:14:08.7360480Z adding 'torch/_dynamo/variables/misc.py' 2025-09-07T06:14:08.7370780Z adding 'torch/_dynamo/variables/nn_module.py' 2025-09-07T06:14:08.7374760Z adding 'torch/_dynamo/variables/optimizer.py' 2025-09-07T06:14:08.7376120Z adding 'torch/_dynamo/variables/script_object.py' 2025-09-07T06:14:08.7377380Z adding 'torch/_dynamo/variables/sdpa.py' 2025-09-07T06:14:08.7391480Z adding 'torch/_dynamo/variables/tensor.py' 2025-09-07T06:14:08.7406870Z adding 'torch/_dynamo/variables/torch.py' 2025-09-07T06:14:08.7412700Z adding 'torch/_dynamo/variables/torch_function.py' 2025-09-07T06:14:08.7430020Z adding 'torch/_dynamo/variables/user_defined.py' 2025-09-07T06:14:08.7432870Z adding 'torch/_export/__init__.py' 2025-09-07T06:14:08.7446160Z adding 'torch/_export/converter.py' 2025-09-07T06:14:08.7447510Z adding 'torch/_export/error.py' 2025-09-07T06:14:08.7456760Z adding 'torch/_export/non_strict_utils.py' 2025-09-07T06:14:08.7460400Z adding 'torch/_export/pass_base.py' 2025-09-07T06:14:08.7461820Z adding 'torch/_export/tools.py' 2025-09-07T06:14:08.7475320Z adding 'torch/_export/utils.py' 2025-09-07T06:14:08.7479430Z adding 'torch/_export/verifier.py' 2025-09-07T06:14:08.7481950Z adding 'torch/_export/wrappers.py' 2025-09-07T06:14:08.7483050Z adding 'torch/_export/db/__init__.py' 2025-09-07T06:14:08.7485120Z adding 'torch/_export/db/case.py' 2025-09-07T06:14:08.7485660Z adding 'torch/_export/db/gen_example.py' 2025-09-07T06:14:08.7486820Z adding 'torch/_export/db/logging.py' 2025-09-07T06:14:08.7489030Z adding 'torch/_export/db/examples/__init__.py' 2025-09-07T06:14:08.7489790Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-09-07T06:14:08.7490590Z adding 'torch/_export/db/examples/autograd_function.py' 2025-09-07T06:14:08.7491530Z adding 'torch/_export/db/examples/class_method.py' 2025-09-07T06:14:08.7492610Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-09-07T06:14:08.7493650Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-09-07T06:14:08.7494710Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-09-07T06:14:08.7495660Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-09-07T06:14:08.7496610Z adding 'torch/_export/db/examples/cond_operands.py' 2025-09-07T06:14:08.7497570Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-09-07T06:14:08.7498560Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-09-07T06:14:08.7499540Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-09-07T06:14:08.7500350Z adding 'torch/_export/db/examples/decorator.py' 2025-09-07T06:14:08.7501230Z adding 'torch/_export/db/examples/dictionary.py' 2025-09-07T06:14:08.7502170Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-09-07T06:14:08.7503170Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-09-07T06:14:08.7504050Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-09-07T06:14:08.7504980Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-09-07T06:14:08.7505940Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-09-07T06:14:08.7506870Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-09-07T06:14:08.7507750Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-09-07T06:14:08.7508640Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-09-07T06:14:08.7509510Z adding 'torch/_export/db/examples/list_contains.py' 2025-09-07T06:14:08.7510440Z adding 'torch/_export/db/examples/list_unpack.py' 2025-09-07T06:14:08.7511340Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-09-07T06:14:08.7512270Z adding 'torch/_export/db/examples/nested_function.py' 2025-09-07T06:14:08.7513170Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-09-07T06:14:08.7514110Z adding 'torch/_export/db/examples/optional_input.py' 2025-09-07T06:14:08.7514940Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-09-07T06:14:08.7515770Z adding 'torch/_export/db/examples/scalar_output.py' 2025-09-07T06:14:08.7516650Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-09-07T06:14:08.7517560Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-09-07T06:14:08.7518360Z adding 'torch/_export/db/examples/static_if.py' 2025-09-07T06:14:08.7519230Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-09-07T06:14:08.7520080Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-09-07T06:14:08.7520970Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-09-07T06:14:08.7521810Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-09-07T06:14:08.7522770Z adding 'torch/_export/pass_infra/__init__.py' 2025-09-07T06:14:08.7523720Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-09-07T06:14:08.7524730Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-09-07T06:14:08.7525860Z adding 'torch/_export/passes/__init__.py' 2025-09-07T06:14:08.7527230Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-09-07T06:14:08.7529940Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-09-07T06:14:08.7531610Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-09-07T06:14:08.7534490Z adding 'torch/_export/passes/constant_folding.py' 2025-09-07T06:14:08.7535880Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-09-07T06:14:08.7537040Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-09-07T06:14:08.7541020Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-09-07T06:14:08.7541880Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-09-07T06:14:08.7544180Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-09-07T06:14:08.7549190Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-09-07T06:14:08.7550650Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-09-07T06:14:08.7552020Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-09-07T06:14:08.7554090Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-09-07T06:14:08.7554930Z adding 'torch/_export/serde/__init__.py' 2025-09-07T06:14:08.7558010Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-09-07T06:14:08.7560160Z adding 'torch/_export/serde/export_schema.thrift' 2025-09-07T06:14:08.7563300Z adding 'torch/_export/serde/schema.py' 2025-09-07T06:14:08.7565600Z adding 'torch/_export/serde/schema.yaml' 2025-09-07T06:14:08.7570240Z adding 'torch/_export/serde/schema_check.py' 2025-09-07T06:14:08.7600570Z adding 'torch/_export/serde/serialize.py' 2025-09-07T06:14:08.7602650Z adding 'torch/_export/serde/union.py' 2025-09-07T06:14:08.7603940Z adding 'torch/_functorch/__init__.py' 2025-09-07T06:14:08.7621650Z adding 'torch/_functorch/aot_autograd.py' 2025-09-07T06:14:08.7625950Z adding 'torch/_functorch/apis.py' 2025-09-07T06:14:08.7632210Z adding 'torch/_functorch/autograd_function.py' 2025-09-07T06:14:08.7633200Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-09-07T06:14:08.7635230Z adding 'torch/_functorch/benchmark_utils.py' 2025-09-07T06:14:08.7637510Z adding 'torch/_functorch/compile_utils.py' 2025-09-07T06:14:08.7640860Z adding 'torch/_functorch/compilers.py' 2025-09-07T06:14:08.7645160Z adding 'torch/_functorch/config.py' 2025-09-07T06:14:08.7646560Z adding 'torch/_functorch/deprecated.py' 2025-09-07T06:14:08.7661800Z adding 'torch/_functorch/eager_transforms.py' 2025-09-07T06:14:08.7665030Z adding 'torch/_functorch/functional_call.py' 2025-09-07T06:14:08.7668850Z adding 'torch/_functorch/fx_minifier.py' 2025-09-07T06:14:08.7673420Z adding 'torch/_functorch/make_functional.py' 2025-09-07T06:14:08.7699010Z adding 'torch/_functorch/partitioners.py' 2025-09-07T06:14:08.7701210Z adding 'torch/_functorch/predispatch.py' 2025-09-07T06:14:08.7703700Z adding 'torch/_functorch/pyfunctorch.py' 2025-09-07T06:14:08.7704440Z adding 'torch/_functorch/python_key.py' 2025-09-07T06:14:08.7705430Z adding 'torch/_functorch/pytree_hacks.py' 2025-09-07T06:14:08.7710380Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-09-07T06:14:08.7711070Z adding 'torch/_functorch/utils.py' 2025-09-07T06:14:08.7715350Z adding 'torch/_functorch/vmap.py' 2025-09-07T06:14:08.7716550Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-09-07T06:14:08.7718080Z adding 'torch/_functorch/_activation_checkpointing/ac_logging_utils.py' 2025-09-07T06:14:08.7720950Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-09-07T06:14:08.7722140Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-09-07T06:14:08.7725010Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-09-07T06:14:08.7726000Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-09-07T06:14:08.7739240Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-09-07T06:14:08.7749510Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-09-07T06:14:08.7755300Z adding 'torch/_functorch/_aot_autograd/descriptors.py' 2025-09-07T06:14:08.7758100Z adding 'torch/_functorch/_aot_autograd/frontend_utils.py' 2025-09-07T06:14:08.7762830Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-09-07T06:14:08.7765340Z adding 'torch/_functorch/_aot_autograd/fx_utils.py' 2025-09-07T06:14:08.7768940Z adding 'torch/_functorch/_aot_autograd/graph_capture.py' 2025-09-07T06:14:08.7782460Z adding 'torch/_functorch/_aot_autograd/graph_capture_wrappers.py' 2025-09-07T06:14:08.7801030Z adding 'torch/_functorch/_aot_autograd/graph_compile.py' 2025-09-07T06:14:08.7805570Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-09-07T06:14:08.7807320Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-09-07T06:14:08.7832430Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-09-07T06:14:08.7846450Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-09-07T06:14:08.7849380Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-09-07T06:14:08.7853990Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-09-07T06:14:08.7859110Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-09-07T06:14:08.7860910Z adding 'torch/_higher_order_ops/__init__.py' 2025-09-07T06:14:08.7862000Z adding 'torch/_higher_order_ops/_invoke_quant.py' 2025-09-07T06:14:08.7863910Z adding 'torch/_higher_order_ops/aoti_call_delegate.py' 2025-09-07T06:14:08.7868280Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-09-07T06:14:08.7875590Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-09-07T06:14:08.7878540Z adding 'torch/_higher_order_ops/base_hop.py' 2025-09-07T06:14:08.7884990Z adding 'torch/_higher_order_ops/cond.py' 2025-09-07T06:14:08.7887800Z adding 'torch/_higher_order_ops/effects.py' 2025-09-07T06:14:08.7889700Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-09-07T06:14:08.7891120Z adding 'torch/_higher_order_ops/flat_apply.py' 2025-09-07T06:14:08.7898490Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-09-07T06:14:08.7899570Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-09-07T06:14:08.7901140Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-09-07T06:14:08.7906700Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-09-07T06:14:08.7909590Z adding 'torch/_higher_order_ops/map.py' 2025-09-07T06:14:08.7911150Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-09-07T06:14:08.7912260Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-09-07T06:14:08.7921470Z adding 'torch/_higher_order_ops/scan.py' 2025-09-07T06:14:08.7924410Z adding 'torch/_higher_order_ops/schema.py' 2025-09-07T06:14:08.7925720Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-09-07T06:14:08.7927680Z adding 'torch/_higher_order_ops/torchbind.py' 2025-09-07T06:14:08.7944670Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-09-07T06:14:08.7956330Z adding 'torch/_higher_order_ops/utils.py' 2025-09-07T06:14:08.7964140Z adding 'torch/_higher_order_ops/while_loop.py' 2025-09-07T06:14:08.7967390Z adding 'torch/_higher_order_ops/wrap.py' 2025-09-07T06:14:08.7969350Z adding 'torch/_inductor/__autotune_main__.py' 2025-09-07T06:14:08.7972530Z adding 'torch/_inductor/__init__.py' 2025-09-07T06:14:08.7974580Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-09-07T06:14:08.7976910Z adding 'torch/_inductor/aoti_eager.py' 2025-09-07T06:14:08.7982380Z adding 'torch/_inductor/async_compile.py' 2025-09-07T06:14:08.7988430Z adding 'torch/_inductor/autotune_process.py' 2025-09-07T06:14:08.7990430Z adding 'torch/_inductor/await_utils.py' 2025-09-07T06:14:08.7992830Z adding 'torch/_inductor/bounds.py' 2025-09-07T06:14:08.7996560Z adding 'torch/_inductor/choices.py' 2025-09-07T06:14:08.8033230Z adding 'torch/_inductor/codecache.py' 2025-09-07T06:14:08.8036430Z adding 'torch/_inductor/comm_analysis.py' 2025-09-07T06:14:08.8039240Z adding 'torch/_inductor/comm_lowering.py' 2025-09-07T06:14:08.8053280Z adding 'torch/_inductor/comms.py' 2025-09-07T06:14:08.8055140Z adding 'torch/_inductor/comms_debug.py' 2025-09-07T06:14:08.8079330Z adding 'torch/_inductor/compile_fx.py' 2025-09-07T06:14:08.8082820Z adding 'torch/_inductor/compile_fx_async.py' 2025-09-07T06:14:08.8087880Z adding 'torch/_inductor/compile_fx_ext.py' 2025-09-07T06:14:08.8089030Z adding 'torch/_inductor/compile_fx_subproc.py' 2025-09-07T06:14:08.8093650Z adding 'torch/_inductor/compiler_bisector.py' 2025-09-07T06:14:08.8113810Z adding 'torch/_inductor/config.py' 2025-09-07T06:14:08.8117780Z adding 'torch/_inductor/constant_folding.py' 2025-09-07T06:14:08.8133840Z adding 'torch/_inductor/cpp_builder.py' 2025-09-07T06:14:08.8137730Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-09-07T06:14:08.8161870Z adding 'torch/_inductor/cudagraph_trees.py' 2025-09-07T06:14:08.8165730Z adding 'torch/_inductor/cudagraph_utils.py' 2025-09-07T06:14:08.8167080Z adding 'torch/_inductor/custom_graph_pass.py' 2025-09-07T06:14:08.8176460Z adding 'torch/_inductor/debug.py' 2025-09-07T06:14:08.8184560Z adding 'torch/_inductor/decomposition.py' 2025-09-07T06:14:08.8191510Z adding 'torch/_inductor/dependencies.py' 2025-09-07T06:14:08.8194160Z adding 'torch/_inductor/dtype_propagation.py' 2025-09-07T06:14:08.8195460Z adding 'torch/_inductor/exc.py' 2025-09-07T06:14:08.8196450Z adding 'torch/_inductor/extern_node_serializer.py' 2025-09-07T06:14:08.8199380Z adding 'torch/_inductor/freezing.py' 2025-09-07T06:14:08.8204030Z adding 'torch/_inductor/freezing_utils.py' 2025-09-07T06:14:08.8208410Z adding 'torch/_inductor/fuzzer.py' 2025-09-07T06:14:08.8211570Z adding 'torch/_inductor/fx_utils.py' 2025-09-07T06:14:08.8234330Z adding 'torch/_inductor/graph.py' 2025-09-07T06:14:08.8235690Z adding 'torch/_inductor/hooks.py' 2025-09-07T06:14:08.8239060Z adding 'torch/_inductor/index_propagation.py' 2025-09-07T06:14:08.8241200Z adding 'torch/_inductor/inductor_prims.py' 2025-09-07T06:14:08.8308850Z adding 'torch/_inductor/ir.py' 2025-09-07T06:14:08.8312660Z adding 'torch/_inductor/jagged_lowerings.py' 2025-09-07T06:14:08.8314940Z adding 'torch/_inductor/kernel_inputs.py' 2025-09-07T06:14:08.8316060Z adding 'torch/_inductor/kernel_template_choice.py' 2025-09-07T06:14:08.8321770Z adding 'torch/_inductor/loop_body.py' 2025-09-07T06:14:08.8371540Z adding 'torch/_inductor/lowering.py' 2025-09-07T06:14:08.8380190Z adding 'torch/_inductor/memory.py' 2025-09-07T06:14:08.8383660Z adding 'torch/_inductor/metrics.py' 2025-09-07T06:14:08.8390060Z adding 'torch/_inductor/mkldnn_ir.py' 2025-09-07T06:14:08.8397340Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-09-07T06:14:08.8399600Z adding 'torch/_inductor/mock_cache.py' 2025-09-07T06:14:08.8405820Z adding 'torch/_inductor/ops_handler.py' 2025-09-07T06:14:08.8407420Z adding 'torch/_inductor/optimize_indexing.py' 2025-09-07T06:14:08.8413970Z adding 'torch/_inductor/output_code.py' 2025-09-07T06:14:08.8432100Z adding 'torch/_inductor/pattern_matcher.py' 2025-09-07T06:14:08.8434410Z adding 'torch/_inductor/quantized_lowerings.py' 2025-09-07T06:14:08.8437400Z adding 'torch/_inductor/remote_cache.py' 2025-09-07T06:14:08.8438110Z adding 'torch/_inductor/remote_gemm_autotune_cache.py' 2025-09-07T06:14:08.8483830Z adding 'torch/_inductor/scheduler.py' 2025-09-07T06:14:08.8485960Z adding 'torch/_inductor/script.ld' 2025-09-07T06:14:08.8514510Z adding 'torch/_inductor/select_algorithm.py' 2025-09-07T06:14:08.8516860Z adding 'torch/_inductor/shape_propagation.py' 2025-09-07T06:14:08.8524900Z adding 'torch/_inductor/sizevars.py' 2025-09-07T06:14:08.8527670Z adding 'torch/_inductor/standalone_compile.py' 2025-09-07T06:14:08.8529820Z adding 'torch/_inductor/subgraph_lowering.py' 2025-09-07T06:14:08.8530620Z adding 'torch/_inductor/test_case.py' 2025-09-07T06:14:08.8531580Z adding 'torch/_inductor/test_operators.py' 2025-09-07T06:14:08.8537720Z adding 'torch/_inductor/tiling_utils.py' 2025-09-07T06:14:08.8541160Z adding 'torch/_inductor/triton_bundler.py' 2025-09-07T06:14:08.8569520Z adding 'torch/_inductor/utils.py' 2025-09-07T06:14:08.8573240Z adding 'torch/_inductor/virtualized.py' 2025-09-07T06:14:08.8577040Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-09-07T06:14:08.8578190Z adding 'torch/_inductor/analysis/__init__.py' 2025-09-07T06:14:08.8580270Z adding 'torch/_inductor/analysis/device_info.py' 2025-09-07T06:14:08.8586030Z adding 'torch/_inductor/analysis/profile_analysis.py' 2025-09-07T06:14:08.8586980Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-09-07T06:14:08.8590020Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-09-07T06:14:08.8592540Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-09-07T06:14:08.8593830Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-09-07T06:14:08.8595070Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-09-07T06:14:08.8599530Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-09-07T06:14:08.8603790Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-09-07T06:14:08.8605200Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-09-07T06:14:08.8607310Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-09-07T06:14:08.8608290Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-09-07T06:14:08.8609010Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-09-07T06:14:08.8610250Z adding 'torch/_inductor/codegen/__init__.py' 2025-09-07T06:14:08.8611340Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-09-07T06:14:08.8613700Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-09-07T06:14:08.8633750Z adding 'torch/_inductor/codegen/common.py' 2025-09-07T06:14:08.8679920Z adding 'torch/_inductor/codegen/cpp.py' 2025-09-07T06:14:08.8683580Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-09-07T06:14:08.8691710Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-09-07T06:14:08.8706460Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-09-07T06:14:08.8710810Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-09-07T06:14:08.8723630Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-09-07T06:14:08.8725420Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-09-07T06:14:08.8730490Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-09-07T06:14:08.8736300Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-09-07T06:14:08.8760590Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-09-07T06:14:08.8768550Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-09-07T06:14:08.8774620Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-09-07T06:14:08.8776600Z adding 'torch/_inductor/codegen/cpp_wrapper_mps.py' 2025-09-07T06:14:08.8777420Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-09-07T06:14:08.8779060Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-09-07T06:14:08.8781590Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-09-07T06:14:08.8794240Z adding 'torch/_inductor/codegen/halide.py' 2025-09-07T06:14:08.8800020Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-09-07T06:14:08.8807660Z adding 'torch/_inductor/codegen/mps.py' 2025-09-07T06:14:08.8808750Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-09-07T06:14:08.8813100Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-09-07T06:14:08.8814060Z adding 'torch/_inductor/codegen/python_wrapper_mtia.py' 2025-09-07T06:14:08.8816090Z adding 'torch/_inductor/codegen/segmented_tree.py' 2025-09-07T06:14:08.8838290Z adding 'torch/_inductor/codegen/simd.py' 2025-09-07T06:14:08.8843540Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-09-07T06:14:08.8845700Z adding 'torch/_inductor/codegen/subgraph.py' 2025-09-07T06:14:08.8887490Z adding 'torch/_inductor/codegen/triton.py' 2025-09-07T06:14:08.8896300Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-09-07T06:14:08.8898720Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-09-07T06:14:08.8901130Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-09-07T06:14:08.8931750Z adding 'torch/_inductor/codegen/wrapper.py' 2025-09-07T06:14:08.8938980Z adding 'torch/_inductor/codegen/wrapper_fxir.py' 2025-09-07T06:14:08.8942270Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-09-07T06:14:08.8943280Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-09-07T06:14:08.8946400Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-09-07T06:14:08.8947250Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-09-07T06:14:08.8952530Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-09-07T06:14:08.8955680Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-09-07T06:14:08.8957060Z adding 'torch/_inductor/codegen/cuda/cutlass_cache.py' 2025-09-07T06:14:08.8958450Z adding 'torch/_inductor/codegen/cuda/cutlass_presets.py' 2025-09-07T06:14:08.8961460Z adding 'torch/_inductor/codegen/cuda/cutlass_python_evt.py' 2025-09-07T06:14:08.8965100Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-09-07T06:14:08.8967790Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-09-07T06:14:08.8982350Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-09-07T06:14:08.8985750Z adding 'torch/_inductor/codegen/cuda/serialization.py' 2025-09-07T06:14:08.8986830Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py' 2025-09-07T06:14:08.8989560Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py' 2025-09-07T06:14:08.8992860Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py' 2025-09-07T06:14:08.8993780Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/__init__.py' 2025-09-07T06:14:08.8994990Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/__init__.py' 2025-09-07T06:14:08.8995870Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cuda.py' 2025-09-07T06:14:08.8996770Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/cuda/cudart.py' 2025-09-07T06:14:08.8997740Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/pydot/__init__.py' 2025-09-07T06:14:08.8998760Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/__init__.py' 2025-09-07T06:14:08.8999540Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/cutlass_mock_imports/scipy/special.py' 2025-09-07T06:14:08.9000460Z adding 'torch/_inductor/codegen/cutedsl/__init__.py' 2025-09-07T06:14:08.9004360Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_kernel.py' 2025-09-07T06:14:08.9006900Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_op_overrides.py' 2025-09-07T06:14:08.9008520Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_scheduling.py' 2025-09-07T06:14:08.9010770Z adding 'torch/_inductor/codegen/cutedsl/cutedsl_template.py' 2025-09-07T06:14:08.9011420Z adding 'torch/_inductor/codegen/mtia/__init__.py' 2025-09-07T06:14:08.9012380Z adding 'torch/_inductor/codegen/mtia/device_op_overrides.py' 2025-09-07T06:14:08.9013370Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-09-07T06:14:08.9018000Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-09-07T06:14:08.9019130Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-09-07T06:14:08.9020220Z adding 'torch/_inductor/codegen/rocm/ck_tile_template.py' 2025-09-07T06:14:08.9026570Z adding 'torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py' 2025-09-07T06:14:08.9033960Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-09-07T06:14:08.9035540Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-09-07T06:14:08.9037440Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-09-07T06:14:08.9038570Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-09-07T06:14:08.9041470Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-09-07T06:14:08.9043080Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-09-07T06:14:08.9043990Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-09-07T06:14:08.9044850Z adding 'torch/_inductor/codegen/rocm/rocm_utils.py' 2025-09-07T06:14:08.9045830Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-09-07T06:14:08.9047170Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-09-07T06:14:08.9047870Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-09-07T06:14:08.9049040Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-09-07T06:14:08.9052680Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-09-07T06:14:08.9053850Z adding 'torch/_inductor/compile_worker/tracked_process_pool.py' 2025-09-07T06:14:08.9054860Z adding 'torch/_inductor/compile_worker/utils.py' 2025-09-07T06:14:08.9055960Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-09-07T06:14:08.9061410Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-09-07T06:14:08.9064920Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-09-07T06:14:08.9069240Z adding 'torch/_inductor/fx_passes/bucketing.py' 2025-09-07T06:14:08.9074080Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-09-07T06:14:08.9076430Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-09-07T06:14:08.9077400Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-09-07T06:14:08.9080180Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-09-07T06:14:08.9082320Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-09-07T06:14:08.9083430Z adding 'torch/_inductor/fx_passes/fsdp.py' 2025-09-07T06:14:08.9089120Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-09-07T06:14:08.9098390Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-09-07T06:14:08.9105610Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-09-07T06:14:08.9113470Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-09-07T06:14:08.9115080Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-09-07T06:14:08.9125040Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-09-07T06:14:08.9127120Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-09-07T06:14:08.9132680Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-09-07T06:14:08.9147590Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-09-07T06:14:08.9153900Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-09-07T06:14:08.9176660Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-09-07T06:14:08.9183890Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-09-07T06:14:08.9185440Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-09-07T06:14:08.9207860Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-09-07T06:14:08.9209700Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-09-07T06:14:08.9211170Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-09-07T06:14:08.9213110Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-09-07T06:14:08.9214710Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-09-07T06:14:08.9216720Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-09-07T06:14:08.9218060Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-09-07T06:14:08.9220040Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-09-07T06:14:08.9221660Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-09-07T06:14:08.9224780Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-09-07T06:14:08.9226910Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-09-07T06:14:08.9229440Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-09-07T06:14:08.9231140Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-09-07T06:14:08.9232670Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-09-07T06:14:08.9234750Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py' 2025-09-07T06:14:08.9236380Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py' 2025-09-07T06:14:08.9238240Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py' 2025-09-07T06:14:08.9239820Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py' 2025-09-07T06:14:08.9241340Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py' 2025-09-07T06:14:08.9242940Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-09-07T06:14:08.9244500Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-09-07T06:14:08.9246000Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-09-07T06:14:08.9247660Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-09-07T06:14:08.9249680Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-09-07T06:14:08.9251020Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-09-07T06:14:08.9252990Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-09-07T06:14:08.9253840Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-09-07T06:14:08.9254740Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-09-07T06:14:08.9255670Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-09-07T06:14:08.9256670Z adding 'torch/_inductor/kernel/__init__.py' 2025-09-07T06:14:08.9259370Z adding 'torch/_inductor/kernel/bmm.py' 2025-09-07T06:14:08.9263580Z adding 'torch/_inductor/kernel/conv.py' 2025-09-07T06:14:08.9271640Z adding 'torch/_inductor/kernel/mm.py' 2025-09-07T06:14:08.9273650Z adding 'torch/_inductor/kernel/mm_common.py' 2025-09-07T06:14:08.9278130Z adding 'torch/_inductor/kernel/mm_grouped.py' 2025-09-07T06:14:08.9280140Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-09-07T06:14:08.9281130Z adding 'torch/_inductor/kernel/flex/__init__.py' 2025-09-07T06:14:08.9284110Z adding 'torch/_inductor/kernel/flex/common.py' 2025-09-07T06:14:08.9289420Z adding 'torch/_inductor/kernel/flex/flex_attention.py' 2025-09-07T06:14:08.9292340Z adding 'torch/_inductor/kernel/flex/flex_cpu.py' 2025-09-07T06:14:08.9295800Z adding 'torch/_inductor/kernel/flex/flex_decoding.py' 2025-09-07T06:14:08.9298140Z adding 'torch/_inductor/kernel/flex/templates/common.py.jinja' 2025-09-07T06:14:08.9300470Z adding 'torch/_inductor/kernel/flex/templates/flex_attention.py.jinja' 2025-09-07T06:14:08.9305210Z adding 'torch/_inductor/kernel/flex/templates/flex_backwards.py.jinja' 2025-09-07T06:14:08.9308110Z adding 'torch/_inductor/kernel/flex/templates/flex_decode.py.jinja' 2025-09-07T06:14:08.9308920Z adding 'torch/_inductor/kernel/flex/templates/utilities.py.jinja' 2025-09-07T06:14:08.9309920Z adding 'torch/_inductor/package/__init__.py' 2025-09-07T06:14:08.9310830Z adding 'torch/_inductor/package/build_package.py' 2025-09-07T06:14:08.9312400Z adding 'torch/_inductor/package/package.py' 2025-09-07T06:14:08.9313450Z adding 'torch/_inductor/runtime/__init__.py' 2025-09-07T06:14:08.9318650Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-09-07T06:14:08.9321580Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-09-07T06:14:08.9322540Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-09-07T06:14:08.9323680Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-09-07T06:14:08.9326340Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-09-07T06:14:08.9327600Z adding 'torch/_inductor/runtime/debug_utils.py' 2025-09-07T06:14:08.9329010Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-09-07T06:14:08.9331000Z adding 'torch/_inductor/runtime/hints.py' 2025-09-07T06:14:08.9332540Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-09-07T06:14:08.9335190Z adding 'torch/_inductor/runtime/static_cuda_launcher.py' 2025-09-07T06:14:08.9336520Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-09-07T06:14:08.9341950Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-09-07T06:14:08.9369410Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-09-07T06:14:08.9371360Z adding 'torch/_inductor/template_heuristics/__init__.py' 2025-09-07T06:14:08.9372430Z adding 'torch/_inductor/template_heuristics/aten.py' 2025-09-07T06:14:08.9373590Z adding 'torch/_inductor/template_heuristics/base.py' 2025-09-07T06:14:08.9374860Z adding 'torch/_inductor/template_heuristics/contiguous_mm.py' 2025-09-07T06:14:08.9376060Z adding 'torch/_inductor/template_heuristics/decompose_k.py' 2025-09-07T06:14:08.9376930Z adding 'torch/_inductor/template_heuristics/gemm.py' 2025-09-07T06:14:08.9378950Z adding 'torch/_inductor/template_heuristics/registry.py' 2025-09-07T06:14:08.9390690Z adding 'torch/_inductor/template_heuristics/triton.py' 2025-09-07T06:14:08.9392130Z adding 'torch/_inductor/template_heuristics/triton_addmm.py' 2025-09-07T06:14:08.9393630Z adding 'torch/_lazy/__init__.py' 2025-09-07T06:14:08.9395390Z adding 'torch/_lazy/closure.py' 2025-09-07T06:14:08.9396220Z adding 'torch/_lazy/computation.py' 2025-09-07T06:14:08.9397060Z adding 'torch/_lazy/config.py' 2025-09-07T06:14:08.9397930Z adding 'torch/_lazy/debug.py' 2025-09-07T06:14:08.9398830Z adding 'torch/_lazy/device_context.py' 2025-09-07T06:14:08.9401540Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-09-07T06:14:08.9402080Z adding 'torch/_lazy/ir_cache.py' 2025-09-07T06:14:08.9402890Z adding 'torch/_lazy/metrics.py' 2025-09-07T06:14:08.9403870Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-09-07T06:14:08.9404740Z adding 'torch/_lazy/ts_backend.py' 2025-09-07T06:14:08.9405870Z adding 'torch/_library/__init__.py' 2025-09-07T06:14:08.9408200Z adding 'torch/_library/autograd.py' 2025-09-07T06:14:08.9415690Z adding 'torch/_library/custom_ops.py' 2025-09-07T06:14:08.9419290Z adding 'torch/_library/fake_class_registry.py' 2025-09-07T06:14:08.9421600Z adding 'torch/_library/fake_impl.py' 2025-09-07T06:14:08.9424770Z adding 'torch/_library/fake_profile.py' 2025-09-07T06:14:08.9427960Z adding 'torch/_library/infer_schema.py' 2025-09-07T06:14:08.9429190Z adding 'torch/_library/simple_registry.py' 2025-09-07T06:14:08.9432910Z adding 'torch/_library/triton.py' 2025-09-07T06:14:08.9437280Z adding 'torch/_library/utils.py' 2025-09-07T06:14:08.9438520Z adding 'torch/_logging/__init__.py' 2025-09-07T06:14:08.9450360Z adding 'torch/_logging/_internal.py' 2025-09-07T06:14:08.9452670Z adding 'torch/_logging/_registrations.py' 2025-09-07T06:14:08.9453650Z adding 'torch/_logging/scribe.py' 2025-09-07T06:14:08.9455030Z adding 'torch/_logging/structured.py' 2025-09-07T06:14:08.9456330Z adding 'torch/_numpy/__init__.py' 2025-09-07T06:14:08.9457490Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-09-07T06:14:08.9460790Z adding 'torch/_numpy/_casting_dicts.py' 2025-09-07T06:14:08.9463650Z adding 'torch/_numpy/_dtypes.py' 2025-09-07T06:14:08.9465450Z adding 'torch/_numpy/_dtypes_impl.py' 2025-09-07T06:14:08.9466480Z adding 'torch/_numpy/_funcs.py' 2025-09-07T06:14:08.9479500Z adding 'torch/_numpy/_funcs_impl.py' 2025-09-07T06:14:08.9480340Z adding 'torch/_numpy/_getlimits.py' 2025-09-07T06:14:08.9485280Z adding 'torch/_numpy/_ndarray.py' 2025-09-07T06:14:08.9487520Z adding 'torch/_numpy/_normalizations.py' 2025-09-07T06:14:08.9490050Z adding 'torch/_numpy/_reductions_impl.py' 2025-09-07T06:14:08.9492170Z adding 'torch/_numpy/_ufuncs.py' 2025-09-07T06:14:08.9492780Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-09-07T06:14:08.9495380Z adding 'torch/_numpy/_util.py' 2025-09-07T06:14:08.9496130Z adding 'torch/_numpy/fft.py' 2025-09-07T06:14:08.9498090Z adding 'torch/_numpy/linalg.py' 2025-09-07T06:14:08.9499230Z adding 'torch/_numpy/random.py' 2025-09-07T06:14:08.9500390Z adding 'torch/_numpy/testing/__init__.py' 2025-09-07T06:14:08.9516780Z adding 'torch/_numpy/testing/utils.py' 2025-09-07T06:14:08.9532930Z adding 'torch/_prims/__init__.py' 2025-09-07T06:14:08.9535200Z adding 'torch/_prims/context.py' 2025-09-07T06:14:08.9536240Z adding 'torch/_prims/debug_prims.py' 2025-09-07T06:14:08.9537450Z adding 'torch/_prims/executor.py' 2025-09-07T06:14:08.9541080Z adding 'torch/_prims/rng_prims.py' 2025-09-07T06:14:08.9557910Z adding 'torch/_prims_common/__init__.py' 2025-09-07T06:14:08.9562500Z adding 'torch/_prims_common/wrappers.py' 2025-09-07T06:14:08.9608210Z adding 'torch/_refs/__init__.py' 2025-09-07T06:14:08.9610610Z adding 'torch/_refs/_conversions.py' 2025-09-07T06:14:08.9613890Z adding 'torch/_refs/fft.py' 2025-09-07T06:14:08.9617000Z adding 'torch/_refs/linalg/__init__.py' 2025-09-07T06:14:08.9617740Z adding 'torch/_refs/nn/__init__.py' 2025-09-07T06:14:08.9626080Z adding 'torch/_refs/nn/functional/__init__.py' 2025-09-07T06:14:08.9628200Z adding 'torch/_refs/special/__init__.py' 2025-09-07T06:14:08.9628900Z adding 'torch/_strobelight/__init__.py' 2025-09-07T06:14:08.9631680Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-09-07T06:14:08.9633820Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-09-07T06:14:08.9634760Z adding 'torch/_subclasses/__init__.py' 2025-09-07T06:14:08.9637390Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-09-07T06:14:08.9646330Z adding 'torch/_subclasses/fake_impls.py' 2025-09-07T06:14:08.9677230Z adding 'torch/_subclasses/fake_tensor.py' 2025-09-07T06:14:08.9680450Z adding 'torch/_subclasses/fake_utils.py' 2025-09-07T06:14:08.9687310Z adding 'torch/_subclasses/functional_tensor.py' 2025-09-07T06:14:08.9705260Z adding 'torch/_subclasses/meta_utils.py' 2025-09-07T06:14:08.9707840Z adding 'torch/_subclasses/schema_check_mode.py' 2025-09-07T06:14:08.9708600Z adding 'torch/_vendor/__init__.py' 2025-09-07T06:14:08.9709810Z adding 'torch/_vendor/packaging/__init__.py' 2025-09-07T06:14:08.9710760Z adding 'torch/_vendor/packaging/_structures.py' 2025-09-07T06:14:08.9714520Z adding 'torch/_vendor/packaging/version.py' 2025-09-07T06:14:08.9717040Z adding 'torch/accelerator/__init__.py' 2025-09-07T06:14:08.9717790Z adding 'torch/accelerator/_utils.py' 2025-09-07T06:14:08.9719820Z adding 'torch/accelerator/memory.py' 2025-09-07T06:14:08.9720610Z adding 'torch/amp/__init__.py' 2025-09-07T06:14:08.9725570Z adding 'torch/amp/autocast_mode.py' 2025-09-07T06:14:08.9732120Z adding 'torch/amp/grad_scaler.py' 2025-09-07T06:14:08.9733250Z adding 'torch/ao/__init__.py' 2025-09-07T06:14:08.9734580Z adding 'torch/ao/nn/__init__.py' 2025-09-07T06:14:08.9735950Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-09-07T06:14:08.9737140Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-09-07T06:14:08.9738700Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-09-07T06:14:08.9739690Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-09-07T06:14:08.9740780Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-09-07T06:14:08.9745770Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-09-07T06:14:08.9747900Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-09-07T06:14:08.9748640Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-09-07T06:14:08.9749650Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-09-07T06:14:08.9750680Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-09-07T06:14:08.9751710Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-09-07T06:14:08.9752900Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-09-07T06:14:08.9753930Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-09-07T06:14:08.9755040Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-09-07T06:14:08.9756320Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-09-07T06:14:08.9757830Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-09-07T06:14:08.9759400Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-09-07T06:14:08.9760310Z adding 'torch/ao/nn/qat/__init__.py' 2025-09-07T06:14:08.9761310Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-09-07T06:14:08.9762270Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-09-07T06:14:08.9763260Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-09-07T06:14:08.9764260Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-09-07T06:14:08.9766450Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-09-07T06:14:08.9768010Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-09-07T06:14:08.9769570Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-09-07T06:14:08.9770590Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-09-07T06:14:08.9771660Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-09-07T06:14:08.9776220Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-09-07T06:14:08.9780540Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-09-07T06:14:08.9781510Z adding 'torch/ao/nn/quantized/__init__.py' 2025-09-07T06:14:08.9786210Z adding 'torch/ao/nn/quantized/functional.py' 2025-09-07T06:14:08.9787140Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-09-07T06:14:08.9788410Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-09-07T06:14:08.9791000Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-09-07T06:14:08.9792520Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-09-07T06:14:08.9800800Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-09-07T06:14:08.9802920Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-09-07T06:14:08.9805150Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-09-07T06:14:08.9806230Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-09-07T06:14:08.9811740Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-09-07T06:14:08.9812610Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-09-07T06:14:08.9815480Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-09-07T06:14:08.9817040Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-09-07T06:14:08.9820230Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-09-07T06:14:08.9821570Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-09-07T06:14:08.9822640Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-09-07T06:14:08.9824660Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-09-07T06:14:08.9825300Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-09-07T06:14:08.9826440Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-09-07T06:14:08.9828690Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-09-07T06:14:08.9829660Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-09-07T06:14:08.9834130Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-09-07T06:14:08.9835240Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-09-07T06:14:08.9838020Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-09-07T06:14:08.9838820Z adding 'torch/ao/nn/sparse/__init__.py' 2025-09-07T06:14:08.9839880Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-09-07T06:14:08.9842190Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-09-07T06:14:08.9843010Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-09-07T06:14:08.9844080Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-09-07T06:14:08.9846190Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-09-07T06:14:08.9846780Z adding 'torch/ao/ns/__init__.py' 2025-09-07T06:14:08.9850710Z adding 'torch/ao/ns/_numeric_suite.py' 2025-09-07T06:14:08.9858440Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-09-07T06:14:08.9859420Z adding 'torch/ao/ns/fx/__init__.py' 2025-09-07T06:14:08.9863850Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-09-07T06:14:08.9872480Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-09-07T06:14:08.9875720Z adding 'torch/ao/ns/fx/mappings.py' 2025-09-07T06:14:08.9886230Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-09-07T06:14:08.9887500Z adding 'torch/ao/ns/fx/ns_types.py' 2025-09-07T06:14:08.9889790Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-09-07T06:14:08.9892210Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-09-07T06:14:08.9896260Z adding 'torch/ao/ns/fx/utils.py' 2025-09-07T06:14:08.9898580Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-09-07T06:14:08.9899550Z adding 'torch/ao/pruning/__init__.py' 2025-09-07T06:14:08.9900370Z adding 'torch/ao/pruning/_mappings.py' 2025-09-07T06:14:08.9901540Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-09-07T06:14:08.9902690Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-09-07T06:14:08.9907250Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-09-07T06:14:08.9908050Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-09-07T06:14:08.9910520Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-09-07T06:14:08.9911290Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-09-07T06:14:08.9914900Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-09-07T06:14:08.9917080Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-09-07T06:14:08.9918400Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-09-07T06:14:08.9919450Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-09-07T06:14:08.9920420Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-09-07T06:14:08.9921550Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-09-07T06:14:08.9923220Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-09-07T06:14:08.9924800Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-09-07T06:14:08.9925650Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-09-07T06:14:08.9928340Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-09-07T06:14:08.9929290Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-09-07T06:14:08.9930430Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-09-07T06:14:08.9931490Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-09-07T06:14:08.9935350Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-09-07T06:14:08.9936220Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-09-07T06:14:08.9937090Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-09-07T06:14:08.9939190Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-09-07T06:14:08.9940340Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-09-07T06:14:08.9941570Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-09-07T06:14:08.9942490Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-09-07T06:14:08.9945880Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-09-07T06:14:08.9946890Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-09-07T06:14:08.9948950Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-09-07T06:14:08.9951190Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-09-07T06:14:08.9953470Z adding 'torch/ao/quantization/__init__.py' 2025-09-07T06:14:08.9954930Z adding 'torch/ao/quantization/_correct_bias.py' 2025-09-07T06:14:08.9957720Z adding 'torch/ao/quantization/_equalize.py' 2025-09-07T06:14:08.9959550Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-09-07T06:14:08.9963740Z adding 'torch/ao/quantization/fake_quantize.py' 2025-09-07T06:14:08.9965870Z adding 'torch/ao/quantization/fuse_modules.py' 2025-09-07T06:14:08.9968050Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-09-07T06:14:08.9983480Z adding 'torch/ao/quantization/observer.py' 2025-09-07T06:14:08.9988270Z adding 'torch/ao/quantization/qconfig.py' 2025-09-07T06:14:08.9991450Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-09-07T06:14:08.9992180Z adding 'torch/ao/quantization/quant_type.py' 2025-09-07T06:14:08.9995070Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-09-07T06:14:09.0001150Z adding 'torch/ao/quantization/quantize.py' 2025-09-07T06:14:09.0006670Z adding 'torch/ao/quantization/quantize_fx.py' 2025-09-07T06:14:09.0009820Z adding 'torch/ao/quantization/quantize_jit.py' 2025-09-07T06:14:09.0012040Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-09-07T06:14:09.0012930Z adding 'torch/ao/quantization/stubs.py' 2025-09-07T06:14:09.0019650Z adding 'torch/ao/quantization/utils.py' 2025-09-07T06:14:09.0020910Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-09-07T06:14:09.0025400Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-09-07T06:14:09.0026800Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-09-07T06:14:09.0032750Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-09-07T06:14:09.0035450Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-09-07T06:14:09.0036470Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-09-07T06:14:09.0038020Z adding 'torch/ao/quantization/backend_config/native.py' 2025-09-07T06:14:09.0041240Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-09-07T06:14:09.0042320Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-09-07T06:14:09.0043510Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-09-07T06:14:09.0046520Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-09-07T06:14:09.0047510Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-09-07T06:14:09.0048630Z adding 'torch/ao/quantization/fx/__init__.py' 2025-09-07T06:14:09.0054770Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-09-07T06:14:09.0062640Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-09-07T06:14:09.0072590Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-09-07T06:14:09.0084310Z adding 'torch/ao/quantization/fx/convert.py' 2025-09-07T06:14:09.0087800Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-09-07T06:14:09.0089910Z adding 'torch/ao/quantization/fx/fuse.py' 2025-09-07T06:14:09.0091240Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-09-07T06:14:09.0093280Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-09-07T06:14:09.0093790Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-09-07T06:14:09.0094670Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-09-07T06:14:09.0097260Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-09-07T06:14:09.0099560Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-09-07T06:14:09.0100640Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-09-07T06:14:09.0119830Z adding 'torch/ao/quantization/fx/prepare.py' 2025-09-07T06:14:09.0123630Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-09-07T06:14:09.0125760Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-09-07T06:14:09.0126340Z adding 'torch/ao/quantization/fx/tracer.py' 2025-09-07T06:14:09.0134560Z adding 'torch/ao/quantization/fx/utils.py' 2025-09-07T06:14:09.0135600Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-09-07T06:14:09.0149920Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-09-07T06:14:09.0156610Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-09-07T06:14:09.0159430Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-09-07T06:14:09.0166010Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-09-07T06:14:09.0167040Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-09-07T06:14:09.0173290Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-09-07T06:14:09.0176390Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-09-07T06:14:09.0177550Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-09-07T06:14:09.0179690Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-09-07T06:14:09.0181590Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-09-07T06:14:09.0182490Z adding 'torch/ao/quantization/pt2e/lowering.py' 2025-09-07T06:14:09.0184980Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-09-07T06:14:09.0190180Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-09-07T06:14:09.0198240Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-09-07T06:14:09.0203540Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-09-07T06:14:09.0204690Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-09-07T06:14:09.0209250Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-09-07T06:14:09.0210290Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-09-07T06:14:09.0212380Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-09-07T06:14:09.0213370Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-09-07T06:14:09.0215660Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-09-07T06:14:09.0216700Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-09-07T06:14:09.0226900Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-09-07T06:14:09.0230380Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-09-07T06:14:09.0236750Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-09-07T06:14:09.0238030Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-09-07T06:14:09.0244090Z adding 'torch/autograd/__init__.py' 2025-09-07T06:14:09.0245410Z adding 'torch/autograd/anomaly_mode.py' 2025-09-07T06:14:09.0247760Z adding 'torch/autograd/forward_ad.py' 2025-09-07T06:14:09.0254570Z adding 'torch/autograd/function.py' 2025-09-07T06:14:09.0263860Z adding 'torch/autograd/functional.py' 2025-09-07T06:14:09.0266860Z adding 'torch/autograd/grad_mode.py' 2025-09-07T06:14:09.0286590Z adding 'torch/autograd/gradcheck.py' 2025-09-07T06:14:09.0293650Z adding 'torch/autograd/graph.py' 2025-09-07T06:14:09.0303630Z adding 'torch/autograd/profiler.py' 2025-09-07T06:14:09.0306550Z adding 'torch/autograd/profiler_legacy.py' 2025-09-07T06:14:09.0315220Z adding 'torch/autograd/profiler_util.py' 2025-09-07T06:14:09.0315990Z adding 'torch/autograd/variable.py' 2025-09-07T06:14:09.0317110Z adding 'torch/autograd/_functions/__init__.py' 2025-09-07T06:14:09.0318230Z adding 'torch/autograd/_functions/tensor.py' 2025-09-07T06:14:09.0319150Z adding 'torch/autograd/_functions/utils.py' 2025-09-07T06:14:09.0321160Z adding 'torch/backends/__init__.py' 2025-09-07T06:14:09.0322300Z adding 'torch/backends/_coreml/__init__.py' 2025-09-07T06:14:09.0323870Z adding 'torch/backends/_coreml/preprocess.py' 2025-09-07T06:14:09.0324780Z adding 'torch/backends/_nnapi/__init__.py' 2025-09-07T06:14:09.0326870Z adding 'torch/backends/_nnapi/prepare.py' 2025-09-07T06:14:09.0341460Z adding 'torch/backends/_nnapi/serializer.py' 2025-09-07T06:14:09.0342710Z adding 'torch/backends/cpu/__init__.py' 2025-09-07T06:14:09.0346460Z adding 'torch/backends/cuda/__init__.py' 2025-09-07T06:14:09.0348680Z adding 'torch/backends/cudnn/__init__.py' 2025-09-07T06:14:09.0349560Z adding 'torch/backends/cudnn/rnn.py' 2025-09-07T06:14:09.0350840Z adding 'torch/backends/cusparselt/__init__.py' 2025-09-07T06:14:09.0351830Z adding 'torch/backends/kleidiai/__init__.py' 2025-09-07T06:14:09.0352910Z adding 'torch/backends/mha/__init__.py' 2025-09-07T06:14:09.0354120Z adding 'torch/backends/miopen/__init__.py' 2025-09-07T06:14:09.0355370Z adding 'torch/backends/mkl/__init__.py' 2025-09-07T06:14:09.0357370Z adding 'torch/backends/mkldnn/__init__.py' 2025-09-07T06:14:09.0358220Z adding 'torch/backends/mps/__init__.py' 2025-09-07T06:14:09.0359320Z adding 'torch/backends/nnpack/__init__.py' 2025-09-07T06:14:09.0360250Z adding 'torch/backends/openmp/__init__.py' 2025-09-07T06:14:09.0362270Z adding 'torch/backends/opt_einsum/__init__.py' 2025-09-07T06:14:09.0363100Z adding 'torch/backends/quantized/__init__.py' 2025-09-07T06:14:09.0363970Z adding 'torch/backends/xeon/__init__.py' 2025-09-07T06:14:09.0371000Z adding 'torch/backends/xeon/run_cpu.py' 2025-09-07T06:14:09.0372010Z adding 'torch/backends/xnnpack/__init__.py' 2025-09-07T06:14:09.1478930Z adding 'torch/bin/protoc' 2025-09-07T06:14:09.2588130Z adding 'torch/bin/protoc-3.13.0.0' 2025-09-07T06:14:09.2615550Z adding 'torch/bin/torch_shm_manager' 2025-09-07T06:14:09.2622440Z adding 'torch/compiler/__init__.py' 2025-09-07T06:14:09.2625940Z adding 'torch/compiler/_cache.py' 2025-09-07T06:14:09.2627740Z adding 'torch/compiler/config.py' 2025-09-07T06:14:09.2628710Z adding 'torch/contrib/__init__.py' 2025-09-07T06:14:09.2630880Z adding 'torch/contrib/_tensorboard_vis.py' 2025-09-07T06:14:09.2632660Z adding 'torch/cpu/__init__.py' 2025-09-07T06:14:09.2633610Z adding 'torch/cpu/amp/__init__.py' 2025-09-07T06:14:09.2634710Z adding 'torch/cpu/amp/autocast_mode.py' 2025-09-07T06:14:09.2635680Z adding 'torch/cpu/amp/grad_scaler.py' 2025-09-07T06:14:09.2637890Z adding 'torch/csrc/inductor/aoti_runtime/model.h' 2025-09-07T06:14:09.2651120Z adding 'torch/cuda/__init__.py' 2025-09-07T06:14:09.2652240Z adding 'torch/cuda/_gpu_trace.py' 2025-09-07T06:14:09.2658500Z adding 'torch/cuda/_memory_viz.py' 2025-09-07T06:14:09.2659380Z adding 'torch/cuda/_pin_memory_utils.py' 2025-09-07T06:14:09.2664240Z adding 'torch/cuda/_sanitizer.py' 2025-09-07T06:14:09.2667470Z adding 'torch/cuda/_utils.py' 2025-09-07T06:14:09.2668160Z adding 'torch/cuda/comm.py' 2025-09-07T06:14:09.2670200Z adding 'torch/cuda/gds.py' 2025-09-07T06:14:09.2676010Z adding 'torch/cuda/graphs.py' 2025-09-07T06:14:09.2678150Z adding 'torch/cuda/jiterator.py' 2025-09-07T06:14:09.2687500Z adding 'torch/cuda/memory.py' 2025-09-07T06:14:09.2689350Z adding 'torch/cuda/nccl.py' 2025-09-07T06:14:09.2690600Z adding 'torch/cuda/nvtx.py' 2025-09-07T06:14:09.2691930Z adding 'torch/cuda/profiler.py' 2025-09-07T06:14:09.2693500Z adding 'torch/cuda/random.py' 2025-09-07T06:14:09.2694290Z adding 'torch/cuda/sparse.py' 2025-09-07T06:14:09.2696890Z adding 'torch/cuda/streams.py' 2025-09-07T06:14:09.2703670Z adding 'torch/cuda/tunable.py' 2025-09-07T06:14:09.2704710Z adding 'torch/cuda/amp/__init__.py' 2025-09-07T06:14:09.2705900Z adding 'torch/cuda/amp/autocast_mode.py' 2025-09-07T06:14:09.2706720Z adding 'torch/cuda/amp/common.py' 2025-09-07T06:14:09.2707810Z adding 'torch/cuda/amp/grad_scaler.py' 2025-09-07T06:14:09.2714890Z adding 'torch/distributed/_C_stubs.py' 2025-09-07T06:14:09.2715230Z adding 'torch/distributed/__init__.py' 2025-09-07T06:14:09.2715450Z adding 'torch/distributed/_checkpointable.py' 2025-09-07T06:14:09.2715680Z adding 'torch/distributed/_composable_state.py' 2025-09-07T06:14:09.2715890Z adding 'torch/distributed/_dist2.py' 2025-09-07T06:14:09.2716700Z adding 'torch/distributed/_distributed_c10d.py' 2025-09-07T06:14:09.2725520Z adding 'torch/distributed/_functional_collectives.py' 2025-09-07T06:14:09.2726880Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-09-07T06:14:09.2728500Z adding 'torch/distributed/_serialization.py' 2025-09-07T06:14:09.2734780Z adding 'torch/distributed/_state_dict_utils.py' 2025-09-07T06:14:09.2736120Z adding 'torch/distributed/argparse_util.py' 2025-09-07T06:14:09.2737390Z adding 'torch/distributed/c10d_logger.py' 2025-09-07T06:14:09.2740560Z adding 'torch/distributed/collective_utils.py' 2025-09-07T06:14:09.2741290Z adding 'torch/distributed/constants.py' 2025-09-07T06:14:09.2752600Z adding 'torch/distributed/device_mesh.py' 2025-09-07T06:14:09.2798770Z adding 'torch/distributed/distributed_c10d.py' 2025-09-07T06:14:09.2802030Z adding 'torch/distributed/launch.py' 2025-09-07T06:14:09.2802930Z adding 'torch/distributed/logging_handlers.py' 2025-09-07T06:14:09.2804950Z adding 'torch/distributed/remote_device.py' 2025-09-07T06:14:09.2807360Z adding 'torch/distributed/rendezvous.py' 2025-09-07T06:14:09.2814920Z adding 'torch/distributed/run.py' 2025-09-07T06:14:09.2818280Z adding 'torch/distributed/utils.py' 2025-09-07T06:14:09.2819940Z adding 'torch/distributed/_composable/__init__.py' 2025-09-07T06:14:09.2821540Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-09-07T06:14:09.2824270Z adding 'torch/distributed/_composable/contract.py' 2025-09-07T06:14:09.2826750Z adding 'torch/distributed/_composable/replicate.py' 2025-09-07T06:14:09.2830170Z adding 'torch/distributed/_composable/replicate_with_fsdp.py' 2025-09-07T06:14:09.2831240Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-09-07T06:14:09.2832200Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-09-07T06:14:09.2833280Z adding 'torch/distributed/_shard/__init__.py' 2025-09-07T06:14:09.2834280Z adding 'torch/distributed/_shard/_utils.py' 2025-09-07T06:14:09.2837470Z adding 'torch/distributed/_shard/api.py' 2025-09-07T06:14:09.2838460Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-09-07T06:14:09.2839600Z adding 'torch/distributed/_shard/metadata.py' 2025-09-07T06:14:09.2840620Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-09-07T06:14:09.2841550Z adding 'torch/distributed/_shard/sharder.py' 2025-09-07T06:14:09.2842950Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-09-07T06:14:09.2844340Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-09-07T06:14:09.2845900Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-09-07T06:14:09.2849460Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-09-07T06:14:09.2860300Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-09-07T06:14:09.2861460Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-09-07T06:14:09.2862390Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-09-07T06:14:09.2863790Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-09-07T06:14:09.2866530Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-09-07T06:14:09.2867440Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-09-07T06:14:09.2870410Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-09-07T06:14:09.2871620Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-09-07T06:14:09.2873150Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-09-07T06:14:09.2874350Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-09-07T06:14:09.2875960Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-09-07T06:14:09.2876970Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-09-07T06:14:09.2879140Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-09-07T06:14:09.2879870Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-09-07T06:14:09.2881290Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-09-07T06:14:09.2882470Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-09-07T06:14:09.2885940Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-09-07T06:14:09.2888470Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-09-07T06:14:09.2890900Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-09-07T06:14:09.2891890Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-09-07T06:14:09.2895260Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-09-07T06:14:09.2897930Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-09-07T06:14:09.2901860Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-09-07T06:14:09.2902760Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-09-07T06:14:09.2903960Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-09-07T06:14:09.2916870Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-09-07T06:14:09.2923390Z adding 'torch/distributed/_symmetric_memory/_nvshmem_triton.py' 2025-09-07T06:14:09.2924620Z adding 'torch/distributed/_tensor/__init__.py' 2025-09-07T06:14:09.2925480Z adding 'torch/distributed/_tensor/api.py' 2025-09-07T06:14:09.2926400Z adding 'torch/distributed/_tensor/placement_types.py' 2025-09-07T06:14:09.2927520Z adding 'torch/distributed/_tools/__init__.py' 2025-09-07T06:14:09.2928530Z adding 'torch/distributed/_tools/common_utils.py' 2025-09-07T06:14:09.2930960Z adding 'torch/distributed/_tools/fake_collectives.py' 2025-09-07T06:14:09.2935720Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-09-07T06:14:09.2938480Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-09-07T06:14:09.2947380Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-09-07T06:14:09.2950430Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-09-07T06:14:09.2952880Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-09-07T06:14:09.2957250Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-09-07T06:14:09.2965840Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-09-07T06:14:09.2968680Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-09-07T06:14:09.2969670Z adding 'torch/distributed/algorithms/__init__.py' 2025-09-07T06:14:09.2973180Z adding 'torch/distributed/algorithms/join.py' 2025-09-07T06:14:09.2974150Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-09-07T06:14:09.2977480Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-09-07T06:14:09.2978410Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-09-07T06:14:09.2980680Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-09-07T06:14:09.2981770Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-09-07T06:14:09.2983440Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-09-07T06:14:09.2984530Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-09-07T06:14:09.2986660Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-09-07T06:14:09.2987950Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-09-07T06:14:09.2992050Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-09-07T06:14:09.2992880Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-09-07T06:14:09.2995080Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-09-07T06:14:09.2996180Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-09-07T06:14:09.2998420Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-09-07T06:14:09.2999740Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-09-07T06:14:09.3008080Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-09-07T06:14:09.3010290Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-09-07T06:14:09.3011060Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-09-07T06:14:09.3013200Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-09-07T06:14:09.3015640Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-09-07T06:14:09.3016700Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-09-07T06:14:09.3018150Z adding 'torch/distributed/autograd/__init__.py' 2025-09-07T06:14:09.3019710Z adding 'torch/distributed/checkpoint/__init__.py' 2025-09-07T06:14:09.3020760Z adding 'torch/distributed/checkpoint/_async_executor.py' 2025-09-07T06:14:09.3023890Z adding 'torch/distributed/checkpoint/_async_process_executor.py' 2025-09-07T06:14:09.3024820Z adding 'torch/distributed/checkpoint/_async_thread_executor.py' 2025-09-07T06:14:09.3026090Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-09-07T06:14:09.3032150Z adding 'torch/distributed/checkpoint/_consolidate_hf_safetensors.py' 2025-09-07T06:14:09.3033220Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-09-07T06:14:09.3034380Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-09-07T06:14:09.3036690Z adding 'torch/distributed/checkpoint/_extension.py' 2025-09-07T06:14:09.3038060Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-09-07T06:14:09.3039350Z adding 'torch/distributed/checkpoint/_hf_utils.py' 2025-09-07T06:14:09.3040540Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-09-07T06:14:09.3044070Z adding 'torch/distributed/checkpoint/_pg_transport.py' 2025-09-07T06:14:09.3045250Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-09-07T06:14:09.3048710Z adding 'torch/distributed/checkpoint/_state_dict_stager.py' 2025-09-07T06:14:09.3049500Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-09-07T06:14:09.3051580Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-09-07T06:14:09.3052100Z adding 'torch/distributed/checkpoint/_version.py' 2025-09-07T06:14:09.3053120Z adding 'torch/distributed/checkpoint/api.py' 2025-09-07T06:14:09.3058740Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-09-07T06:14:09.3065970Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-09-07T06:14:09.3068510Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-09-07T06:14:09.3071780Z adding 'torch/distributed/checkpoint/hf_storage.py' 2025-09-07T06:14:09.3072870Z adding 'torch/distributed/checkpoint/logger.py' 2025-09-07T06:14:09.3073820Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-09-07T06:14:09.3075750Z adding 'torch/distributed/checkpoint/metadata.py' 2025-09-07T06:14:09.3078800Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-09-07T06:14:09.3082370Z adding 'torch/distributed/checkpoint/planner.py' 2025-09-07T06:14:09.3086060Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-09-07T06:14:09.3088480Z adding 'torch/distributed/checkpoint/quantized_hf_storage.py' 2025-09-07T06:14:09.3089350Z adding 'torch/distributed/checkpoint/resharding.py' 2025-09-07T06:14:09.3093930Z adding 'torch/distributed/checkpoint/staging.py' 2025-09-07T06:14:09.3104870Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-09-07T06:14:09.3108240Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-09-07T06:14:09.3111960Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-09-07T06:14:09.3112680Z adding 'torch/distributed/checkpoint/stateful.py' 2025-09-07T06:14:09.3115120Z adding 'torch/distributed/checkpoint/storage.py' 2025-09-07T06:14:09.3118440Z adding 'torch/distributed/checkpoint/utils.py' 2025-09-07T06:14:09.3119710Z adding 'torch/distributed/checkpoint/_experimental/__init__.py' 2025-09-07T06:14:09.3122270Z adding 'torch/distributed/checkpoint/_experimental/barriers.py' 2025-09-07T06:14:09.3123670Z adding 'torch/distributed/checkpoint/_experimental/builder.py' 2025-09-07T06:14:09.3126750Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_process.py' 2025-09-07T06:14:09.3128980Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_reader.py' 2025-09-07T06:14:09.3130270Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_writer.py' 2025-09-07T06:14:09.3132770Z adding 'torch/distributed/checkpoint/_experimental/checkpointer.py' 2025-09-07T06:14:09.3133510Z adding 'torch/distributed/checkpoint/_experimental/config.py' 2025-09-07T06:14:09.3135970Z adding 'torch/distributed/checkpoint/_experimental/staging.py' 2025-09-07T06:14:09.3136660Z adding 'torch/distributed/checkpoint/_experimental/types.py' 2025-09-07T06:14:09.3137720Z adding 'torch/distributed/checkpoint/_experimental/utils.py' 2025-09-07T06:14:09.3139800Z adding 'torch/distributed/elastic/__init__.py' 2025-09-07T06:14:09.3140560Z adding 'torch/distributed/elastic/control_plane.py' 2025-09-07T06:14:09.3141770Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-09-07T06:14:09.3143330Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-09-07T06:14:09.3152120Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-09-07T06:14:09.3153160Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-09-07T06:14:09.3156910Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-09-07T06:14:09.3159140Z adding 'torch/distributed/elastic/events/__init__.py' 2025-09-07T06:14:09.3160010Z adding 'torch/distributed/elastic/events/api.py' 2025-09-07T06:14:09.3160870Z adding 'torch/distributed/elastic/events/handlers.py' 2025-09-07T06:14:09.3163070Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-09-07T06:14:09.3164500Z adding 'torch/distributed/elastic/metrics/api.py' 2025-09-07T06:14:09.3167180Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-09-07T06:14:09.3174280Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-09-07T06:14:09.3175550Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-09-07T06:14:09.3177710Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-09-07T06:14:09.3181540Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-09-07T06:14:09.3183720Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-09-07T06:14:09.3184280Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-09-07T06:14:09.3185470Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-09-07T06:14:09.3186400Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-09-07T06:14:09.3187740Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-09-07T06:14:09.3190050Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-09-07T06:14:09.3190850Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-09-07T06:14:09.3194030Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-09-07T06:14:09.3196820Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-09-07T06:14:09.3206030Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-09-07T06:14:09.3215040Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-09-07T06:14:09.3217340Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-09-07T06:14:09.3219830Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-09-07T06:14:09.3222000Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-09-07T06:14:09.3223090Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-09-07T06:14:09.3224580Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-09-07T06:14:09.3227130Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-09-07T06:14:09.3228290Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-09-07T06:14:09.3231130Z adding 'torch/distributed/elastic/timer/api.py' 2025-09-07T06:14:09.3231880Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-09-07T06:14:09.3235830Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-09-07T06:14:09.3237060Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-09-07T06:14:09.3238220Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-09-07T06:14:09.3239370Z adding 'torch/distributed/elastic/utils/api.py' 2025-09-07T06:14:09.3241650Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-09-07T06:14:09.3242210Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-09-07T06:14:09.3243360Z adding 'torch/distributed/elastic/utils/logging.py' 2025-09-07T06:14:09.3245750Z adding 'torch/distributed/elastic/utils/store.py' 2025-09-07T06:14:09.3246730Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-09-07T06:14:09.3247900Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-09-07T06:14:09.3249240Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-09-07T06:14:09.3250610Z adding 'torch/distributed/fsdp/__init__.py' 2025-09-07T06:14:09.3256180Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-09-07T06:14:09.3257970Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-09-07T06:14:09.3259080Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-09-07T06:14:09.3262540Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-09-07T06:14:09.3288740Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-09-07T06:14:09.3290990Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-09-07T06:14:09.3301070Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-09-07T06:14:09.3302020Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-09-07T06:14:09.3321830Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-09-07T06:14:09.3336810Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-09-07T06:14:09.3338970Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-09-07T06:14:09.3345390Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-09-07T06:14:09.3348160Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-09-07T06:14:09.3349570Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-09-07T06:14:09.3352540Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-09-07T06:14:09.3355220Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-09-07T06:14:09.3359480Z adding 'torch/distributed/fsdp/api.py' 2025-09-07T06:14:09.3379650Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-09-07T06:14:09.3383660Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-09-07T06:14:09.3388900Z adding 'torch/distributed/fsdp/wrap.py' 2025-09-07T06:14:09.3390120Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-09-07T06:14:09.3392220Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-09-07T06:14:09.3398120Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-09-07T06:14:09.3399710Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-09-07T06:14:09.3402520Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-09-07T06:14:09.3411020Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-09-07T06:14:09.3418980Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-09-07T06:14:09.3422870Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-09-07T06:14:09.3429740Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-09-07T06:14:09.3430810Z adding 'torch/distributed/launcher/__init__.py' 2025-09-07T06:14:09.3434020Z adding 'torch/distributed/launcher/api.py' 2025-09-07T06:14:09.3434940Z adding 'torch/distributed/nn/__init__.py' 2025-09-07T06:14:09.3438220Z adding 'torch/distributed/nn/functional.py' 2025-09-07T06:14:09.3439340Z adding 'torch/distributed/nn/api/__init__.py' 2025-09-07T06:14:09.3445080Z adding 'torch/distributed/nn/api/remote_module.py' 2025-09-07T06:14:09.3445880Z adding 'torch/distributed/nn/jit/__init__.py' 2025-09-07T06:14:09.3447910Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-09-07T06:14:09.3448690Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-09-07T06:14:09.3450070Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-09-07T06:14:09.3451370Z adding 'torch/distributed/optim/__init__.py' 2025-09-07T06:14:09.3452290Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-09-07T06:14:09.3454400Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-09-07T06:14:09.3455480Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-09-07T06:14:09.3456930Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-09-07T06:14:09.3459170Z adding 'torch/distributed/optim/functional_adam.py' 2025-09-07T06:14:09.3460250Z adding 'torch/distributed/optim/functional_adamax.py' 2025-09-07T06:14:09.3462330Z adding 'torch/distributed/optim/functional_adamw.py' 2025-09-07T06:14:09.3463520Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-09-07T06:14:09.3464900Z adding 'torch/distributed/optim/functional_rprop.py' 2025-09-07T06:14:09.3466860Z adding 'torch/distributed/optim/functional_sgd.py' 2025-09-07T06:14:09.3469960Z adding 'torch/distributed/optim/named_optimizer.py' 2025-09-07T06:14:09.3472520Z adding 'torch/distributed/optim/optimizer.py' 2025-09-07T06:14:09.3473780Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-09-07T06:14:09.3474950Z adding 'torch/distributed/optim/utils.py' 2025-09-07T06:14:09.3490370Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-09-07T06:14:09.3491660Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-09-07T06:14:09.3503620Z adding 'torch/distributed/pipelining/_IR.py' 2025-09-07T06:14:09.3504580Z adding 'torch/distributed/pipelining/__init__.py' 2025-09-07T06:14:09.3508640Z adding 'torch/distributed/pipelining/_backward.py' 2025-09-07T06:14:09.3509330Z adding 'torch/distributed/pipelining/_debug.py' 2025-09-07T06:14:09.3511650Z adding 'torch/distributed/pipelining/_schedule_visualizer.py' 2025-09-07T06:14:09.3512380Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-09-07T06:14:09.3514000Z adding 'torch/distributed/pipelining/_utils.py' 2025-09-07T06:14:09.3518150Z adding 'torch/distributed/pipelining/microbatch.py' 2025-09-07T06:14:09.3543740Z adding 'torch/distributed/pipelining/schedules.py' 2025-09-07T06:14:09.3558540Z adding 'torch/distributed/pipelining/stage.py' 2025-09-07T06:14:09.3561770Z adding 'torch/distributed/rpc/__init__.py' 2025-09-07T06:14:09.3562860Z adding 'torch/distributed/rpc/_utils.py' 2025-09-07T06:14:09.3570110Z adding 'torch/distributed/rpc/api.py' 2025-09-07T06:14:09.3573920Z adding 'torch/distributed/rpc/backend_registry.py' 2025-09-07T06:14:09.3574830Z adding 'torch/distributed/rpc/constants.py' 2025-09-07T06:14:09.3576840Z adding 'torch/distributed/rpc/functions.py' 2025-09-07T06:14:09.3579340Z adding 'torch/distributed/rpc/internal.py' 2025-09-07T06:14:09.3581400Z adding 'torch/distributed/rpc/options.py' 2025-09-07T06:14:09.3582510Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-09-07T06:14:09.3584820Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-09-07T06:14:09.3585780Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-09-07T06:14:09.3586940Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-09-07T06:14:09.3588430Z adding 'torch/distributed/tensor/__init__.py' 2025-09-07T06:14:09.3599460Z adding 'torch/distributed/tensor/_api.py' 2025-09-07T06:14:09.3603020Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-09-07T06:14:09.3607970Z adding 'torch/distributed/tensor/_dispatch.py' 2025-09-07T06:14:09.3610750Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-09-07T06:14:09.3616200Z adding 'torch/distributed/tensor/_op_schema.py' 2025-09-07T06:14:09.3620770Z adding 'torch/distributed/tensor/_random.py' 2025-09-07T06:14:09.3624370Z adding 'torch/distributed/tensor/_redistribute.py' 2025-09-07T06:14:09.3630200Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-09-07T06:14:09.3633090Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-09-07T06:14:09.3637760Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-09-07T06:14:09.3638970Z adding 'torch/distributed/tensor/_utils.py' 2025-09-07T06:14:09.3639930Z adding 'torch/distributed/tensor/device_mesh.py' 2025-09-07T06:14:09.3645920Z adding 'torch/distributed/tensor/placement_types.py' 2025-09-07T06:14:09.3647380Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-09-07T06:14:09.3650680Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-09-07T06:14:09.3651850Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-09-07T06:14:09.3654030Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-09-07T06:14:09.3656360Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-09-07T06:14:09.3664000Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-09-07T06:14:09.3670020Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-09-07T06:14:09.3674950Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-09-07T06:14:09.3675810Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-09-07T06:14:09.3685350Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-09-07T06:14:09.3692200Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-09-07T06:14:09.3695880Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-09-07T06:14:09.3697070Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-09-07T06:14:09.3702320Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-09-07T06:14:09.3703610Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-09-07T06:14:09.3705910Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-09-07T06:14:09.3707050Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-09-07T06:14:09.3718520Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-09-07T06:14:09.3721650Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-09-07T06:14:09.3723660Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-09-07T06:14:09.3727940Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-09-07T06:14:09.3729120Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-09-07T06:14:09.3730210Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-09-07T06:14:09.3732330Z adding 'torch/distributed/tensor/parallel/api.py' 2025-09-07T06:14:09.3733640Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-09-07T06:14:09.3737020Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-09-07T06:14:09.3738230Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-09-07T06:14:09.3742120Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-09-07T06:14:09.3747800Z adding 'torch/distributed/tensor/parallel/style.py' 2025-09-07T06:14:09.3750290Z adding 'torch/distributions/__init__.py' 2025-09-07T06:14:09.3751870Z adding 'torch/distributions/bernoulli.py' 2025-09-07T06:14:09.3753230Z adding 'torch/distributions/beta.py' 2025-09-07T06:14:09.3755260Z adding 'torch/distributions/binomial.py' 2025-09-07T06:14:09.3756760Z adding 'torch/distributions/categorical.py' 2025-09-07T06:14:09.3758080Z adding 'torch/distributions/cauchy.py' 2025-09-07T06:14:09.3759110Z adding 'torch/distributions/chi2.py' 2025-09-07T06:14:09.3761560Z adding 'torch/distributions/constraint_registry.py' 2025-09-07T06:14:09.3765510Z adding 'torch/distributions/constraints.py' 2025-09-07T06:14:09.3768040Z adding 'torch/distributions/continuous_bernoulli.py' 2025-09-07T06:14:09.3769320Z adding 'torch/distributions/dirichlet.py' 2025-09-07T06:14:09.3772310Z adding 'torch/distributions/distribution.py' 2025-09-07T06:14:09.3773380Z adding 'torch/distributions/exp_family.py' 2025-09-07T06:14:09.3774700Z adding 'torch/distributions/exponential.py' 2025-09-07T06:14:09.3776250Z adding 'torch/distributions/fishersnedecor.py' 2025-09-07T06:14:09.3777660Z adding 'torch/distributions/gamma.py' 2025-09-07T06:14:09.3779660Z adding 'torch/distributions/generalized_pareto.py' 2025-09-07T06:14:09.3781100Z adding 'torch/distributions/geometric.py' 2025-09-07T06:14:09.3782330Z adding 'torch/distributions/gumbel.py' 2025-09-07T06:14:09.3783470Z adding 'torch/distributions/half_cauchy.py' 2025-09-07T06:14:09.3784590Z adding 'torch/distributions/half_normal.py' 2025-09-07T06:14:09.3786580Z adding 'torch/distributions/independent.py' 2025-09-07T06:14:09.3787460Z adding 'torch/distributions/inverse_gamma.py' 2025-09-07T06:14:09.3793410Z adding 'torch/distributions/kl.py' 2025-09-07T06:14:09.3794670Z adding 'torch/distributions/kumaraswamy.py' 2025-09-07T06:14:09.3796040Z adding 'torch/distributions/laplace.py' 2025-09-07T06:14:09.3798270Z adding 'torch/distributions/lkj_cholesky.py' 2025-09-07T06:14:09.3799240Z adding 'torch/distributions/log_normal.py' 2025-09-07T06:14:09.3800370Z adding 'torch/distributions/logistic_normal.py' 2025-09-07T06:14:09.3803030Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-09-07T06:14:09.3805160Z adding 'torch/distributions/mixture_same_family.py' 2025-09-07T06:14:09.3806770Z adding 'torch/distributions/multinomial.py' 2025-09-07T06:14:09.3809590Z adding 'torch/distributions/multivariate_normal.py' 2025-09-07T06:14:09.3810990Z adding 'torch/distributions/negative_binomial.py' 2025-09-07T06:14:09.3812450Z adding 'torch/distributions/normal.py' 2025-09-07T06:14:09.3814070Z adding 'torch/distributions/one_hot_categorical.py' 2025-09-07T06:14:09.3815180Z adding 'torch/distributions/pareto.py' 2025-09-07T06:14:09.3816410Z adding 'torch/distributions/poisson.py' 2025-09-07T06:14:09.3818280Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-09-07T06:14:09.3819640Z adding 'torch/distributions/relaxed_categorical.py' 2025-09-07T06:14:09.3821100Z adding 'torch/distributions/studentT.py' 2025-09-07T06:14:09.3823530Z adding 'torch/distributions/transformed_distribution.py' 2025-09-07T06:14:09.3831040Z adding 'torch/distributions/transforms.py' 2025-09-07T06:14:09.3832360Z adding 'torch/distributions/uniform.py' 2025-09-07T06:14:09.3834730Z adding 'torch/distributions/utils.py' 2025-09-07T06:14:09.3836730Z adding 'torch/distributions/von_mises.py' 2025-09-07T06:14:09.3837750Z adding 'torch/distributions/weibull.py' 2025-09-07T06:14:09.3840760Z adding 'torch/distributions/wishart.py' 2025-09-07T06:14:09.3846220Z adding 'torch/export/__init__.py' 2025-09-07T06:14:09.3850470Z adding 'torch/export/_draft_export.py' 2025-09-07T06:14:09.3851810Z adding 'torch/export/_leakage_detection_utils.py' 2025-09-07T06:14:09.3852950Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-09-07T06:14:09.3855020Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-09-07T06:14:09.3855950Z adding 'torch/export/_safeguard.py' 2025-09-07T06:14:09.3859930Z adding 'torch/export/_swap.py' 2025-09-07T06:14:09.3880730Z adding 'torch/export/_trace.py' 2025-09-07T06:14:09.3882690Z adding 'torch/export/_tree_utils.py' 2025-09-07T06:14:09.3886680Z adding 'torch/export/_unlift.py' 2025-09-07T06:14:09.3887460Z adding 'torch/export/_wrapper_utils.py' 2025-09-07T06:14:09.3888320Z adding 'torch/export/custom_obj.py' 2025-09-07T06:14:09.3889240Z adding 'torch/export/custom_ops.py' 2025-09-07T06:14:09.3891210Z adding 'torch/export/decomp_utils.py' 2025-09-07T06:14:09.3902930Z adding 'torch/export/dynamic_shapes.py' 2025-09-07T06:14:09.3917780Z adding 'torch/export/exported_program.py' 2025-09-07T06:14:09.3922660Z adding 'torch/export/graph_signature.py' 2025-09-07T06:14:09.3939270Z adding 'torch/export/unflatten.py' 2025-09-07T06:14:09.3943820Z adding 'torch/export/experimental/__init__.py' 2025-09-07T06:14:09.3945960Z adding 'torch/export/experimental/_utils.py' 2025-09-07T06:14:09.3947300Z adding 'torch/export/passes/__init__.py' 2025-09-07T06:14:09.3948440Z adding 'torch/export/pt2_archive/__init__.py' 2025-09-07T06:14:09.3956570Z adding 'torch/export/pt2_archive/_package.py' 2025-09-07T06:14:09.3958020Z adding 'torch/export/pt2_archive/_package_weights.py' 2025-09-07T06:14:09.3959010Z adding 'torch/export/pt2_archive/constants.py' 2025-09-07T06:14:09.3966780Z adding 'torch/fft/__init__.py' 2025-09-07T06:14:09.3967940Z adding 'torch/func/__init__.py' 2025-09-07T06:14:09.3971550Z adding 'torch/futures/__init__.py' 2025-09-07T06:14:09.3973480Z adding 'torch/fx/__init__.py' 2025-09-07T06:14:09.3975290Z adding 'torch/fx/_compatibility.py' 2025-09-07T06:14:09.3979840Z adding 'torch/fx/_graph_pickler.py' 2025-09-07T06:14:09.3981800Z adding 'torch/fx/_lazy_graph_module.py' 2025-09-07T06:14:09.3982900Z adding 'torch/fx/_pytree.py' 2025-09-07T06:14:09.3994780Z adding 'torch/fx/_symbolic_trace.py' 2025-09-07T06:14:09.3996130Z adding 'torch/fx/_utils.py' 2025-09-07T06:14:09.3997160Z adding 'torch/fx/annotate.py' 2025-09-07T06:14:09.3998220Z adding 'torch/fx/config.py' 2025-09-07T06:14:09.4016680Z adding 'torch/fx/graph.py' 2025-09-07T06:14:09.4026530Z adding 'torch/fx/graph_module.py' 2025-09-07T06:14:09.4028100Z adding 'torch/fx/immutable_collections.py' 2025-09-07T06:14:09.4032790Z adding 'torch/fx/interpreter.py' 2025-09-07T06:14:09.4041380Z adding 'torch/fx/node.py' 2025-09-07T06:14:09.4046500Z adding 'torch/fx/operator_schemas.py' 2025-09-07T06:14:09.4053270Z adding 'torch/fx/proxy.py' 2025-09-07T06:14:09.4057240Z adding 'torch/fx/subgraph_rewriter.py' 2025-09-07T06:14:09.4058250Z adding 'torch/fx/tensor_type.py' 2025-09-07T06:14:09.4061150Z adding 'torch/fx/traceback.py' 2025-09-07T06:14:09.4062250Z adding 'torch/fx/experimental/__init__.py' 2025-09-07T06:14:09.4063270Z adding 'torch/fx/experimental/_backward_state.py' 2025-09-07T06:14:09.4065130Z adding 'torch/fx/experimental/_config.py' 2025-09-07T06:14:09.4065980Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-09-07T06:14:09.4067520Z adding 'torch/fx/experimental/_dynamism.py' 2025-09-07T06:14:09.4077370Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-09-07T06:14:09.4080830Z adding 'torch/fx/experimental/const_fold.py' 2025-09-07T06:14:09.4081590Z adding 'torch/fx/experimental/debug.py' 2025-09-07T06:14:09.4088510Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-09-07T06:14:09.4090700Z adding 'torch/fx/experimental/merge_matmul.py' 2025-09-07T06:14:09.4093290Z adding 'torch/fx/experimental/meta_tracer.py' 2025-09-07T06:14:09.4094870Z adding 'torch/fx/experimental/normalize.py' 2025-09-07T06:14:09.4099230Z adding 'torch/fx/experimental/optimization.py' 2025-09-07T06:14:09.4102180Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-09-07T06:14:09.4125000Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-09-07T06:14:09.4130370Z adding 'torch/fx/experimental/recording.py' 2025-09-07T06:14:09.4131360Z adding 'torch/fx/experimental/refinement_types.py' 2025-09-07T06:14:09.4133330Z adding 'torch/fx/experimental/rewriter.py' 2025-09-07T06:14:09.4134900Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-09-07T06:14:09.4147690Z adding 'torch/fx/experimental/sym_node.py' 2025-09-07T06:14:09.4230570Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-09-07T06:14:09.4234900Z adding 'torch/fx/experimental/unify_refinements.py' 2025-09-07T06:14:09.4242580Z adding 'torch/fx/experimental/validator.py' 2025-09-07T06:14:09.4243770Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-09-07T06:14:09.4247160Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-09-07T06:14:09.4256120Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-09-07T06:14:09.4264390Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-09-07T06:14:09.4265180Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-09-07T06:14:09.4268540Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-09-07T06:14:09.4269370Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-09-07T06:14:09.4270370Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-09-07T06:14:09.4271520Z adding 'torch/fx/experimental/unification/__init__.py' 2025-09-07T06:14:09.4272760Z adding 'torch/fx/experimental/unification/core.py' 2025-09-07T06:14:09.4273600Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-09-07T06:14:09.4274990Z adding 'torch/fx/experimental/unification/match.py' 2025-09-07T06:14:09.4276240Z adding 'torch/fx/experimental/unification/more.py' 2025-09-07T06:14:09.4279170Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-09-07T06:14:09.4280250Z adding 'torch/fx/experimental/unification/utils.py' 2025-09-07T06:14:09.4281370Z adding 'torch/fx/experimental/unification/variable.py' 2025-09-07T06:14:09.4282560Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-09-07T06:14:09.4284070Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-09-07T06:14:09.4285290Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-09-07T06:14:09.4288910Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-09-07T06:14:09.4290290Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-09-07T06:14:09.4291630Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-09-07T06:14:09.4292810Z adding 'torch/fx/passes/__init__.py' 2025-09-07T06:14:09.4296780Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-09-07T06:14:09.4297680Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-09-07T06:14:09.4299240Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-09-07T06:14:09.4303240Z adding 'torch/fx/passes/graph_drawer.py' 2025-09-07T06:14:09.4304490Z adding 'torch/fx/passes/graph_manipulation.py' 2025-09-07T06:14:09.4306840Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-09-07T06:14:09.4313840Z adding 'torch/fx/passes/net_min_base.py' 2025-09-07T06:14:09.4316020Z adding 'torch/fx/passes/operator_support.py' 2025-09-07T06:14:09.4317050Z adding 'torch/fx/passes/param_fetch.py' 2025-09-07T06:14:09.4319320Z adding 'torch/fx/passes/pass_manager.py' 2025-09-07T06:14:09.4327190Z adding 'torch/fx/passes/reinplace.py' 2025-09-07T06:14:09.4333110Z adding 'torch/fx/passes/runtime_assert.py' 2025-09-07T06:14:09.4335580Z adding 'torch/fx/passes/shape_prop.py' 2025-09-07T06:14:09.4341200Z adding 'torch/fx/passes/split_module.py' 2025-09-07T06:14:09.4344210Z adding 'torch/fx/passes/split_utils.py' 2025-09-07T06:14:09.4351230Z adding 'torch/fx/passes/splitter_base.py' 2025-09-07T06:14:09.4354140Z adding 'torch/fx/passes/tools_common.py' 2025-09-07T06:14:09.4355090Z adding 'torch/fx/passes/backends/__init__.py' 2025-09-07T06:14:09.4356370Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-09-07T06:14:09.4357330Z adding 'torch/fx/passes/dialect/__init__.py' 2025-09-07T06:14:09.4358320Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-09-07T06:14:09.4360380Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-09-07T06:14:09.4360950Z adding 'torch/fx/passes/infra/__init__.py' 2025-09-07T06:14:09.4365080Z adding 'torch/fx/passes/infra/partitioner.py' 2025-09-07T06:14:09.4366030Z adding 'torch/fx/passes/infra/pass_base.py' 2025-09-07T06:14:09.4369020Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-09-07T06:14:09.4369780Z adding 'torch/fx/passes/tests/__init__.py' 2025-09-07T06:14:09.4370750Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-09-07T06:14:09.4371780Z adding 'torch/fx/passes/utils/__init__.py' 2025-09-07T06:14:09.4373050Z adding 'torch/fx/passes/utils/common.py' 2025-09-07T06:14:09.4375980Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-09-07T06:14:09.4379940Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-09-07T06:14:09.4381300Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-09-07T06:14:09.4383420Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-09-07T06:14:09.4384710Z adding 'torch/include/clog.h' 2025-09-07T06:14:09.4392260Z adding 'torch/include/cpuinfo.h' 2025-09-07T06:14:09.4393110Z adding 'torch/include/experiments-config.h' 2025-09-07T06:14:09.4393900Z adding 'torch/include/fp16.h' 2025-09-07T06:14:09.4396590Z adding 'torch/include/fxdiv.h' 2025-09-07T06:14:09.4397330Z adding 'torch/include/libshm.h' 2025-09-07T06:14:09.4401600Z adding 'torch/include/nnpack.h' 2025-09-07T06:14:09.4406050Z adding 'torch/include/omp.h' 2025-09-07T06:14:09.4411730Z adding 'torch/include/psimd.h' 2025-09-07T06:14:09.4420260Z adding 'torch/include/pthreadpool.h' 2025-09-07T06:14:09.4421680Z adding 'torch/include/qnnpack_func.h' 2025-09-07T06:14:09.4437210Z adding 'torch/include/sleef.h' 2025-09-07T06:14:09.4460240Z adding 'torch/include/xnnpack.h' 2025-09-07T06:14:09.4463770Z adding 'torch/include/ATen/ATen.h' 2025-09-07T06:14:09.4465180Z adding 'torch/include/ATen/AccumulateType.h' 2025-09-07T06:14:09.4466040Z adding 'torch/include/ATen/ArrayRef.h' 2025-09-07T06:14:09.4466780Z adding 'torch/include/ATen/Backend.h' 2025-09-07T06:14:09.4467510Z adding 'torch/include/ATen/Backtrace.h' 2025-09-07T06:14:09.4468410Z adding 'torch/include/ATen/BlasBackend.h' 2025-09-07T06:14:09.4471190Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-09-07T06:14:09.4471900Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-09-07T06:14:09.4473010Z adding 'torch/include/ATen/CPUFunctions.h' 2025-09-07T06:14:09.4476320Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-09-07T06:14:09.4477130Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-09-07T06:14:09.4478200Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-09-07T06:14:09.4481860Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-09-07T06:14:09.4482710Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-09-07T06:14:09.4483890Z adding 'torch/include/ATen/CollapseDims.h' 2025-09-07T06:14:09.4485120Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-09-07T06:14:09.4488980Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-09-07T06:14:09.4489990Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-09-07T06:14:09.4492610Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-09-07T06:14:09.4493470Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-09-07T06:14:09.4496880Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-09-07T06:14:09.4497960Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-09-07T06:14:09.4498900Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-09-07T06:14:09.4499690Z adding 'torch/include/ATen/Config.h' 2025-09-07T06:14:09.4504460Z adding 'torch/include/ATen/Context.h' 2025-09-07T06:14:09.4505480Z adding 'torch/include/ATen/DLConvertor.h' 2025-09-07T06:14:09.4506380Z adding 'torch/include/ATen/DTensorState.h' 2025-09-07T06:14:09.4507140Z adding 'torch/include/ATen/Device.h' 2025-09-07T06:14:09.4508470Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-09-07T06:14:09.4509490Z adding 'torch/include/ATen/DeviceGuard.h' 2025-09-07T06:14:09.4510250Z adding 'torch/include/ATen/DimVector.h' 2025-09-07T06:14:09.4510990Z adding 'torch/include/ATen/Dimname.h' 2025-09-07T06:14:09.4516260Z adding 'torch/include/ATen/Dispatch.h' 2025-09-07T06:14:09.4520980Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-09-07T06:14:09.4521800Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-09-07T06:14:09.4523000Z adding 'torch/include/ATen/EmptyTensor.h' 2025-09-07T06:14:09.4523880Z adding 'torch/include/ATen/ExpandBase.h' 2025-09-07T06:14:09.4526930Z adding 'torch/include/ATen/ExpandUtils.h' 2025-09-07T06:14:09.4527490Z adding 'torch/include/ATen/Formatting.h' 2025-09-07T06:14:09.4528570Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-09-07T06:14:09.4531080Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-09-07T06:14:09.4535000Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-09-07T06:14:09.4541370Z adding 'torch/include/ATen/Functions.h' 2025-09-07T06:14:09.4542070Z adding 'torch/include/ATen/Generator.h' 2025-09-07T06:14:09.4543340Z adding 'torch/include/ATen/InferSize.h' 2025-09-07T06:14:09.4544270Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-09-07T06:14:09.4544950Z adding 'torch/include/ATen/Layout.h' 2025-09-07T06:14:09.4545910Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-09-07T06:14:09.4548030Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-09-07T06:14:09.4548650Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-09-07T06:14:09.4551190Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-09-07T06:14:09.4551810Z adding 'torch/include/ATen/LinalgBackend.h' 2025-09-07T06:14:09.4552850Z adding 'torch/include/ATen/MPSFunctions.h' 2025-09-07T06:14:09.4555370Z adding 'torch/include/ATen/MPSFunctions_inl.h' 2025-09-07T06:14:09.4556430Z adding 'torch/include/ATen/MapAllocator.h' 2025-09-07T06:14:09.4557650Z adding 'torch/include/ATen/MatrixRef.h' 2025-09-07T06:14:09.4558590Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-09-07T06:14:09.4559630Z adding 'torch/include/ATen/MetaFunctions.h' 2025-09-07T06:14:09.4561920Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-09-07T06:14:09.4564190Z adding 'torch/include/ATen/MethodOperators.h' 2025-09-07T06:14:09.4564700Z adding 'torch/include/ATen/NamedTensor.h' 2025-09-07T06:14:09.4566880Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-09-07T06:14:09.4573620Z adding 'torch/include/ATen/NativeFunctions.h' 2025-09-07T06:14:09.4579650Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-09-07T06:14:09.4582410Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-09-07T06:14:09.4583470Z adding 'torch/include/ATen/NumericUtils.h' 2025-09-07T06:14:09.4584500Z adding 'torch/include/ATen/OpMathType.h' 2025-09-07T06:14:09.4586560Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-09-07T06:14:09.4592720Z adding 'torch/include/ATen/Operators.h' 2025-09-07T06:14:09.4593540Z adding 'torch/include/ATen/PTThreadPool.h' 2025-09-07T06:14:09.4594250Z adding 'torch/include/ATen/PadNd.h' 2025-09-07T06:14:09.4599320Z adding 'torch/include/ATen/Parallel-inl.h' 2025-09-07T06:14:09.4599550Z adding 'torch/include/ATen/Parallel.h' 2025-09-07T06:14:09.4599760Z adding 'torch/include/ATen/ParallelFuture.h' 2025-09-07T06:14:09.4599980Z adding 'torch/include/ATen/ParallelNative.h' 2025-09-07T06:14:09.4600210Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-09-07T06:14:09.4600440Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-09-07T06:14:09.4601210Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-09-07T06:14:09.4776940Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-09-07T06:14:09.4873920Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-09-07T06:14:09.4879550Z adding 'torch/include/ATen/SDPBackend.h' 2025-09-07T06:14:09.4880870Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-09-07T06:14:09.4881820Z adding 'torch/include/ATen/Scalar.h' 2025-09-07T06:14:09.4882970Z adding 'torch/include/ATen/ScalarOps.h' 2025-09-07T06:14:09.4883830Z adding 'torch/include/ATen/ScalarType.h' 2025-09-07T06:14:09.4884750Z adding 'torch/include/ATen/SequenceNumber.h' 2025-09-07T06:14:09.4885560Z adding 'torch/include/ATen/SmallVector.h' 2025-09-07T06:14:09.4886740Z adding 'torch/include/ATen/SparseCsrMPSFunctions.h' 2025-09-07T06:14:09.4887740Z adding 'torch/include/ATen/SparseCsrMPSFunctions_inl.h' 2025-09-07T06:14:09.4890070Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-09-07T06:14:09.4893000Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-09-07T06:14:09.4893850Z adding 'torch/include/ATen/SparseMPSFunctions.h' 2025-09-07T06:14:09.4894970Z adding 'torch/include/ATen/SparseMPSFunctions_inl.h' 2025-09-07T06:14:09.4898400Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-09-07T06:14:09.4898880Z adding 'torch/include/ATen/Storage.h' 2025-09-07T06:14:09.4899930Z adding 'torch/include/ATen/StorageUtils.h' 2025-09-07T06:14:09.4900640Z adding 'torch/include/ATen/Tensor.h' 2025-09-07T06:14:09.4901380Z adding 'torch/include/ATen/TensorAccessor.h' 2025-09-07T06:14:09.4902800Z adding 'torch/include/ATen/TensorGeometry.h' 2025-09-07T06:14:09.4908550Z adding 'torch/include/ATen/TensorIndexing.h' 2025-09-07T06:14:09.4917280Z adding 'torch/include/ATen/TensorIterator.h' 2025-09-07T06:14:09.4918340Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-09-07T06:14:09.4919900Z adding 'torch/include/ATen/TensorMeta.h' 2025-09-07T06:14:09.4921180Z adding 'torch/include/ATen/TensorNames.h' 2025-09-07T06:14:09.4922310Z adding 'torch/include/ATen/TensorOperators.h' 2025-09-07T06:14:09.4923090Z adding 'torch/include/ATen/TensorOptions.h' 2025-09-07T06:14:09.4924460Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-09-07T06:14:09.4926080Z adding 'torch/include/ATen/TensorUtils.h' 2025-09-07T06:14:09.4926870Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-09-07T06:14:09.4928810Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-09-07T06:14:09.4930080Z adding 'torch/include/ATen/TracerMode.h' 2025-09-07T06:14:09.4930930Z adding 'torch/include/ATen/TypeDefault.h' 2025-09-07T06:14:09.4932200Z adding 'torch/include/ATen/Utils.h' 2025-09-07T06:14:09.4933030Z adding 'torch/include/ATen/Version.h' 2025-09-07T06:14:09.5049000Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-09-07T06:14:09.5058290Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-09-07T06:14:09.5059110Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-09-07T06:14:09.5065810Z adding 'torch/include/ATen/autocast_mode.h' 2025-09-07T06:14:09.5066730Z adding 'torch/include/ATen/ceil_div.h' 2025-09-07T06:14:09.5069090Z adding 'torch/include/ATen/code_template.h' 2025-09-07T06:14:09.5070190Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-09-07T06:14:09.5071120Z adding 'torch/include/ATen/div_rtn.h' 2025-09-07T06:14:09.5074210Z adding 'torch/include/ATen/dlpack.h' 2025-09-07T06:14:09.5074850Z adding 'torch/include/ATen/jit_macros.h' 2025-09-07T06:14:09.5075940Z adding 'torch/include/ATen/jiterator_macros.h' 2025-09-07T06:14:09.5081130Z adding 'torch/include/ATen/record_function.h' 2025-09-07T06:14:09.5083400Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-09-07T06:14:09.5083960Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-09-07T06:14:09.5084970Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-09-07T06:14:09.5087000Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-09-07T06:14:09.5087540Z adding 'torch/include/ATen/core/Array.h' 2025-09-07T06:14:09.5088270Z adding 'torch/include/ATen/core/Backtrace.h' 2025-09-07T06:14:09.5095010Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-09-07T06:14:09.5097220Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-09-07T06:14:09.5098290Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-09-07T06:14:09.5099290Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-09-07T06:14:09.5102740Z adding 'torch/include/ATen/core/Dict.h' 2025-09-07T06:14:09.5104590Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-09-07T06:14:09.5105420Z adding 'torch/include/ATen/core/DimVector.h' 2025-09-07T06:14:09.5106400Z adding 'torch/include/ATen/core/Dimname.h' 2025-09-07T06:14:09.5109050Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-09-07T06:14:09.5109750Z adding 'torch/include/ATen/core/Formatting.h' 2025-09-07T06:14:09.5111930Z adding 'torch/include/ATen/core/Generator.h' 2025-09-07T06:14:09.5112790Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-09-07T06:14:09.5117430Z adding 'torch/include/ATen/core/IListRef.h' 2025-09-07T06:14:09.5118810Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-09-07T06:14:09.5120840Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-09-07T06:14:09.5124070Z adding 'torch/include/ATen/core/List.h' 2025-09-07T06:14:09.5126380Z adding 'torch/include/ATen/core/List_inl.h' 2025-09-07T06:14:09.5128580Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-09-07T06:14:09.5129850Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-09-07T06:14:09.5132070Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-09-07T06:14:09.5134230Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-09-07T06:14:09.5134980Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-09-07T06:14:09.5135890Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-09-07T06:14:09.5137010Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-09-07T06:14:09.5137880Z adding 'torch/include/ATen/core/Range.h' 2025-09-07T06:14:09.5138830Z adding 'torch/include/ATen/core/Reduction.h' 2025-09-07T06:14:09.5139580Z adding 'torch/include/ATen/core/Scalar.h' 2025-09-07T06:14:09.5140320Z adding 'torch/include/ATen/core/ScalarType.h' 2025-09-07T06:14:09.5141410Z adding 'torch/include/ATen/core/Tensor.h' 2025-09-07T06:14:09.5143800Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-09-07T06:14:09.5152630Z adding 'torch/include/ATen/core/TensorBase.h' 2025-09-07T06:14:09.5186620Z adding 'torch/include/ATen/core/TensorBody.h' 2025-09-07T06:14:09.5189100Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-09-07T06:14:09.5190580Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-09-07T06:14:09.5191440Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-09-07T06:14:09.5192420Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-09-07T06:14:09.5193850Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-09-07T06:14:09.5194970Z adding 'torch/include/ATen/core/Variadic.h' 2025-09-07T06:14:09.5196160Z adding 'torch/include/ATen/core/Vitals.h' 2025-09-07T06:14:09.5198210Z adding 'torch/include/ATen/core/alias_info.h' 2025-09-07T06:14:09.5207440Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-09-07T06:14:09.5209560Z adding 'torch/include/ATen/core/blob.h' 2025-09-07T06:14:09.5210520Z adding 'torch/include/ATen/core/builtin_function.h' 2025-09-07T06:14:09.5213940Z adding 'torch/include/ATen/core/class_type.h' 2025-09-07T06:14:09.5214680Z adding 'torch/include/ATen/core/custom_class.h' 2025-09-07T06:14:09.5217580Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-09-07T06:14:09.5218250Z adding 'torch/include/ATen/core/enum_tag.h' 2025-09-07T06:14:09.5219510Z adding 'torch/include/ATen/core/enum_type.h' 2025-09-07T06:14:09.5220920Z adding 'torch/include/ATen/core/function.h' 2025-09-07T06:14:09.5226650Z adding 'torch/include/ATen/core/function_schema.h' 2025-09-07T06:14:09.5227690Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-09-07T06:14:09.5228650Z adding 'torch/include/ATen/core/functional.h' 2025-09-07T06:14:09.5229460Z adding 'torch/include/ATen/core/grad_mode.h' 2025-09-07T06:14:09.5232560Z adding 'torch/include/ATen/core/interned_strings.h' 2025-09-07T06:14:09.5233500Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-09-07T06:14:09.5245530Z adding 'torch/include/ATen/core/ivalue.h' 2025-09-07T06:14:09.5263570Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-09-07T06:14:09.5264830Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-09-07T06:14:09.5278760Z adding 'torch/include/ATen/core/jit_type.h' 2025-09-07T06:14:09.5283710Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-09-07T06:14:09.5285000Z adding 'torch/include/ATen/core/operator_name.h' 2025-09-07T06:14:09.5286910Z adding 'torch/include/ATen/core/qualified_name.h' 2025-09-07T06:14:09.5287790Z adding 'torch/include/ATen/core/rref_interface.h' 2025-09-07T06:14:09.5289900Z adding 'torch/include/ATen/core/stack.h' 2025-09-07T06:14:09.5291700Z adding 'torch/include/ATen/core/symbol.h' 2025-09-07T06:14:09.5292760Z adding 'torch/include/ATen/core/type_factory.h' 2025-09-07T06:14:09.5293700Z adding 'torch/include/ATen/core/type_ptr.h' 2025-09-07T06:14:09.5294480Z adding 'torch/include/ATen/core/typeid.h' 2025-09-07T06:14:09.5297550Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-09-07T06:14:09.5298550Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-09-07T06:14:09.5301160Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-09-07T06:14:09.5303960Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-09-07T06:14:09.5304740Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-09-07T06:14:09.5306350Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-09-07T06:14:09.5307370Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-09-07T06:14:09.5310420Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-09-07T06:14:09.5315820Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-09-07T06:14:09.5317120Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-09-07T06:14:09.5319090Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-09-07T06:14:09.5321680Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-09-07T06:14:09.5329170Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-09-07T06:14:09.5330020Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-09-07T06:14:09.5333540Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-09-07T06:14:09.5334340Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-09-07T06:14:09.5335320Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-09-07T06:14:09.5336820Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-09-07T06:14:09.5338700Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-09-07T06:14:09.5340550Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-09-07T06:14:09.5345170Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-09-07T06:14:09.5346080Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-09-07T06:14:09.5346970Z adding 'torch/include/ATen/cpu/Utils.h' 2025-09-07T06:14:09.5349060Z adding 'torch/include/ATen/cpu/vml.h' 2025-09-07T06:14:09.5350020Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-09-07T06:14:09.5352620Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-09-07T06:14:09.5355820Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-09-07T06:14:09.5356370Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-09-07T06:14:09.5357410Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-09-07T06:14:09.5365090Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-09-07T06:14:09.5366090Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-09-07T06:14:09.5367440Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-09-07T06:14:09.5369910Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-09-07T06:14:09.5372300Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-09-07T06:14:09.5374500Z adding 'torch/include/ATen/cpu/vec/vec_quant.h' 2025-09-07T06:14:09.5375780Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-09-07T06:14:09.5379350Z adding 'torch/include/ATen/cpu/vec/sve/vec_bfloat16.h' 2025-09-07T06:14:09.5381160Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-09-07T06:14:09.5384030Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-09-07T06:14:09.5388180Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-09-07T06:14:09.5391650Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-09-07T06:14:09.5394610Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-09-07T06:14:09.5395550Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-09-07T06:14:09.5399290Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-09-07T06:14:09.5400220Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-09-07T06:14:09.5403810Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-09-07T06:14:09.5407110Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-09-07T06:14:09.5408980Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-09-07T06:14:09.5409970Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-09-07T06:14:09.5410700Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-09-07T06:14:09.5413350Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-09-07T06:14:09.5417700Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h' 2025-09-07T06:14:09.5419580Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-09-07T06:14:09.5423300Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-09-07T06:14:09.5427300Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-09-07T06:14:09.5429490Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-09-07T06:14:09.5432030Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-09-07T06:14:09.5436540Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-09-07T06:14:09.5438320Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half.h' 2025-09-07T06:14:09.5446760Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-09-07T06:14:09.5449130Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-09-07T06:14:09.5455500Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-09-07T06:14:09.5457060Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-09-07T06:14:09.5459320Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-09-07T06:14:09.5463450Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-09-07T06:14:09.5467930Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-09-07T06:14:09.5470600Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-09-07T06:14:09.5473330Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-09-07T06:14:09.5475810Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-09-07T06:14:09.5477970Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-09-07T06:14:09.5480080Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-09-07T06:14:09.5482220Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-09-07T06:14:09.5485270Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-09-07T06:14:09.5488410Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-09-07T06:14:09.5492220Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-09-07T06:14:09.5507260Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-09-07T06:14:09.5510310Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-09-07T06:14:09.5520170Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-09-07T06:14:09.5524790Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-09-07T06:14:09.5530360Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-09-07T06:14:09.5532660Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-09-07T06:14:09.5535370Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-09-07T06:14:09.5540510Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-09-07T06:14:09.5544470Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float8.h' 2025-09-07T06:14:09.5551990Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-09-07T06:14:09.5554860Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-09-07T06:14:09.5561230Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-09-07T06:14:09.5562990Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-09-07T06:14:09.5563860Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-09-07T06:14:09.5565040Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-09-07T06:14:09.5569020Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-09-07T06:14:09.5573090Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-09-07T06:14:09.5575640Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-09-07T06:14:09.5576280Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-09-07T06:14:09.5577740Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-09-07T06:14:09.5578990Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-09-07T06:14:09.5579950Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-09-07T06:14:09.5582500Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-09-07T06:14:09.5584640Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-09-07T06:14:09.5585690Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-09-07T06:14:09.5586760Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-09-07T06:14:09.5587920Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-09-07T06:14:09.5590360Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-09-07T06:14:09.5591930Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-09-07T06:14:09.5592930Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-09-07T06:14:09.5593810Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-09-07T06:14:09.5595100Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-09-07T06:14:09.5596260Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-09-07T06:14:09.5597170Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-09-07T06:14:09.5599550Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-09-07T06:14:09.5600690Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-09-07T06:14:09.5601570Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-09-07T06:14:09.5602310Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-09-07T06:14:09.5603050Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-09-07T06:14:09.5603960Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-09-07T06:14:09.5605020Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-09-07T06:14:09.5605840Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-09-07T06:14:09.5606700Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-09-07T06:14:09.5607960Z adding 'torch/include/ATen/cuda/cub-RadixSortPairs.cuh' 2025-09-07T06:14:09.5612280Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-09-07T06:14:09.5613390Z adding 'torch/include/ATen/cuda/cub.h' 2025-09-07T06:14:09.5614420Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-09-07T06:14:09.5615380Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-09-07T06:14:09.5617410Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-09-07T06:14:09.5617880Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-09-07T06:14:09.5619850Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-09-07T06:14:09.5622080Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-09-07T06:14:09.5622740Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-09-07T06:14:09.5624410Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-09-07T06:14:09.5625370Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-09-07T06:14:09.5626260Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-09-07T06:14:09.5627760Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-09-07T06:14:09.5628750Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-09-07T06:14:09.5630020Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-09-07T06:14:09.5631170Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-09-07T06:14:09.5634950Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-09-07T06:14:09.5638500Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-09-07T06:14:09.5640630Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-09-07T06:14:09.5641300Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-09-07T06:14:09.5643540Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-09-07T06:14:09.5644990Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-09-07T06:14:09.5648400Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-09-07T06:14:09.5651950Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-09-07T06:14:09.5652580Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-09-07T06:14:09.5653300Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-09-07T06:14:09.5654130Z adding 'torch/include/ATen/cudnn/Types.h' 2025-09-07T06:14:09.5655100Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-09-07T06:14:09.5656090Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-09-07T06:14:09.5657770Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-09-07T06:14:09.5659540Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-09-07T06:14:09.5660670Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-09-07T06:14:09.5661810Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-09-07T06:14:09.5662780Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-09-07T06:14:09.5663730Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-09-07T06:14:09.5664790Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-09-07T06:14:09.5666040Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-09-07T06:14:09.5667340Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-09-07T06:14:09.5668480Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-09-07T06:14:09.5669630Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-09-07T06:14:09.5670920Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-09-07T06:14:09.5674540Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-09-07T06:14:09.5675610Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-09-07T06:14:09.5677880Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-09-07T06:14:09.5679110Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-09-07T06:14:09.5681080Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-09-07T06:14:09.5681750Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-09-07T06:14:09.5684990Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-09-07T06:14:09.5687430Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-09-07T06:14:09.5687890Z adding 'torch/include/ATen/functorch/Macros.h' 2025-09-07T06:14:09.5689170Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-09-07T06:14:09.5691130Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-09-07T06:14:09.5691690Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-09-07T06:14:09.5694240Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-09-07T06:14:09.5695430Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-09-07T06:14:09.5698790Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-09-07T06:14:09.5700000Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-09-07T06:14:09.5701120Z adding 'torch/include/ATen/metal/Context.h' 2025-09-07T06:14:09.5703540Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-09-07T06:14:09.5704340Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-09-07T06:14:09.5705200Z adding 'torch/include/ATen/miopen/Handle.h' 2025-09-07T06:14:09.5706010Z adding 'torch/include/ATen/miopen/Types.h' 2025-09-07T06:14:09.5706840Z adding 'torch/include/ATen/miopen/Utils.h' 2025-09-07T06:14:09.5707820Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-09-07T06:14:09.5708990Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-09-07T06:14:09.5710980Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-09-07T06:14:09.5715460Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-09-07T06:14:09.5716690Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-09-07T06:14:09.5717820Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-09-07T06:14:09.5719230Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-09-07T06:14:09.5720340Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-09-07T06:14:09.5722420Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-09-07T06:14:09.5723160Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-09-07T06:14:09.5727180Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-09-07T06:14:09.5728400Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-09-07T06:14:09.5730970Z adding 'torch/include/ATen/native/Activation.h' 2025-09-07T06:14:09.5731790Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-09-07T06:14:09.5732640Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-09-07T06:14:09.5734850Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-09-07T06:14:09.5735960Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-09-07T06:14:09.5738780Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-09-07T06:14:09.5740870Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-09-07T06:14:09.5741960Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-09-07T06:14:09.5742900Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-09-07T06:14:09.5744480Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-09-07T06:14:09.5745510Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-09-07T06:14:09.5747630Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-09-07T06:14:09.5751040Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-09-07T06:14:09.5751740Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-09-07T06:14:09.5752640Z adding 'torch/include/ATen/native/Copy.h' 2025-09-07T06:14:09.5753640Z adding 'torch/include/ATen/native/Cross.h' 2025-09-07T06:14:09.5755870Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-09-07T06:14:09.5758650Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-09-07T06:14:09.5759330Z adding 'torch/include/ATen/native/Distance.h' 2025-09-07T06:14:09.5762940Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-09-07T06:14:09.5767710Z adding 'torch/include/ATen/native/Distributions.h' 2025-09-07T06:14:09.5769020Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-09-07T06:14:09.5769860Z adding 'torch/include/ATen/native/Fill.h' 2025-09-07T06:14:09.5773230Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-09-07T06:14:09.5774140Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-09-07T06:14:09.5774960Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-09-07T06:14:09.5775800Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-09-07T06:14:09.5776660Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-09-07T06:14:09.5777490Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-09-07T06:14:09.5778480Z adding 'torch/include/ATen/native/Gelu.h' 2025-09-07T06:14:09.5780780Z adding 'torch/include/ATen/native/GridSampler.h' 2025-09-07T06:14:09.5781760Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-09-07T06:14:09.5783820Z adding 'torch/include/ATen/native/GroupedMMUtils.h' 2025-09-07T06:14:09.5784380Z adding 'torch/include/ATen/native/Histogram.h' 2025-09-07T06:14:09.5785330Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-09-07T06:14:09.5787360Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-09-07T06:14:09.5788100Z adding 'torch/include/ATen/native/Lerp.h' 2025-09-07T06:14:09.5788980Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-09-07T06:14:09.5795910Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-09-07T06:14:09.5796810Z adding 'torch/include/ATen/native/LossMulti.h' 2025-09-07T06:14:09.5826020Z adding 'torch/include/ATen/native/Math.h' 2025-09-07T06:14:09.5827720Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-09-07T06:14:09.5830090Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-09-07T06:14:09.5831110Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-09-07T06:14:09.5832040Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-09-07T06:14:09.5833260Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-09-07T06:14:09.5834180Z adding 'torch/include/ATen/native/Normalization.h' 2025-09-07T06:14:09.5835250Z adding 'torch/include/ATen/native/Padding.h' 2025-09-07T06:14:09.5836290Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-09-07T06:14:09.5837160Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-09-07T06:14:09.5840020Z adding 'torch/include/ATen/native/Pool.h' 2025-09-07T06:14:09.5840890Z adding 'torch/include/ATen/native/Pow.h' 2025-09-07T06:14:09.5841960Z adding 'torch/include/ATen/native/RNN.h' 2025-09-07T06:14:09.5842810Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-09-07T06:14:09.5843950Z adding 'torch/include/ATen/native/RangeUtils.h' 2025-09-07T06:14:09.5844780Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-09-07T06:14:09.5845750Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-09-07T06:14:09.5849140Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-09-07T06:14:09.5849850Z adding 'torch/include/ATen/native/ReductionType.h' 2025-09-07T06:14:09.5850860Z adding 'torch/include/ATen/native/Repeat.h' 2025-09-07T06:14:09.5853280Z adding 'torch/include/ATen/native/Resize.h' 2025-09-07T06:14:09.5854200Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-09-07T06:14:09.5855440Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-09-07T06:14:09.5856310Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-09-07T06:14:09.5859130Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-09-07T06:14:09.5859980Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-09-07T06:14:09.5860810Z adding 'torch/include/ATen/native/Sorting.h' 2025-09-07T06:14:09.5861900Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-09-07T06:14:09.5864020Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-09-07T06:14:09.5865040Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-09-07T06:14:09.5866830Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-09-07T06:14:09.5867690Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-09-07T06:14:09.5869060Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-09-07T06:14:09.5869920Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-09-07T06:14:09.5870800Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-09-07T06:14:09.5871830Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-09-07T06:14:09.5873820Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-09-07T06:14:09.5874220Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-09-07T06:14:09.5875330Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-09-07T06:14:09.5876070Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-09-07T06:14:09.5878030Z adding 'torch/include/ATen/native/TensorShape.h' 2025-09-07T06:14:09.5878580Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-09-07T06:14:09.5879680Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-09-07T06:14:09.5880540Z adding 'torch/include/ATen/native/TransposeType.h' 2025-09-07T06:14:09.5881640Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-09-07T06:14:09.5882480Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-09-07T06:14:09.5883710Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-09-07T06:14:09.5884650Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-09-07T06:14:09.5885500Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-09-07T06:14:09.5886760Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-09-07T06:14:09.5890660Z adding 'torch/include/ATen/native/UpSample.h' 2025-09-07T06:14:09.5891460Z adding 'torch/include/ATen/native/batch_norm.h' 2025-09-07T06:14:09.5892370Z adding 'torch/include/ATen/native/group_norm.h' 2025-09-07T06:14:09.5893710Z adding 'torch/include/ATen/native/im2col.h' 2025-09-07T06:14:09.5895810Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-09-07T06:14:09.5896710Z adding 'torch/include/ATen/native/layer_norm.h' 2025-09-07T06:14:09.5897540Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-09-07T06:14:09.5898730Z adding 'torch/include/ATen/native/vol2col.h' 2025-09-07T06:14:09.5901450Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h' 2025-09-07T06:14:09.5902470Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h' 2025-09-07T06:14:09.5903700Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h' 2025-09-07T06:14:09.5905140Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-09-07T06:14:09.5905950Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-09-07T06:14:09.5906870Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-09-07T06:14:09.5907700Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-09-07T06:14:09.5908570Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-09-07T06:14:09.5911490Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-09-07T06:14:09.5912400Z adding 'torch/include/ATen/native/cpu/Elu.h' 2025-09-07T06:14:09.5913600Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-09-07T06:14:09.5914500Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-09-07T06:14:09.5915740Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-09-07T06:14:09.5916670Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-09-07T06:14:09.5917720Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-09-07T06:14:09.5918850Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-09-07T06:14:09.5921670Z adding 'torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h' 2025-09-07T06:14:09.5924490Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-09-07T06:14:09.5925110Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-09-07T06:14:09.5925930Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-09-07T06:14:09.5928950Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-09-07T06:14:09.5930800Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-09-07T06:14:09.5931600Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-09-07T06:14:09.5932370Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-09-07T06:14:09.5934370Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-09-07T06:14:09.5934980Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-09-07T06:14:09.5935860Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-09-07T06:14:09.5936680Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-09-07T06:14:09.5946270Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-09-07T06:14:09.5947080Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-09-07T06:14:09.5950480Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-09-07T06:14:09.5951180Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-09-07T06:14:09.5952120Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-09-07T06:14:09.5954170Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-09-07T06:14:09.5955930Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-09-07T06:14:09.5957220Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-09-07T06:14:09.5959200Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-09-07T06:14:09.5959840Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-09-07T06:14:09.5962720Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-09-07T06:14:09.5968490Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-09-07T06:14:09.5969390Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-09-07T06:14:09.5970190Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-09-07T06:14:09.5974660Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-09-07T06:14:09.5975490Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-09-07T06:14:09.5976400Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-09-07T06:14:09.5981380Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-09-07T06:14:09.5982060Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-09-07T06:14:09.5982990Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-09-07T06:14:09.5985810Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-09-07T06:14:09.5986490Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-09-07T06:14:09.5988800Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-09-07T06:14:09.5989460Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-09-07T06:14:09.5990290Z adding 'torch/include/ATen/native/cuda/GroupMM.h' 2025-09-07T06:14:09.5992300Z adding 'torch/include/ATen/native/cuda/GroupMMCommon.cuh' 2025-09-07T06:14:09.5992830Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-09-07T06:14:09.5993860Z adding 'torch/include/ATen/native/cuda/IndexKernelUtils.h' 2025-09-07T06:14:09.5996010Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-09-07T06:14:09.5998820Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-09-07T06:14:09.5999400Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-09-07T06:14:09.6001970Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-09-07T06:14:09.6023300Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-09-07T06:14:09.6028100Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-09-07T06:14:09.6028950Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-09-07T06:14:09.6031790Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-09-07T06:14:09.6042720Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-09-07T06:14:09.6046100Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-09-07T06:14:09.6046970Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-09-07T06:14:09.6048180Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-09-07T06:14:09.6058770Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-09-07T06:14:09.6059730Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-09-07T06:14:09.6061780Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-09-07T06:14:09.6062400Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-09-07T06:14:09.6063240Z adding 'torch/include/ATen/native/cuda/ScaledGroupMM.h' 2025-09-07T06:14:09.6064180Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-09-07T06:14:09.6068060Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-09-07T06:14:09.6068750Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-09-07T06:14:09.6069580Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-09-07T06:14:09.6072400Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-09-07T06:14:09.6072920Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-09-07T06:14:09.6074900Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-09-07T06:14:09.6077690Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-09-07T06:14:09.6081370Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-09-07T06:14:09.6081960Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-09-07T06:14:09.6082810Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-09-07T06:14:09.6083620Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-09-07T06:14:09.6086320Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-09-07T06:14:09.6087360Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-09-07T06:14:09.6088310Z adding 'torch/include/ATen/native/cuda/cutlass_common.cuh' 2025-09-07T06:14:09.6089160Z adding 'torch/include/ATen/native/cuda/fused_adagrad_impl.cuh' 2025-09-07T06:14:09.6090790Z adding 'torch/include/ATen/native/cuda/fused_adagrad_utils.cuh' 2025-09-07T06:14:09.6091480Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-09-07T06:14:09.6092340Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-09-07T06:14:09.6094450Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-09-07T06:14:09.6095030Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-09-07T06:14:09.6095840Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-09-07T06:14:09.6098170Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-09-07T06:14:09.6099960Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-09-07T06:14:09.6104250Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-09-07T06:14:09.6104900Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-09-07T06:14:09.6107250Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-09-07T06:14:09.6108160Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-09-07T06:14:09.6109060Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-09-07T06:14:09.6111720Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-09-07T06:14:09.6112490Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-09-07T06:14:09.6113980Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h' 2025-09-07T06:14:09.6115860Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h' 2025-09-07T06:14:09.6116820Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-09-07T06:14:09.6117880Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-09-07T06:14:09.6119210Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-09-07T06:14:09.6125740Z adding 'torch/include/ATen/native/metal/MetalCommandBuffer.h' 2025-09-07T06:14:09.6125990Z adding 'torch/include/ATen/native/metal/MetalContext.h' 2025-09-07T06:14:09.6126110Z adding 'torch/include/ATen/native/metal/MetalConvParams.h' 2025-09-07T06:14:09.6126210Z adding 'torch/include/ATen/native/metal/MetalDevice.h' 2025-09-07T06:14:09.6126320Z adding 'torch/include/ATen/native/metal/MetalNeuronType.h' 2025-09-07T06:14:09.6126450Z adding 'torch/include/ATen/native/metal/MetalPrepackOpContext.h' 2025-09-07T06:14:09.6131090Z adding 'torch/include/ATen/native/metal/MetalShaders.h' 2025-09-07T06:14:09.6131960Z adding 'torch/include/ATen/native/metal/MetalTensorImpl.h' 2025-09-07T06:14:09.6132930Z adding 'torch/include/ATen/native/metal/MetalTensorImplStorage.h' 2025-09-07T06:14:09.6134080Z adding 'torch/include/ATen/native/metal/MetalTensorUtils.h' 2025-09-07T06:14:09.6135220Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNClampOp.h' 2025-09-07T06:14:09.6136140Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNConvOp.h' 2025-09-07T06:14:09.6137040Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.h' 2025-09-07T06:14:09.6137850Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNNeuronOp.h' 2025-09-07T06:14:09.6138680Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNOp.h' 2025-09-07T06:14:09.6139950Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNUtils.h' 2025-09-07T06:14:09.6140790Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImage+Tensor.h' 2025-09-07T06:14:09.6142000Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImageUtils.h' 2025-09-07T06:14:09.6142920Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImageWrapper.h' 2025-09-07T06:14:09.6144170Z adding 'torch/include/ATen/native/metal/mpscnn/tests/MPSCNNTests.h' 2025-09-07T06:14:09.6145070Z adding 'torch/include/ATen/native/metal/mpscnn/tests/MetalOpTestRunner.h' 2025-09-07T06:14:09.6146150Z adding 'torch/include/ATen/native/metal/ops/MetalConvolution.h' 2025-09-07T06:14:09.6146930Z adding 'torch/include/ATen/native/metal/ops/MetalCopy.h' 2025-09-07T06:14:09.6148360Z adding 'torch/include/ATen/native/mkldnn/xpu/Conv.h' 2025-09-07T06:14:09.6149370Z adding 'torch/include/ATen/native/mkldnn/xpu/FusionUtils.h' 2025-09-07T06:14:09.6150460Z adding 'torch/include/ATen/native/mkldnn/xpu/qconv.h' 2025-09-07T06:14:09.6151480Z adding 'torch/include/ATen/native/mkldnn/xpu/qlinear.h' 2025-09-07T06:14:09.6155490Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-09-07T06:14:09.6158910Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h' 2025-09-07T06:14:09.6159970Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h' 2025-09-07T06:14:09.6161350Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-09-07T06:14:09.6162780Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-09-07T06:14:09.6163980Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-09-07T06:14:09.6165060Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-09-07T06:14:09.6166160Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-09-07T06:14:09.6167180Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2025-09-07T06:14:09.6169210Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2025-09-07T06:14:09.6170590Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-09-07T06:14:09.6175340Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-09-07T06:14:09.6176020Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-09-07T06:14:09.6177330Z adding 'torch/include/ATen/native/mps/kernels/GridSampler.h' 2025-09-07T06:14:09.6178310Z adding 'torch/include/ATen/native/mps/kernels/Pooling.h' 2025-09-07T06:14:09.6179160Z adding 'torch/include/ATen/native/mps/kernels/UpSample.h' 2025-09-07T06:14:09.6180200Z adding 'torch/include/ATen/native/mps/operations/BinaryKernel.h' 2025-09-07T06:14:09.6181140Z adding 'torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h' 2025-09-07T06:14:09.6181970Z adding 'torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h' 2025-09-07T06:14:09.6182820Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h' 2025-09-07T06:14:09.6183620Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h' 2025-09-07T06:14:09.6186580Z adding 'torch/include/ATen/native/mps/operations/MultiTensorApply.h' 2025-09-07T06:14:09.6187380Z adding 'torch/include/ATen/native/mtia/EmptyTensor.h' 2025-09-07T06:14:09.6188500Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-09-07T06:14:09.6189660Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-09-07T06:14:09.6190940Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-09-07T06:14:09.6191840Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-09-07T06:14:09.6195490Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-09-07T06:14:09.6196590Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-09-07T06:14:09.6197610Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-09-07T06:14:09.6198610Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-09-07T06:14:09.6199450Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-09-07T06:14:09.6200390Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-09-07T06:14:09.6201240Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-09-07T06:14:09.6202480Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-09-07T06:14:09.6203310Z adding 'torch/include/ATen/native/quantized/library.h' 2025-09-07T06:14:09.6205880Z adding 'torch/include/ATen/native/quantized/cpu/ACLUtils.h' 2025-09-07T06:14:09.6206480Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-09-07T06:14:09.6207390Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-09-07T06:14:09.6210290Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-09-07T06:14:09.6213710Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-09-07T06:14:09.6216080Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-09-07T06:14:09.6217860Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-09-07T06:14:09.6218540Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-09-07T06:14:09.6221350Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-09-07T06:14:09.6224020Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-09-07T06:14:09.6226290Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-09-07T06:14:09.6226820Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-09-07T06:14:09.6227850Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-09-07T06:14:09.6228770Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-09-07T06:14:09.6229660Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-09-07T06:14:09.6230810Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-09-07T06:14:09.6233460Z adding 'torch/include/ATen/native/quantized/cudnn/utils.h' 2025-09-07T06:14:09.6234520Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-09-07T06:14:09.6235760Z adding 'torch/include/ATen/native/transformers/sdp_utils.h' 2025-09-07T06:14:09.6239370Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-09-07T06:14:09.6240330Z adding 'torch/include/ATen/native/transformers/cuda/sdp_utils.h' 2025-09-07T06:14:09.6242390Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h' 2025-09-07T06:14:09.6243210Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h' 2025-09-07T06:14:09.6245810Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h' 2025-09-07T06:14:09.6247650Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h' 2025-09-07T06:14:09.6265880Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h' 2025-09-07T06:14:09.6277110Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h' 2025-09-07T06:14:09.6277960Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h' 2025-09-07T06:14:09.6282500Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h' 2025-09-07T06:14:09.6284330Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h' 2025-09-07T06:14:09.6286490Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h' 2025-09-07T06:14:09.6287470Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h' 2025-09-07T06:14:09.6289630Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h' 2025-09-07T06:14:09.6294420Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h' 2025-09-07T06:14:09.6297580Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h' 2025-09-07T06:14:09.6298880Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h' 2025-09-07T06:14:09.6301630Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h' 2025-09-07T06:14:09.6313560Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h' 2025-09-07T06:14:09.6315890Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h' 2025-09-07T06:14:09.6319530Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h' 2025-09-07T06:14:09.6320270Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h' 2025-09-07T06:14:09.6326800Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h' 2025-09-07T06:14:09.6332540Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h' 2025-09-07T06:14:09.6333450Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h' 2025-09-07T06:14:09.6336170Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h' 2025-09-07T06:14:09.6343650Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h' 2025-09-07T06:14:09.6346390Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h' 2025-09-07T06:14:09.6347590Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h' 2025-09-07T06:14:09.6349550Z adding 'torch/include/ATen/native/transformers/hip/aotriton_adapter.h' 2025-09-07T06:14:09.6350180Z adding 'torch/include/ATen/native/transformers/hip/aotriton_versions.h' 2025-09-07T06:14:09.6351150Z adding 'torch/include/ATen/native/transformers/hip/gemm_kernel_utils.h' 2025-09-07T06:14:09.6354310Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h' 2025-09-07T06:14:09.6355370Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h' 2025-09-07T06:14:09.6356510Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-09-07T06:14:09.6357330Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-09-07T06:14:09.6358530Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-09-07T06:14:09.6417040Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-09-07T06:14:09.6417860Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-09-07T06:14:09.6418900Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6419790Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-09-07T06:14:09.6420650Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-09-07T06:14:09.6421510Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h' 2025-09-07T06:14:09.6422400Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-09-07T06:14:09.6423420Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-09-07T06:14:09.6424410Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6425270Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-09-07T06:14:09.6426090Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-09-07T06:14:09.6426900Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h' 2025-09-07T06:14:09.6427760Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-09-07T06:14:09.6428730Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-09-07T06:14:09.6429800Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-09-07T06:14:09.6430770Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-09-07T06:14:09.6431760Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6432570Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-09-07T06:14:09.6433390Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-09-07T06:14:09.6434280Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-09-07T06:14:09.6435190Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-09-07T06:14:09.6436160Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6436940Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-09-07T06:14:09.6437740Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-09-07T06:14:09.6438590Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-09-07T06:14:09.6439540Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-09-07T06:14:09.6440380Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-09-07T06:14:09.6441360Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6442120Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-09-07T06:14:09.6443030Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-09-07T06:14:09.6444020Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-09-07T06:14:09.6445030Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6445830Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-09-07T06:14:09.6446670Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-09-07T06:14:09.6447560Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-09-07T06:14:09.6448740Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-09-07T06:14:09.6449650Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-09-07T06:14:09.6450670Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.6451480Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-09-07T06:14:09.6452330Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-09-07T06:14:09.6453180Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-09-07T06:14:09.6454050Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-09-07T06:14:09.6454900Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-09-07T06:14:09.6455880Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-09-07T06:14:09.6456840Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-09-07T06:14:09.6457840Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6458630Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-09-07T06:14:09.6459460Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-09-07T06:14:09.6460310Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-09-07T06:14:09.6461350Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-09-07T06:14:09.6462420Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-09-07T06:14:09.6463420Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6464230Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-09-07T06:14:09.6465060Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-09-07T06:14:09.6465880Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_mps_dispatch.h' 2025-09-07T06:14:09.6466770Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-09-07T06:14:09.6467810Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-09-07T06:14:09.6468740Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-09-07T06:14:09.6469760Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6470570Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-09-07T06:14:09.6471400Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-09-07T06:14:09.6472220Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-09-07T06:14:09.6473060Z adding 'torch/include/ATen/ops/_amp_update_scale_mps_dispatch.h' 2025-09-07T06:14:09.6473900Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-09-07T06:14:09.6474980Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-09-07T06:14:09.6475850Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-09-07T06:14:09.6476730Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-09-07T06:14:09.6477560Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-09-07T06:14:09.6478380Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-09-07T06:14:09.6479320Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-09-07T06:14:09.6480190Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-09-07T06:14:09.6481120Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6499760Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-09-07T06:14:09.6500690Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-09-07T06:14:09.6501810Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-09-07T06:14:09.6502910Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6503820Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-09-07T06:14:09.6504700Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-09-07T06:14:09.6505740Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-09-07T06:14:09.6506560Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-09-07T06:14:09.6507560Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6508340Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-09-07T06:14:09.6509270Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-09-07T06:14:09.6510120Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-09-07T06:14:09.6511100Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6511870Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-09-07T06:14:09.6512810Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-09-07T06:14:09.6513580Z adding 'torch/include/ATen/ops/_backward.h' 2025-09-07T06:14:09.6514580Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6515340Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-09-07T06:14:09.6516280Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-09-07T06:14:09.6517220Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-09-07T06:14:09.6518190Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-09-07T06:14:09.6519200Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6520030Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-09-07T06:14:09.6521020Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-09-07T06:14:09.6521990Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6522790Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-09-07T06:14:09.6523800Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-09-07T06:14:09.6524790Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-09-07T06:14:09.6525830Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6526660Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-09-07T06:14:09.6527720Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-09-07T06:14:09.6528770Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-09-07T06:14:09.6529840Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6530710Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-09-07T06:14:09.6531540Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-09-07T06:14:09.6532430Z adding 'torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h' 2025-09-07T06:14:09.6533360Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-09-07T06:14:09.6534520Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-09-07T06:14:09.6535380Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-09-07T06:14:09.6536350Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6537110Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-09-07T06:14:09.6538020Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-09-07T06:14:09.6538860Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-09-07T06:14:09.6539800Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6540540Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-09-07T06:14:09.6541450Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-09-07T06:14:09.6542270Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-09-07T06:14:09.6543230Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6543980Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-09-07T06:14:09.6544920Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-09-07T06:14:09.6545680Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-09-07T06:14:09.6546630Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6547370Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-09-07T06:14:09.6548230Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-09-07T06:14:09.6549070Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-09-07T06:14:09.6550010Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6550730Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-09-07T06:14:09.6551610Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-09-07T06:14:09.6552440Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-09-07T06:14:09.6553390Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6554100Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-09-07T06:14:09.6555000Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-09-07T06:14:09.6555820Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-09-07T06:14:09.6556770Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6557510Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-09-07T06:14:09.6558370Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-09-07T06:14:09.6559190Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-09-07T06:14:09.6560130Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6560860Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-09-07T06:14:09.6561700Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-09-07T06:14:09.6562610Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-09-07T06:14:09.6563590Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6564400Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-09-07T06:14:09.6565210Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-09-07T06:14:09.6566020Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-09-07T06:14:09.6566990Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-09-07T06:14:09.6567890Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-09-07T06:14:09.6568880Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6569690Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-09-07T06:14:09.6570540Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-09-07T06:14:09.6571340Z adding 'torch/include/ATen/ops/_cdist_forward_mps_dispatch.h' 2025-09-07T06:14:09.6572190Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-09-07T06:14:09.6573130Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-09-07T06:14:09.6574040Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-09-07T06:14:09.6575010Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6575800Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-09-07T06:14:09.6576600Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-09-07T06:14:09.6577430Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-09-07T06:14:09.6578370Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-09-07T06:14:09.6579240Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-09-07T06:14:09.6580190Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6580960Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-09-07T06:14:09.6581860Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-09-07T06:14:09.6582710Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-09-07T06:14:09.6583720Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6584490Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-09-07T06:14:09.6585300Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-09-07T06:14:09.6586270Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-09-07T06:14:09.6587130Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-09-07T06:14:09.6588070Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6588830Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-09-07T06:14:09.6589760Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-09-07T06:14:09.6590650Z adding 'torch/include/ATen/ops/_coalesce_sparsemps_dispatch.h' 2025-09-07T06:14:09.6591480Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-09-07T06:14:09.6592430Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6593220Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-09-07T06:14:09.6594020Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-09-07T06:14:09.6595000Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-09-07T06:14:09.6595890Z adding 'torch/include/ATen/ops/_coalesced_sparsemps_dispatch.h' 2025-09-07T06:14:09.6596790Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-09-07T06:14:09.6597680Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-09-07T06:14:09.6598520Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-09-07T06:14:09.6599330Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-09-07T06:14:09.6600310Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-09-07T06:14:09.6601100Z adding 'torch/include/ATen/ops/_conj.h' 2025-09-07T06:14:09.6602020Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6602820Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-09-07T06:14:09.6603770Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6604650Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.6605350Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-09-07T06:14:09.6606280Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-09-07T06:14:09.6607090Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-09-07T06:14:09.6607970Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-09-07T06:14:09.6608840Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-09-07T06:14:09.6609840Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6610570Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-09-07T06:14:09.6611480Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-09-07T06:14:09.6612390Z adding 'torch/include/ATen/ops/_conj_physical_sparsecsrmps_dispatch.h' 2025-09-07T06:14:09.6613520Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-09-07T06:14:09.6614540Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-09-07T06:14:09.6615390Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-09-07T06:14:09.6616390Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-09-07T06:14:09.6617340Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-09-07T06:14:09.6618390Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.6619150Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-09-07T06:14:09.6620000Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-09-07T06:14:09.6620830Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-09-07T06:14:09.6621690Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-09-07T06:14:09.6622560Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-09-07T06:14:09.6623540Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-09-07T06:14:09.6624440Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-09-07T06:14:09.6625470Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.6626240Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-09-07T06:14:09.6631010Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-09-07T06:14:09.6631380Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-09-07T06:14:09.6632130Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-09-07T06:14:09.6632500Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-09-07T06:14:09.6632850Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-09-07T06:14:09.6633160Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-09-07T06:14:09.6633500Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-09-07T06:14:09.6633850Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-09-07T06:14:09.6634210Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-09-07T06:14:09.6634730Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-09-07T06:14:09.6635920Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-09-07T06:14:09.6636490Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h' 2025-09-07T06:14:09.6637300Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-09-07T06:14:09.6638200Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-09-07T06:14:09.6639620Z adding 'torch/include/ATen/ops/_convolution.h' 2025-09-07T06:14:09.6640740Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6641650Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6642640Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-09-07T06:14:09.6643690Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6644500Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-09-07T06:14:09.6645500Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-09-07T06:14:09.6646470Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-09-07T06:14:09.6647420Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6648200Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-09-07T06:14:09.6649140Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-09-07T06:14:09.6650030Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-09-07T06:14:09.6651140Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-09-07T06:14:09.6652040Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-09-07T06:14:09.6652950Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-09-07T06:14:09.6653900Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6654700Z adding 'torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h' 2025-09-07T06:14:09.6655520Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-09-07T06:14:09.6656450Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-09-07T06:14:09.6657370Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6658160Z adding 'torch/include/ATen/ops/_copy_from_mps_dispatch.h' 2025-09-07T06:14:09.6658970Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-09-07T06:14:09.6659890Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-09-07T06:14:09.6660730Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-09-07T06:14:09.6661640Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-09-07T06:14:09.6662420Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-09-07T06:14:09.6663290Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-09-07T06:14:09.6664200Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-09-07T06:14:09.6665120Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-09-07T06:14:09.6665950Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-09-07T06:14:09.6666910Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-09-07T06:14:09.6667800Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-09-07T06:14:09.6668720Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-09-07T06:14:09.6669550Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-09-07T06:14:09.6670480Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-09-07T06:14:09.6671490Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-09-07T06:14:09.6672540Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-09-07T06:14:09.6673590Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6674400Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-09-07T06:14:09.6675250Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-09-07T06:14:09.6676110Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-09-07T06:14:09.6677220Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-09-07T06:14:09.6678220Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6679040Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-09-07T06:14:09.6679860Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-09-07T06:14:09.6680730Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-09-07T06:14:09.6681620Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-09-07T06:14:09.6682750Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-09-07T06:14:09.6683910Z adding 'torch/include/ATen/ops/_cudnn_attention_backward.h' 2025-09-07T06:14:09.6684910Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_cuda_dispatch.h' 2025-09-07T06:14:09.6685710Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_native.h' 2025-09-07T06:14:09.6686710Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_ops.h' 2025-09-07T06:14:09.6687820Z adding 'torch/include/ATen/ops/_cudnn_attention_forward.h' 2025-09-07T06:14:09.6688790Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h' 2025-09-07T06:14:09.6689690Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_native.h' 2025-09-07T06:14:09.6690670Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_ops.h' 2025-09-07T06:14:09.6691630Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-09-07T06:14:09.6692630Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6693460Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-09-07T06:14:09.6694320Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-09-07T06:14:09.6695370Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-09-07T06:14:09.6696380Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-09-07T06:14:09.6697360Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6698180Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-09-07T06:14:09.6699010Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-09-07T06:14:09.6700010Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-09-07T06:14:09.6701530Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-09-07T06:14:09.6703670Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-09-07T06:14:09.6704550Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6705400Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-09-07T06:14:09.6706340Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-09-07T06:14:09.6707570Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-09-07T06:14:09.6708660Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6709870Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-09-07T06:14:09.6711110Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-09-07T06:14:09.6712160Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6713000Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-09-07T06:14:09.6713850Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-09-07T06:14:09.6714870Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-09-07T06:14:09.6715760Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-09-07T06:14:09.6716920Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-09-07T06:14:09.6717810Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-09-07T06:14:09.6718770Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6719520Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-09-07T06:14:09.6720410Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-09-07T06:14:09.6721270Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-09-07T06:14:09.6722230Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6722980Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-09-07T06:14:09.6723860Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-09-07T06:14:09.6724690Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-09-07T06:14:09.6725660Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6726440Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-09-07T06:14:09.6727330Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-09-07T06:14:09.6728220Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-09-07T06:14:09.6729190Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6729920Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-09-07T06:14:09.6730790Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-09-07T06:14:09.6731600Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-09-07T06:14:09.6732510Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-09-07T06:14:09.6733300Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-09-07T06:14:09.6734110Z adding 'torch/include/ATen/ops/_cummax_helper_mps_dispatch.h' 2025-09-07T06:14:09.6734930Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-09-07T06:14:09.6735840Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-09-07T06:14:09.6736730Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-09-07T06:14:09.6737620Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-09-07T06:14:09.6738440Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-09-07T06:14:09.6739250Z adding 'torch/include/ATen/ops/_cummin_helper_mps_dispatch.h' 2025-09-07T06:14:09.6740060Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-09-07T06:14:09.6741100Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-09-07T06:14:09.6742000Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-09-07T06:14:09.6742910Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6743690Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-09-07T06:14:09.6744570Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-09-07T06:14:09.6745310Z adding 'torch/include/ATen/ops/_dimI.h' 2025-09-07T06:14:09.6746150Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-09-07T06:14:09.6747020Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-09-07T06:14:09.6747850Z adding 'torch/include/ATen/ops/_dimV.h' 2025-09-07T06:14:09.6748670Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-09-07T06:14:09.6749620Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-09-07T06:14:09.6750470Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-09-07T06:14:09.6751450Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6752220Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-09-07T06:14:09.6753150Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-09-07T06:14:09.6754040Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-09-07T06:14:09.6755050Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6755860Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-09-07T06:14:09.6756740Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-09-07T06:14:09.6758970Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-09-07T06:14:09.6759860Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-09-07T06:14:09.6760990Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-09-07T06:14:09.6762040Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-09-07T06:14:09.6763150Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-09-07T06:14:09.6764270Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-09-07T06:14:09.6765290Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-09-07T06:14:09.6766320Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-09-07T06:14:09.6767340Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-09-07T06:14:09.6768330Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-09-07T06:14:09.6769550Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-09-07T06:14:09.6770640Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-09-07T06:14:09.6771660Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-09-07T06:14:09.6772820Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-09-07T06:14:09.6773940Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-09-07T06:14:09.6775000Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-09-07T06:14:09.6776010Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-09-07T06:14:09.6777140Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-09-07T06:14:09.6778390Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-09-07T06:14:09.6779470Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6780470Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-09-07T06:14:09.6781340Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-09-07T06:14:09.6782210Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-09-07T06:14:09.6783070Z adding 'torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h' 2025-09-07T06:14:09.6784080Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-09-07T06:14:09.6785130Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-09-07T06:14:09.6786190Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-09-07T06:14:09.6787380Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-09-07T06:14:09.6788470Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-09-07T06:14:09.6789400Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-09-07T06:14:09.6790250Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-09-07T06:14:09.6791270Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-09-07T06:14:09.6792410Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6793310Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-09-07T06:14:09.6794290Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-09-07T06:14:09.6795560Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-09-07T06:14:09.6796770Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6797660Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-09-07T06:14:09.6798550Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-09-07T06:14:09.6799470Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-09-07T06:14:09.6800640Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-09-07T06:14:09.6801780Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-09-07T06:14:09.6802850Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6803660Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-09-07T06:14:09.6804620Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-09-07T06:14:09.6805550Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-09-07T06:14:09.6806670Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-09-07T06:14:09.6807610Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-09-07T06:14:09.6808820Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-09-07T06:14:09.6809940Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-09-07T06:14:09.6810980Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6811850Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-09-07T06:14:09.6812820Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-09-07T06:14:09.6813750Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-09-07T06:14:09.6814840Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-09-07T06:14:09.6815840Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-09-07T06:14:09.6817030Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.6817870Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-09-07T06:14:09.6818910Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-09-07T06:14:09.6820320Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-09-07T06:14:09.6821590Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6822540Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-09-07T06:14:09.6823480Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-09-07T06:14:09.6824540Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-09-07T06:14:09.6826140Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-09-07T06:14:09.6827250Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6828180Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-09-07T06:14:09.6829140Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-09-07T06:14:09.6830360Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-09-07T06:14:09.6831210Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-09-07T06:14:09.6832250Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6833010Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-09-07T06:14:09.6834090Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-09-07T06:14:09.6835150Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-09-07T06:14:09.6836150Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-09-07T06:14:09.6837070Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-09-07T06:14:09.6838060Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-09-07T06:14:09.6838960Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-09-07T06:14:09.6839960Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-09-07T06:14:09.6840960Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6841890Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-09-07T06:14:09.6842780Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-09-07T06:14:09.6843640Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-09-07T06:14:09.6844670Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-09-07T06:14:09.6845780Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-09-07T06:14:09.6846770Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-09-07T06:14:09.6847740Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-09-07T06:14:09.6848600Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-09-07T06:14:09.6849590Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-09-07T06:14:09.6850630Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-09-07T06:14:09.6851670Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6852450Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-09-07T06:14:09.6853410Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-09-07T06:14:09.6854340Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-09-07T06:14:09.6855380Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-09-07T06:14:09.6856440Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-09-07T06:14:09.6857600Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6858480Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-09-07T06:14:09.6859350Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-09-07T06:14:09.6860270Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-09-07T06:14:09.6861420Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-09-07T06:14:09.6862440Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-09-07T06:14:09.6863410Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-09-07T06:14:09.6864360Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-09-07T06:14:09.6865300Z adding 'torch/include/ATen/ops/_fft_c2c_mps_dispatch.h' 2025-09-07T06:14:09.6866180Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-09-07T06:14:09.6867160Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-09-07T06:14:09.6868230Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-09-07T06:14:09.6869290Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-09-07T06:14:09.6870200Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-09-07T06:14:09.6871080Z adding 'torch/include/ATen/ops/_fft_c2r_mps_dispatch.h' 2025-09-07T06:14:09.6871960Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-09-07T06:14:09.6873040Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-09-07T06:14:09.6873970Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-09-07T06:14:09.6874890Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-09-07T06:14:09.6875750Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-09-07T06:14:09.6876700Z adding 'torch/include/ATen/ops/_fft_r2c_mps_dispatch.h' 2025-09-07T06:14:09.6877590Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-09-07T06:14:09.6878590Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-09-07T06:14:09.6879530Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-09-07T06:14:09.6880570Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-09-07T06:14:09.6881430Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-09-07T06:14:09.6882260Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-09-07T06:14:09.6883190Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-09-07T06:14:09.6884450Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-09-07T06:14:09.6885490Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-09-07T06:14:09.6886410Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-09-07T06:14:09.6887460Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-09-07T06:14:09.6888710Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-09-07T06:14:09.6889760Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-09-07T06:14:09.6890660Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-09-07T06:14:09.6891740Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-09-07T06:14:09.6892780Z adding 'torch/include/ATen/ops/_foobar.h' 2025-09-07T06:14:09.6893830Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6894640Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-09-07T06:14:09.6895470Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-09-07T06:14:09.6896560Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-09-07T06:14:09.6897520Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-09-07T06:14:09.6898490Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6899320Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-09-07T06:14:09.6900250Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-09-07T06:14:09.6901240Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-09-07T06:14:09.6902140Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-09-07T06:14:09.6903130Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6904080Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-09-07T06:14:09.6904930Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-09-07T06:14:09.6905930Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-09-07T06:14:09.6907080Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-09-07T06:14:09.6908290Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6909200Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-09-07T06:14:09.6910230Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-09-07T06:14:09.6911850Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-09-07T06:14:09.6913000Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-09-07T06:14:09.6914100Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6919260Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-09-07T06:14:09.6919530Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-09-07T06:14:09.6919640Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-09-07T06:14:09.6919730Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-09-07T06:14:09.6919980Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6920890Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-09-07T06:14:09.6921680Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-09-07T06:14:09.6923040Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-09-07T06:14:09.6924000Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-09-07T06:14:09.6924970Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6925920Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-09-07T06:14:09.6926790Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-09-07T06:14:09.6927750Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-09-07T06:14:09.6928650Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-09-07T06:14:09.6929740Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6930550Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-09-07T06:14:09.6931390Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-09-07T06:14:09.6932340Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-09-07T06:14:09.6933320Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-09-07T06:14:09.6934280Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6935080Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-09-07T06:14:09.6935910Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-09-07T06:14:09.6937390Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-09-07T06:14:09.6938450Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-09-07T06:14:09.6939540Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6940410Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-09-07T06:14:09.6941410Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-09-07T06:14:09.6942670Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-09-07T06:14:09.6943740Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-09-07T06:14:09.6944800Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6945770Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-09-07T06:14:09.6947010Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-09-07T06:14:09.6949010Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-09-07T06:14:09.6949600Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-09-07T06:14:09.6950610Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6951560Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-09-07T06:14:09.6952410Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-09-07T06:14:09.6953400Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-09-07T06:14:09.6954310Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-09-07T06:14:09.6955370Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6956190Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-09-07T06:14:09.6957110Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-09-07T06:14:09.6958050Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-09-07T06:14:09.6959030Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-09-07T06:14:09.6959990Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6960790Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-09-07T06:14:09.6961620Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-09-07T06:14:09.6962650Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-09-07T06:14:09.6963780Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-09-07T06:14:09.6964830Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6965690Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-09-07T06:14:09.6966760Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-09-07T06:14:09.6968150Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-09-07T06:14:09.6969140Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-09-07T06:14:09.6970090Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6971010Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-09-07T06:14:09.6971860Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-09-07T06:14:09.6972800Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-09-07T06:14:09.6973690Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-09-07T06:14:09.6974730Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6975520Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-09-07T06:14:09.6976340Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-09-07T06:14:09.6977280Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-09-07T06:14:09.6978230Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-09-07T06:14:09.6979220Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6980020Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-09-07T06:14:09.6980840Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-09-07T06:14:09.6981870Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-09-07T06:14:09.6982770Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-09-07T06:14:09.6983720Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6984530Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-09-07T06:14:09.6985480Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-09-07T06:14:09.6986400Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-09-07T06:14:09.6987270Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-09-07T06:14:09.6988210Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6989090Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-09-07T06:14:09.6989930Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-09-07T06:14:09.6990870Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-09-07T06:14:09.6991750Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-09-07T06:14:09.6992770Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6993580Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-09-07T06:14:09.6994410Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-09-07T06:14:09.6995340Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-09-07T06:14:09.6996510Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-09-07T06:14:09.6997590Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.6998440Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-09-07T06:14:09.6999390Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-09-07T06:14:09.7000770Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-09-07T06:14:09.7001710Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-09-07T06:14:09.7002660Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7003500Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-09-07T06:14:09.7004420Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-09-07T06:14:09.7005410Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-09-07T06:14:09.7006290Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-09-07T06:14:09.7007210Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-09-07T06:14:09.7008280Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7009110Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-09-07T06:14:09.7009980Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-09-07T06:14:09.7010940Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-09-07T06:14:09.7011950Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-09-07T06:14:09.7012940Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7013720Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-09-07T06:14:09.7014550Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-09-07T06:14:09.7015630Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-09-07T06:14:09.7016530Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-09-07T06:14:09.7017490Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7018340Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-09-07T06:14:09.7019290Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-09-07T06:14:09.7020270Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-09-07T06:14:09.7021240Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7022030Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-09-07T06:14:09.7022960Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-09-07T06:14:09.7023920Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-09-07T06:14:09.7024820Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-09-07T06:14:09.7025780Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7026670Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-09-07T06:14:09.7027540Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-09-07T06:14:09.7028440Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-09-07T06:14:09.7029500Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-09-07T06:14:09.7030630Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7031460Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-09-07T06:14:09.7032400Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-09-07T06:14:09.7033620Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-09-07T06:14:09.7034800Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-09-07T06:14:09.7035880Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7036730Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-09-07T06:14:09.7037640Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-09-07T06:14:09.7038960Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-09-07T06:14:09.7040090Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-09-07T06:14:09.7041130Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7041960Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-09-07T06:14:09.7043000Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-09-07T06:14:09.7044380Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-09-07T06:14:09.7045290Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-09-07T06:14:09.7046200Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7047070Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-09-07T06:14:09.7047920Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-09-07T06:14:09.7048840Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-09-07T06:14:09.7049770Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-09-07T06:14:09.7050850Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7051660Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-09-07T06:14:09.7052490Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-09-07T06:14:09.7053460Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-09-07T06:14:09.7054570Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-09-07T06:14:09.7055630Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7056470Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-09-07T06:14:09.7057410Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-09-07T06:14:09.7058740Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-09-07T06:14:09.7059660Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-09-07T06:14:09.7060640Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7061440Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-09-07T06:14:09.7062360Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-09-07T06:14:09.7063340Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-09-07T06:14:09.7064220Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-09-07T06:14:09.7065200Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7066100Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-09-07T06:14:09.7066960Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-09-07T06:14:09.7067910Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-09-07T06:14:09.7068830Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-09-07T06:14:09.7069880Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7070700Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-09-07T06:14:09.7071520Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-09-07T06:14:09.7072510Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-09-07T06:14:09.7073470Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-09-07T06:14:09.7074440Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7075260Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-09-07T06:14:09.7076080Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-09-07T06:14:09.7077100Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-09-07T06:14:09.7078000Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-09-07T06:14:09.7078960Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7079770Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-09-07T06:14:09.7080690Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-09-07T06:14:09.7081620Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-09-07T06:14:09.7082510Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-09-07T06:14:09.7083430Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7084320Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-09-07T06:14:09.7085150Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-09-07T06:14:09.7086090Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-09-07T06:14:09.7086950Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-09-07T06:14:09.7088010Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7088780Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-09-07T06:14:09.7089610Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-09-07T06:14:09.7090540Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-09-07T06:14:09.7091490Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-09-07T06:14:09.7092480Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7093270Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-09-07T06:14:09.7094090Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-09-07T06:14:09.7095120Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-09-07T06:14:09.7096230Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-09-07T06:14:09.7097250Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7098080Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-09-07T06:14:09.7099120Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-09-07T06:14:09.7100350Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-09-07T06:14:09.7101250Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-09-07T06:14:09.7102200Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7103090Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-09-07T06:14:09.7103950Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-09-07T06:14:09.7104900Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-09-07T06:14:09.7105780Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-09-07T06:14:09.7106790Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7107590Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-09-07T06:14:09.7108390Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-09-07T06:14:09.7109320Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-09-07T06:14:09.7110310Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-09-07T06:14:09.7111290Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7112110Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-09-07T06:14:09.7112910Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-09-07T06:14:09.7113920Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-09-07T06:14:09.7114850Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-09-07T06:14:09.7115760Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7116570Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-09-07T06:14:09.7117460Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-09-07T06:14:09.7118410Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-09-07T06:14:09.7119290Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-09-07T06:14:09.7120200Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-09-07T06:14:09.7121110Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-09-07T06:14:09.7122060Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-09-07T06:14:09.7122910Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-09-07T06:14:09.7123890Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7124750Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-09-07T06:14:09.7125650Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-09-07T06:14:09.7126550Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-09-07T06:14:09.7127540Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7128470Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-09-07T06:14:09.7129460Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7130230Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-09-07T06:14:09.7131150Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-09-07T06:14:09.7132090Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-09-07T06:14:09.7133030Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-09-07T06:14:09.7134230Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-09-07T06:14:09.7135370Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7136310Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-09-07T06:14:09.7137210Z adding 'torch/include/ATen/ops/_fused_adagrad_cuda_dispatch.h' 2025-09-07T06:14:09.7138170Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-09-07T06:14:09.7139620Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-09-07T06:14:09.7140990Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-09-07T06:14:09.7142150Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7143050Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-09-07T06:14:09.7143890Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-09-07T06:14:09.7144840Z adding 'torch/include/ATen/ops/_fused_adam_mps_dispatch.h' 2025-09-07T06:14:09.7145900Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-09-07T06:14:09.7147550Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-09-07T06:14:09.7148790Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-09-07T06:14:09.7150050Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7150900Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-09-07T06:14:09.7151770Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-09-07T06:14:09.7152630Z adding 'torch/include/ATen/ops/_fused_adamw_mps_dispatch.h' 2025-09-07T06:14:09.7153770Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-09-07T06:14:09.7155400Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-09-07T06:14:09.7156270Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-09-07T06:14:09.7157290Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7158310Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-09-07T06:14:09.7159470Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-09-07T06:14:09.7160480Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-09-07T06:14:09.7161690Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-09-07T06:14:09.7162870Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7163760Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-09-07T06:14:09.7164620Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-09-07T06:14:09.7165570Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-09-07T06:14:09.7166930Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-09-07T06:14:09.7167810Z adding 'torch/include/ATen/ops/_fused_rms_norm.h' 2025-09-07T06:14:09.7168750Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward.h' 2025-09-07T06:14:09.7169690Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_cuda_dispatch.h' 2025-09-07T06:14:09.7170620Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_native.h' 2025-09-07T06:14:09.7171640Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_ops.h' 2025-09-07T06:14:09.7172580Z adding 'torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7173410Z adding 'torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h' 2025-09-07T06:14:09.7174310Z adding 'torch/include/ATen/ops/_fused_rms_norm_mps_dispatch.h' 2025-09-07T06:14:09.7175240Z adding 'torch/include/ATen/ops/_fused_rms_norm_native.h' 2025-09-07T06:14:09.7176210Z adding 'torch/include/ATen/ops/_fused_rms_norm_ops.h' 2025-09-07T06:14:09.7177150Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-09-07T06:14:09.7178160Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-09-07T06:14:09.7179070Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-09-07T06:14:09.7179900Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-09-07T06:14:09.7180780Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-09-07T06:14:09.7181830Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-09-07T06:14:09.7183100Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-09-07T06:14:09.7184260Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7185130Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-09-07T06:14:09.7186070Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-09-07T06:14:09.7186940Z adding 'torch/include/ATen/ops/_fused_sgd_mps_dispatch.h' 2025-09-07T06:14:09.7187940Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-09-07T06:14:09.7189400Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-09-07T06:14:09.7190350Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-09-07T06:14:09.7191370Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7192200Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-09-07T06:14:09.7193190Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7194220Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7195000Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-09-07T06:14:09.7195940Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-09-07T06:14:09.7196770Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-09-07T06:14:09.7197800Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-09-07T06:14:09.7198800Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-09-07T06:14:09.7199800Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7200570Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-09-07T06:14:09.7201640Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-09-07T06:14:09.7202590Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-09-07T06:14:09.7203550Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-09-07T06:14:09.7204580Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7205510Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-09-07T06:14:09.7206540Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-09-07T06:14:09.7207530Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7208340Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-09-07T06:14:09.7209440Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-09-07T06:14:09.7210310Z adding 'torch/include/ATen/ops/_grouped_mm.h' 2025-09-07T06:14:09.7211290Z adding 'torch/include/ATen/ops/_grouped_mm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7212100Z adding 'torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h' 2025-09-07T06:14:09.7213070Z adding 'torch/include/ATen/ops/_grouped_mm_native.h' 2025-09-07T06:14:09.7214020Z adding 'torch/include/ATen/ops/_grouped_mm_ops.h' 2025-09-07T06:14:09.7214940Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-09-07T06:14:09.7215960Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7216770Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-09-07T06:14:09.7217690Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-09-07T06:14:09.7218490Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-09-07T06:14:09.7219480Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7220360Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-09-07T06:14:09.7221270Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-09-07T06:14:09.7222230Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-09-07T06:14:09.7223230Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7224140Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-09-07T06:14:09.7225000Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h' 2025-09-07T06:14:09.7225840Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-09-07T06:14:09.7226850Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-09-07T06:14:09.7227880Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-09-07T06:14:09.7228910Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7229760Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-09-07T06:14:09.7230610Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h' 2025-09-07T06:14:09.7231570Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-09-07T06:14:09.7232610Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-09-07T06:14:09.7233590Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-09-07T06:14:09.7234630Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7235580Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-09-07T06:14:09.7236640Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h' 2025-09-07T06:14:09.7237570Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-09-07T06:14:09.7238570Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-09-07T06:14:09.7239640Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-09-07T06:14:09.7240740Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7241570Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-09-07T06:14:09.7242460Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-09-07T06:14:09.7243400Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-09-07T06:14:09.7244320Z adding 'torch/include/ATen/ops/_index_put_impl_mps_dispatch.h' 2025-09-07T06:14:09.7245270Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-09-07T06:14:09.7246420Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-09-07T06:14:09.7247380Z adding 'torch/include/ATen/ops/_indices.h' 2025-09-07T06:14:09.7248360Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-09-07T06:14:09.7249480Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7250520Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7251380Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-09-07T06:14:09.7252400Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-09-07T06:14:09.7254620Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-09-07T06:14:09.7255590Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-09-07T06:14:09.7256700Z adding 'torch/include/ATen/ops/_indices_sparsemps_dispatch.h' 2025-09-07T06:14:09.7257680Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-09-07T06:14:09.7258880Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-09-07T06:14:09.7259790Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-09-07T06:14:09.7260720Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-09-07T06:14:09.7261720Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-09-07T06:14:09.7262640Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-09-07T06:14:09.7263630Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7264450Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-09-07T06:14:09.7265380Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-09-07T06:14:09.7266280Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-09-07T06:14:09.7267240Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7268020Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-09-07T06:14:09.7268960Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-09-07T06:14:09.7270140Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-09-07T06:14:09.7271160Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7271930Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-09-07T06:14:09.7272880Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-09-07T06:14:09.7274080Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-09-07T06:14:09.7275120Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-09-07T06:14:09.7276030Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-09-07T06:14:09.7277050Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-09-07T06:14:09.7278080Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-09-07T06:14:09.7278930Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-09-07T06:14:09.7279980Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7280770Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-09-07T06:14:09.7281650Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-09-07T06:14:09.7282530Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-09-07T06:14:09.7283530Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7284300Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-09-07T06:14:09.7285280Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-09-07T06:14:09.7286180Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-09-07T06:14:09.7287170Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7287950Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-09-07T06:14:09.7288800Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-09-07T06:14:09.7289620Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-09-07T06:14:09.7290500Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-09-07T06:14:09.7291320Z adding 'torch/include/ATen/ops/_linalg_det_mps_dispatch.h' 2025-09-07T06:14:09.7292160Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-09-07T06:14:09.7293140Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-09-07T06:14:09.7294130Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-09-07T06:14:09.7295230Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7296040Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-09-07T06:14:09.7296920Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-09-07T06:14:09.7297740Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-09-07T06:14:09.7298610Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-09-07T06:14:09.7299460Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-09-07T06:14:09.7300500Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-09-07T06:14:09.7301330Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-09-07T06:14:09.7302220Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-09-07T06:14:09.7303050Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-09-07T06:14:09.7303930Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-09-07T06:14:09.7304850Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-09-07T06:14:09.7305780Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-09-07T06:14:09.7306820Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7307610Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-09-07T06:14:09.7308480Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-09-07T06:14:09.7309310Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-09-07T06:14:09.7310180Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-09-07T06:14:09.7311010Z adding 'torch/include/ATen/ops/_linalg_slogdet_mps_dispatch.h' 2025-09-07T06:14:09.7311860Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-09-07T06:14:09.7312930Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-09-07T06:14:09.7313930Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-09-07T06:14:09.7314980Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7315820Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-09-07T06:14:09.7316660Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-09-07T06:14:09.7317490Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-09-07T06:14:09.7318360Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-09-07T06:14:09.7319220Z adding 'torch/include/ATen/ops/_linalg_solve_ex_mps_dispatch.h' 2025-09-07T06:14:09.7320100Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-09-07T06:14:09.7321150Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-09-07T06:14:09.7322110Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-09-07T06:14:09.7324260Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7324800Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-09-07T06:14:09.7325730Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-09-07T06:14:09.7326540Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-09-07T06:14:09.7327440Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-09-07T06:14:09.7328250Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-09-07T06:14:09.7329260Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-09-07T06:14:09.7330120Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-09-07T06:14:09.7331030Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-09-07T06:14:09.7331840Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-09-07T06:14:09.7332670Z adding 'torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h' 2025-09-07T06:14:09.7333490Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-09-07T06:14:09.7334410Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-09-07T06:14:09.7335290Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-09-07T06:14:09.7336280Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-09-07T06:14:09.7337300Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7338160Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-09-07T06:14:09.7338970Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-09-07T06:14:09.7339840Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-09-07T06:14:09.7340750Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-09-07T06:14:09.7341610Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h' 2025-09-07T06:14:09.7342420Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-09-07T06:14:09.7343480Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-09-07T06:14:09.7344400Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7345170Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-09-07T06:14:09.7346050Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-09-07T06:14:09.7346950Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-09-07T06:14:09.7347840Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-09-07T06:14:09.7348670Z adding 'torch/include/ATen/ops/_log_softmax_mps_dispatch.h' 2025-09-07T06:14:09.7349530Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-09-07T06:14:09.7350570Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-09-07T06:14:09.7351430Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-09-07T06:14:09.7352330Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-09-07T06:14:09.7353190Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-09-07T06:14:09.7354070Z adding 'torch/include/ATen/ops/_logcumsumexp_mps_dispatch.h' 2025-09-07T06:14:09.7354890Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-09-07T06:14:09.7355820Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-09-07T06:14:09.7356890Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-09-07T06:14:09.7357880Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7358740Z adding 'torch/include/ATen/ops/_lstm_mps_mps_dispatch.h' 2025-09-07T06:14:09.7359570Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-09-07T06:14:09.7360680Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-09-07T06:14:09.7361620Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-09-07T06:14:09.7362580Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7363370Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-09-07T06:14:09.7364280Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-09-07T06:14:09.7365270Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-09-07T06:14:09.7366210Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-09-07T06:14:09.7367060Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-09-07T06:14:09.7368040Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-09-07T06:14:09.7368870Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-09-07T06:14:09.7369860Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7370670Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-09-07T06:14:09.7371680Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7372580Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7373330Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-09-07T06:14:09.7374290Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-09-07T06:14:09.7375120Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-09-07T06:14:09.7376080Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-09-07T06:14:09.7377420Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-09-07T06:14:09.7378460Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7379270Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-09-07T06:14:09.7380100Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-09-07T06:14:09.7380990Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-09-07T06:14:09.7382030Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-09-07T06:14:09.7382900Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-09-07T06:14:09.7383900Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7384720Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-09-07T06:14:09.7385560Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-09-07T06:14:09.7386410Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-09-07T06:14:09.7387370Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-09-07T06:14:09.7388240Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-09-07T06:14:09.7389230Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7390040Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-09-07T06:14:09.7390870Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-09-07T06:14:09.7391820Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-09-07T06:14:09.7392850Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-09-07T06:14:09.7393820Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-09-07T06:14:09.7394820Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7395650Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-09-07T06:14:09.7396490Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-09-07T06:14:09.7397340Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-09-07T06:14:09.7398360Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-09-07T06:14:09.7399310Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7400120Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-09-07T06:14:09.7401020Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-09-07T06:14:09.7401890Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-09-07T06:14:09.7402880Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-09-07T06:14:09.7403770Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-09-07T06:14:09.7404710Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-09-07T06:14:09.7405560Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-09-07T06:14:09.7406540Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-09-07T06:14:09.7407440Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-09-07T06:14:09.7408450Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7409240Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-09-07T06:14:09.7410210Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-09-07T06:14:09.7411130Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-09-07T06:14:09.7412120Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7412940Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-09-07T06:14:09.7413780Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-09-07T06:14:09.7414780Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-09-07T06:14:09.7416000Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-09-07T06:14:09.7417060Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7417920Z adding 'torch/include/ATen/ops/_mps_convolution_mps_dispatch.h' 2025-09-07T06:14:09.7418790Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-09-07T06:14:09.7419810Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-09-07T06:14:09.7421050Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-09-07T06:14:09.7422170Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7423030Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h' 2025-09-07T06:14:09.7423910Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-09-07T06:14:09.7424940Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-09-07T06:14:09.7426060Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-09-07T06:14:09.7427070Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7427960Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-09-07T06:14:09.7428900Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-09-07T06:14:09.7429780Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h' 2025-09-07T06:14:09.7430860Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-09-07T06:14:09.7431900Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-09-07T06:14:09.7432950Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7433750Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-09-07T06:14:09.7434840Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-09-07T06:14:09.7436090Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-09-07T06:14:09.7437190Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-09-07T06:14:09.7438270Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7439130Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-09-07T06:14:09.7440020Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-09-07T06:14:09.7440930Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-09-07T06:14:09.7442040Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-09-07T06:14:09.7442880Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-09-07T06:14:09.7443830Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7444620Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-09-07T06:14:09.7445610Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7446590Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7447300Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-09-07T06:14:09.7451990Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-09-07T06:14:09.7452220Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-09-07T06:14:09.7452360Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-09-07T06:14:09.7452510Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-09-07T06:14:09.7452710Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-09-07T06:14:09.7452940Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-09-07T06:14:09.7453660Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-09-07T06:14:09.7454290Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-09-07T06:14:09.7455150Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-09-07T06:14:09.7456140Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-09-07T06:14:09.7457120Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7457900Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-09-07T06:14:09.7458870Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-09-07T06:14:09.7459840Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7460660Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-09-07T06:14:09.7461470Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-09-07T06:14:09.7462320Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-09-07T06:14:09.7463290Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-09-07T06:14:09.7464320Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-09-07T06:14:09.7465180Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-09-07T06:14:09.7466150Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-09-07T06:14:09.7466990Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-09-07T06:14:09.7467850Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-09-07T06:14:09.7468740Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-09-07T06:14:09.7469560Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-09-07T06:14:09.7470350Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-09-07T06:14:09.7471250Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-09-07T06:14:09.7472080Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-09-07T06:14:09.7472880Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-09-07T06:14:09.7473790Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-09-07T06:14:09.7474630Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-09-07T06:14:09.7475460Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-09-07T06:14:09.7476340Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-09-07T06:14:09.7477160Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-09-07T06:14:09.7477980Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-09-07T06:14:09.7478840Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-09-07T06:14:09.7479680Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-09-07T06:14:09.7480470Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-09-07T06:14:09.7481370Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-09-07T06:14:09.7482180Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-09-07T06:14:09.7483060Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-09-07T06:14:09.7484100Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7485020Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7485740Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-09-07T06:14:09.7486660Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-09-07T06:14:09.7487450Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-09-07T06:14:09.7488310Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-09-07T06:14:09.7489240Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-09-07T06:14:09.7490100Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-09-07T06:14:09.7491010Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-09-07T06:14:09.7491840Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-09-07T06:14:09.7492710Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-09-07T06:14:09.7493590Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-09-07T06:14:09.7494490Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-09-07T06:14:09.7495470Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7496270Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-09-07T06:14:09.7497090Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-09-07T06:14:09.7497970Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-09-07T06:14:09.7498830Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-09-07T06:14:09.7499650Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-09-07T06:14:09.7500460Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-09-07T06:14:09.7501340Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-09-07T06:14:09.7502160Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-09-07T06:14:09.7503120Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-09-07T06:14:09.7504100Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-09-07T06:14:09.7505130Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7505920Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-09-07T06:14:09.7506920Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-09-07T06:14:09.7507730Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-09-07T06:14:09.7508700Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7509450Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-09-07T06:14:09.7510370Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-09-07T06:14:09.7511260Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-09-07T06:14:09.7512100Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-09-07T06:14:09.7513000Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-09-07T06:14:09.7513830Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-09-07T06:14:09.7514800Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7515550Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-09-07T06:14:09.7516470Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-09-07T06:14:09.7517290Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-09-07T06:14:09.7518240Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7519000Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-09-07T06:14:09.7519940Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-09-07T06:14:09.7520780Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-09-07T06:14:09.7521700Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-09-07T06:14:09.7522710Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7523630Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7524360Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-09-07T06:14:09.7525320Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-09-07T06:14:09.7526210Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-09-07T06:14:09.7527020Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-09-07T06:14:09.7527830Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-09-07T06:14:09.7528740Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-09-07T06:14:09.7529610Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-09-07T06:14:09.7530590Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-09-07T06:14:09.7531610Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7532600Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7533340Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-09-07T06:14:09.7534370Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-09-07T06:14:09.7535170Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-09-07T06:14:09.7536110Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-09-07T06:14:09.7537040Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-09-07T06:14:09.7538040Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7538820Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-09-07T06:14:09.7539780Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-09-07T06:14:09.7540580Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-09-07T06:14:09.7541530Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7542270Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-09-07T06:14:09.7543140Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-09-07T06:14:09.7544310Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-09-07T06:14:09.7545380Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7546170Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-09-07T06:14:09.7547160Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-09-07T06:14:09.7547920Z adding 'torch/include/ATen/ops/_nnz.h' 2025-09-07T06:14:09.7548750Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-09-07T06:14:09.7549620Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-09-07T06:14:09.7550530Z adding 'torch/include/ATen/ops/_nnz_sparsecsrmps_dispatch.h' 2025-09-07T06:14:09.7551360Z adding 'torch/include/ATen/ops/_nnz_sparsemps_dispatch.h' 2025-09-07T06:14:09.7552250Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-09-07T06:14:09.7553250Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-09-07T06:14:09.7554220Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7554980Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-09-07T06:14:09.7555880Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-09-07T06:14:09.7556880Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7557610Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-09-07T06:14:09.7558580Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-09-07T06:14:09.7559460Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-09-07T06:14:09.7560400Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7561150Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-09-07T06:14:09.7562010Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-09-07T06:14:09.7562930Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-09-07T06:14:09.7563910Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7564680Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-09-07T06:14:09.7565560Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-09-07T06:14:09.7566440Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-09-07T06:14:09.7567430Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7568200Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-09-07T06:14:09.7569130Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-09-07T06:14:09.7570110Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-09-07T06:14:09.7571060Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-09-07T06:14:09.7571910Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-09-07T06:14:09.7572740Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-09-07T06:14:09.7573650Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-09-07T06:14:09.7574510Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-09-07T06:14:09.7575470Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7576290Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-09-07T06:14:09.7577100Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-09-07T06:14:09.7577920Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-09-07T06:14:09.7578880Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-09-07T06:14:09.7579750Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-09-07T06:14:09.7580720Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7581520Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-09-07T06:14:09.7582370Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-09-07T06:14:09.7583260Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-09-07T06:14:09.7584190Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-09-07T06:14:09.7585450Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-09-07T06:14:09.7586480Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7587240Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-09-07T06:14:09.7588200Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-09-07T06:14:09.7589150Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-09-07T06:14:09.7589990Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-09-07T06:14:09.7590930Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-09-07T06:14:09.7591760Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-09-07T06:14:09.7592570Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h' 2025-09-07T06:14:09.7593410Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-09-07T06:14:09.7594350Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-09-07T06:14:09.7595260Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-09-07T06:14:09.7596090Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-09-07T06:14:09.7597010Z adding 'torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h' 2025-09-07T06:14:09.7597790Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-09-07T06:14:09.7598680Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-09-07T06:14:09.7599520Z adding 'torch/include/ATen/ops/_print.h' 2025-09-07T06:14:09.7600440Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7601170Z adding 'torch/include/ATen/ops/_print_native.h' 2025-09-07T06:14:09.7602040Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-09-07T06:14:09.7602920Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-09-07T06:14:09.7603880Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7604640Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-09-07T06:14:09.7605500Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-09-07T06:14:09.7606400Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-09-07T06:14:09.7607410Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7608140Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-09-07T06:14:09.7609040Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-09-07T06:14:09.7609940Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-09-07T06:14:09.7611030Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-09-07T06:14:09.7612100Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7612990Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7613710Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-09-07T06:14:09.7614650Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-09-07T06:14:09.7615540Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-09-07T06:14:09.7616340Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-09-07T06:14:09.7617150Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-09-07T06:14:09.7617950Z adding 'torch/include/ATen/ops/_reshape_alias_mps_dispatch.h' 2025-09-07T06:14:09.7618740Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-09-07T06:14:09.7619620Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-09-07T06:14:09.7620510Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-09-07T06:14:09.7621450Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7622190Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-09-07T06:14:09.7623070Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-09-07T06:14:09.7623920Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-09-07T06:14:09.7624860Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7625610Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-09-07T06:14:09.7626490Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-09-07T06:14:09.7627570Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-09-07T06:14:09.7628610Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7629430Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-09-07T06:14:09.7630250Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-09-07T06:14:09.7631240Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-09-07T06:14:09.7632110Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-09-07T06:14:09.7633110Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7633840Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-09-07T06:14:09.7634760Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-09-07T06:14:09.7635620Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-09-07T06:14:09.7636600Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7637370Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-09-07T06:14:09.7638270Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-09-07T06:14:09.7639160Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-09-07T06:14:09.7640160Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7640950Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-09-07T06:14:09.7641770Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-09-07T06:14:09.7642610Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-09-07T06:14:09.7643590Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-09-07T06:14:09.7644460Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-09-07T06:14:09.7645430Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7646170Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-09-07T06:14:09.7647060Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-09-07T06:14:09.7647990Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-09-07T06:14:09.7648970Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7649840Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-09-07T06:14:09.7650770Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_mps_dispatch.h' 2025-09-07T06:14:09.7651610Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-09-07T06:14:09.7652560Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-09-07T06:14:09.7653430Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-09-07T06:14:09.7654380Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-09-07T06:14:09.7655320Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-09-07T06:14:09.7656430Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-09-07T06:14:09.7657420Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-09-07T06:14:09.7658310Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-09-07T06:14:09.7659320Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-09-07T06:14:09.7660220Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-09-07T06:14:09.7661120Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-09-07T06:14:09.7662100Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-09-07T06:14:09.7663010Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-09-07T06:14:09.7663970Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-09-07T06:14:09.7664910Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-09-07T06:14:09.7665780Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-09-07T06:14:09.7666760Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-09-07T06:14:09.7667660Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-09-07T06:14:09.7668520Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-09-07T06:14:09.7669490Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-09-07T06:14:09.7670380Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-09-07T06:14:09.7671460Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-09-07T06:14:09.7672470Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-09-07T06:14:09.7673320Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-09-07T06:14:09.7674320Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-09-07T06:14:09.7675220Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-09-07T06:14:09.7676100Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-09-07T06:14:09.7677060Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-09-07T06:14:09.7678000Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-09-07T06:14:09.7678850Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-09-07T06:14:09.7679830Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-09-07T06:14:09.7680720Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-09-07T06:14:09.7681550Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-09-07T06:14:09.7682500Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-09-07T06:14:09.7683360Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-09-07T06:14:09.7684360Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-09-07T06:14:09.7685310Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-09-07T06:14:09.7686450Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-09-07T06:14:09.7687530Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7688350Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-09-07T06:14:09.7689400Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-09-07T06:14:09.7690390Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7691170Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-09-07T06:14:09.7692160Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-09-07T06:14:09.7693030Z adding 'torch/include/ATen/ops/_scaled_grouped_mm.h' 2025-09-07T06:14:09.7693980Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h' 2025-09-07T06:14:09.7694800Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_native.h' 2025-09-07T06:14:09.7695770Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_ops.h' 2025-09-07T06:14:09.7696740Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-09-07T06:14:09.7697720Z adding 'torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h' 2025-09-07T06:14:09.7698580Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-09-07T06:14:09.7699480Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-09-07T06:14:09.7700540Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-09-07T06:14:09.7701590Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-09-07T06:14:09.7702640Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7703480Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-09-07T06:14:09.7704330Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-09-07T06:14:09.7705220Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-09-07T06:14:09.7706230Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-09-07T06:14:09.7707100Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-09-07T06:14:09.7708100Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7708840Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-09-07T06:14:09.7709710Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-09-07T06:14:09.7711730Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-09-07T06:14:09.7712410Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7713320Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-09-07T06:14:09.7714260Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-09-07T06:14:09.7715170Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-09-07T06:14:09.7716310Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-09-07T06:14:09.7717480Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-09-07T06:14:09.7718490Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-09-07T06:14:09.7719390Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-09-07T06:14:09.7720250Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-09-07T06:14:09.7721240Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-09-07T06:14:09.7722110Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-09-07T06:14:09.7723070Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7723880Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-09-07T06:14:09.7724780Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-09-07T06:14:09.7725650Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-09-07T06:14:09.7726590Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7727360Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-09-07T06:14:09.7728290Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-09-07T06:14:09.7729170Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-09-07T06:14:09.7730150Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7730910Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-09-07T06:14:09.7731830Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-09-07T06:14:09.7732640Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-09-07T06:14:09.7733580Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7734320Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-09-07T06:14:09.7735220Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-09-07T06:14:09.7736070Z adding 'torch/include/ATen/ops/_softmax.h' 2025-09-07T06:14:09.7737030Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-09-07T06:14:09.7738050Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7738820Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-09-07T06:14:09.7739670Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-09-07T06:14:09.7740490Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-09-07T06:14:09.7741340Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-09-07T06:14:09.7742180Z adding 'torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h' 2025-09-07T06:14:09.7743060Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-09-07T06:14:09.7744020Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-09-07T06:14:09.7745000Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7745770Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-09-07T06:14:09.7746590Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-09-07T06:14:09.7747450Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-09-07T06:14:09.7748270Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-09-07T06:14:09.7749060Z adding 'torch/include/ATen/ops/_softmax_mps_dispatch.h' 2025-09-07T06:14:09.7749910Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-09-07T06:14:09.7750840Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-09-07T06:14:09.7751770Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-09-07T06:14:09.7752790Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7753570Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-09-07T06:14:09.7754550Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-09-07T06:14:09.7755400Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-09-07T06:14:09.7756300Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-09-07T06:14:09.7757280Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7758170Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7758910Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-09-07T06:14:09.7759840Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-09-07T06:14:09.7760680Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-09-07T06:14:09.7761590Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-09-07T06:14:09.7762540Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-09-07T06:14:09.7763650Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7764570Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-09-07T06:14:09.7765540Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-09-07T06:14:09.7766490Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-09-07T06:14:09.7767490Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7768280Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-09-07T06:14:09.7769230Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-09-07T06:14:09.7770380Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-09-07T06:14:09.7771460Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7772250Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-09-07T06:14:09.7773200Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-09-07T06:14:09.7774160Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-09-07T06:14:09.7775160Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7775960Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-09-07T06:14:09.7776950Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-09-07T06:14:09.7778050Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-09-07T06:14:09.7779110Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7779910Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-09-07T06:14:09.7780870Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-09-07T06:14:09.7781890Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-09-07T06:14:09.7783340Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-09-07T06:14:09.7784390Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7785290Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-09-07T06:14:09.7786220Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-09-07T06:14:09.7787280Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-09-07T06:14:09.7788290Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_sparsemps_dispatch.h' 2025-09-07T06:14:09.7789200Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7790060Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-09-07T06:14:09.7790920Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-09-07T06:14:09.7791950Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-09-07T06:14:09.7792890Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_sparsemps_dispatch.h' 2025-09-07T06:14:09.7793790Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-09-07T06:14:09.7794790Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7795570Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-09-07T06:14:09.7796900Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-09-07T06:14:09.7797820Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-09-07T06:14:09.7798860Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7799690Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-09-07T06:14:09.7800650Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-09-07T06:14:09.7801600Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-09-07T06:14:09.7802600Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7803370Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-09-07T06:14:09.7804350Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-09-07T06:14:09.7805330Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-09-07T06:14:09.7806340Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7807160Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-09-07T06:14:09.7808130Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-09-07T06:14:09.7809070Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-09-07T06:14:09.7810030Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-09-07T06:14:09.7811020Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7811810Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-09-07T06:14:09.7812790Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-09-07T06:14:09.7813790Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7814740Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7815560Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-09-07T06:14:09.7816610Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-09-07T06:14:09.7817540Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-09-07T06:14:09.7818470Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7819240Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-09-07T06:14:09.7820190Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-09-07T06:14:09.7821010Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-09-07T06:14:09.7821990Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7822770Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-09-07T06:14:09.7823730Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-09-07T06:14:09.7824660Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-09-07T06:14:09.7825550Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-09-07T06:14:09.7826430Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-09-07T06:14:09.7827380Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-09-07T06:14:09.7828230Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-09-07T06:14:09.7829130Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-09-07T06:14:09.7830060Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-09-07T06:14:09.7830970Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-09-07T06:14:09.7831820Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-09-07T06:14:09.7832760Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-09-07T06:14:09.7833640Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-09-07T06:14:09.7834550Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-09-07T06:14:09.7835370Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-09-07T06:14:09.7836340Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-09-07T06:14:09.7837150Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-09-07T06:14:09.7838100Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-09-07T06:14:09.7838910Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-09-07T06:14:09.7839790Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-09-07T06:14:09.7840700Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-09-07T06:14:09.7841640Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-09-07T06:14:09.7842480Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-09-07T06:14:09.7843410Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-09-07T06:14:09.7844260Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-09-07T06:14:09.7845150Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-09-07T06:14:09.7845950Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-09-07T06:14:09.7846850Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-09-07T06:14:09.7847710Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-09-07T06:14:09.7848600Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-09-07T06:14:09.7849400Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-09-07T06:14:09.7850310Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-09-07T06:14:09.7851210Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-09-07T06:14:09.7852170Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-09-07T06:14:09.7853150Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7853920Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-09-07T06:14:09.7854890Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-09-07T06:14:09.7855830Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7856730Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7857520Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-09-07T06:14:09.7858550Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-09-07T06:14:09.7859470Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-09-07T06:14:09.7860420Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7861230Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-09-07T06:14:09.7862160Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-09-07T06:14:09.7863070Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-09-07T06:14:09.7863990Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-09-07T06:14:09.7864950Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7865710Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-09-07T06:14:09.7866660Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-09-07T06:14:09.7867620Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7868520Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7869330Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-09-07T06:14:09.7870390Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-09-07T06:14:09.7871330Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-09-07T06:14:09.7872320Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7873110Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-09-07T06:14:09.7873940Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-09-07T06:14:09.7874940Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-09-07T06:14:09.7875810Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-09-07T06:14:09.7876630Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-09-07T06:14:09.7877560Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-09-07T06:14:09.7878400Z adding 'torch/include/ATen/ops/_stack.h' 2025-09-07T06:14:09.7879370Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7880210Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-09-07T06:14:09.7881050Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-09-07T06:14:09.7882010Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-09-07T06:14:09.7882920Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-09-07T06:14:09.7883890Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7884700Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-09-07T06:14:09.7885530Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-09-07T06:14:09.7886400Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-09-07T06:14:09.7887350Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7888130Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-09-07T06:14:09.7888920Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-09-07T06:14:09.7889730Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-09-07T06:14:09.7890630Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-09-07T06:14:09.7891470Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-09-07T06:14:09.7892400Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-09-07T06:14:09.7893280Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-09-07T06:14:09.7894250Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7895010Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-09-07T06:14:09.7895940Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-09-07T06:14:09.7896860Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-09-07T06:14:09.7897830Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7898670Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7899450Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-09-07T06:14:09.7900430Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-09-07T06:14:09.7901340Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-09-07T06:14:09.7902250Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7903040Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-09-07T06:14:09.7904020Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7904920Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.7905640Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-09-07T06:14:09.7906570Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-09-07T06:14:09.7907400Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-09-07T06:14:09.7908280Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-09-07T06:14:09.7909070Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-09-07T06:14:09.7910020Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7910770Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-09-07T06:14:09.7911640Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-09-07T06:14:09.7912580Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-09-07T06:14:09.7913520Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7914320Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-09-07T06:14:09.7915140Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-09-07T06:14:09.7916060Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-09-07T06:14:09.7917000Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-09-07T06:14:09.7917980Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7918780Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-09-07T06:14:09.7919620Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-09-07T06:14:09.7920540Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-09-07T06:14:09.7921400Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-09-07T06:14:09.7922370Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7923170Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-09-07T06:14:09.7924010Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-09-07T06:14:09.7924960Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-09-07T06:14:09.7925870Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-09-07T06:14:09.7926830Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7927600Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-09-07T06:14:09.7928440Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-09-07T06:14:09.7929390Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-09-07T06:14:09.7930280Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-09-07T06:14:09.7931260Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7932020Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-09-07T06:14:09.7932920Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-09-07T06:14:09.7933760Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-09-07T06:14:09.7934700Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7935490Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-09-07T06:14:09.7936340Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-09-07T06:14:09.7937180Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-09-07T06:14:09.7938140Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7938890Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-09-07T06:14:09.7939770Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-09-07T06:14:09.7940620Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-09-07T06:14:09.7941600Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7942380Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-09-07T06:14:09.7943310Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-09-07T06:14:09.7944270Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-09-07T06:14:09.7945250Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7946010Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-09-07T06:14:09.7946940Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-09-07T06:14:09.7947840Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-09-07T06:14:09.7948840Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7953950Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-09-07T06:14:09.7954240Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-09-07T06:14:09.7954340Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-09-07T06:14:09.7954460Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-09-07T06:14:09.7954670Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7954890Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-09-07T06:14:09.7955030Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-09-07T06:14:09.7955980Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-09-07T06:14:09.7956940Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7957760Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-09-07T06:14:09.7958590Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-09-07T06:14:09.7959600Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-09-07T06:14:09.7960580Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-09-07T06:14:09.7961480Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-09-07T06:14:09.7962460Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7963350Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-09-07T06:14:09.7964350Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7965150Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-09-07T06:14:09.7965990Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-09-07T06:14:09.7967030Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-09-07T06:14:09.7967870Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-09-07T06:14:09.7968810Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-09-07T06:14:09.7969780Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7970630Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-09-07T06:14:09.7971470Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-09-07T06:14:09.7972530Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-09-07T06:14:09.7973490Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-09-07T06:14:09.7974520Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7975320Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-09-07T06:14:09.7976350Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-09-07T06:14:09.7977200Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-09-07T06:14:09.7978150Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.7978910Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-09-07T06:14:09.7979840Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-09-07T06:14:09.7980700Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-09-07T06:14:09.7981670Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7982460Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-09-07T06:14:09.7983420Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-09-07T06:14:09.7984350Z adding 'torch/include/ATen/ops/_to_dense_sparsecsrmps_dispatch.h' 2025-09-07T06:14:09.7985160Z adding 'torch/include/ATen/ops/_to_dense_sparsemps_dispatch.h' 2025-09-07T06:14:09.7986080Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-09-07T06:14:09.7987020Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-09-07T06:14:09.7987960Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7988780Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-09-07T06:14:09.7989590Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-09-07T06:14:09.7990440Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-09-07T06:14:09.7991430Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-09-07T06:14:09.7992320Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-09-07T06:14:09.7993290Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7994070Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-09-07T06:14:09.7994890Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-09-07T06:14:09.7995740Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-09-07T06:14:09.7996670Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-09-07T06:14:09.7997660Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.7998470Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-09-07T06:14:09.7999470Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-09-07T06:14:09.8000490Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8001300Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-09-07T06:14:09.8002170Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-09-07T06:14:09.8003400Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-09-07T06:14:09.8004360Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-09-07T06:14:09.8005240Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-09-07T06:14:09.8006210Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8007030Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-09-07T06:14:09.8007860Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-09-07T06:14:09.8008730Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-09-07T06:14:09.8009790Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-09-07T06:14:09.8010720Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-09-07T06:14:09.8011550Z adding 'torch/include/ATen/ops/_to_sparse_mps_dispatch.h' 2025-09-07T06:14:09.8012470Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-09-07T06:14:09.8013600Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-09-07T06:14:09.8014510Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-09-07T06:14:09.8015470Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-09-07T06:14:09.8016280Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-09-07T06:14:09.8017190Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-09-07T06:14:09.8018100Z adding 'torch/include/ATen/ops/_to_sparse_sparsecsrmps_dispatch.h' 2025-09-07T06:14:09.8019050Z adding 'torch/include/ATen/ops/_to_sparse_sparsemps_dispatch.h' 2025-09-07T06:14:09.8020020Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-09-07T06:14:09.8021030Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8021880Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-09-07T06:14:09.8022760Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-09-07T06:14:09.8023950Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-09-07T06:14:09.8025110Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-09-07T06:14:09.8026250Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-09-07T06:14:09.8027410Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8028370Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-09-07T06:14:09.8029310Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-09-07T06:14:09.8030290Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-09-07T06:14:09.8031670Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-09-07T06:14:09.8032620Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-09-07T06:14:09.8033690Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8034630Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8035400Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-09-07T06:14:09.8036420Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-09-07T06:14:09.8037490Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-09-07T06:14:09.8038490Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8039360Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-09-07T06:14:09.8040220Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-09-07T06:14:09.8041300Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-09-07T06:14:09.8042510Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-09-07T06:14:09.8043500Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8044300Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-09-07T06:14:09.8045200Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-09-07T06:14:09.8046260Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-09-07T06:14:09.8047180Z adding 'torch/include/ATen/ops/_unique.h' 2025-09-07T06:14:09.8048130Z adding 'torch/include/ATen/ops/_unique2.h' 2025-09-07T06:14:09.8049190Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8050090Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-09-07T06:14:09.8050930Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-09-07T06:14:09.8051740Z adding 'torch/include/ATen/ops/_unique2_mps_dispatch.h' 2025-09-07T06:14:09.8052680Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-09-07T06:14:09.8053740Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-09-07T06:14:09.8054800Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8055590Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-09-07T06:14:09.8056490Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-09-07T06:14:09.8057340Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-09-07T06:14:09.8058330Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-09-07T06:14:09.8059200Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-09-07T06:14:09.8060190Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8060950Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-09-07T06:14:09.8061910Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-09-07T06:14:09.8062810Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-09-07T06:14:09.8063780Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8064520Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-09-07T06:14:09.8065450Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-09-07T06:14:09.8066380Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-09-07T06:14:09.8067390Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8068130Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-09-07T06:14:09.8069070Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-09-07T06:14:09.8069980Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-09-07T06:14:09.8070910Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8071660Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-09-07T06:14:09.8072590Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-09-07T06:14:09.8073540Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-09-07T06:14:09.8074520Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8075280Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-09-07T06:14:09.8076270Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-09-07T06:14:09.8077290Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-09-07T06:14:09.8078300Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8079090Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-09-07T06:14:09.8080070Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-09-07T06:14:09.8081530Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-09-07T06:14:09.8082900Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-09-07T06:14:09.8084070Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8085020Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-09-07T06:14:09.8086030Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-09-07T06:14:09.8086930Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-09-07T06:14:09.8087910Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-09-07T06:14:09.8088820Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-09-07T06:14:09.8089840Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-09-07T06:14:09.8090840Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8091690Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8092570Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-09-07T06:14:09.8093460Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-09-07T06:14:09.8094350Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-09-07T06:14:09.8095240Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-09-07T06:14:09.8096100Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_mps_dispatch.h' 2025-09-07T06:14:09.8096990Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-09-07T06:14:09.8098040Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-09-07T06:14:09.8099300Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-09-07T06:14:09.8100560Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-09-07T06:14:09.8101640Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8102490Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-09-07T06:14:09.8103400Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-09-07T06:14:09.8104240Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-09-07T06:14:09.8105160Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-09-07T06:14:09.8106010Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-09-07T06:14:09.8107040Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-09-07T06:14:09.8108060Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8108880Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8109730Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-09-07T06:14:09.8110600Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-09-07T06:14:09.8111440Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-09-07T06:14:09.8112310Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-09-07T06:14:09.8113160Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_mps_dispatch.h' 2025-09-07T06:14:09.8114050Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-09-07T06:14:09.8115090Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-09-07T06:14:09.8116280Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-09-07T06:14:09.8117480Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-09-07T06:14:09.8118560Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8119380Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-09-07T06:14:09.8120300Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-09-07T06:14:09.8121130Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-09-07T06:14:09.8122040Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-09-07T06:14:09.8122930Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h' 2025-09-07T06:14:09.8123800Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-09-07T06:14:09.8124800Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-09-07T06:14:09.8125790Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8126640Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8127470Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-09-07T06:14:09.8128330Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-09-07T06:14:09.8129170Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-09-07T06:14:09.8130060Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-09-07T06:14:09.8130920Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h' 2025-09-07T06:14:09.8131780Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-09-07T06:14:09.8132810Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-09-07T06:14:09.8134030Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-09-07T06:14:09.8135280Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-09-07T06:14:09.8136350Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8137190Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-09-07T06:14:09.8138110Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-09-07T06:14:09.8138940Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-09-07T06:14:09.8139860Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-09-07T06:14:09.8140740Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h' 2025-09-07T06:14:09.8141630Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-09-07T06:14:09.8142630Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-09-07T06:14:09.8143630Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8144500Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8145300Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-09-07T06:14:09.8146190Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-09-07T06:14:09.8147020Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-09-07T06:14:09.8147930Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-09-07T06:14:09.8148790Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h' 2025-09-07T06:14:09.8149710Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-09-07T06:14:09.8150750Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-09-07T06:14:09.8152020Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-09-07T06:14:09.8153310Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-09-07T06:14:09.8154420Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8155270Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-09-07T06:14:09.8156190Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-09-07T06:14:09.8157050Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-09-07T06:14:09.8157980Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-09-07T06:14:09.8158850Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_mps_dispatch.h' 2025-09-07T06:14:09.8159760Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-09-07T06:14:09.8160760Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-09-07T06:14:09.8161760Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8162590Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8163460Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-09-07T06:14:09.8164330Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-09-07T06:14:09.8165180Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-09-07T06:14:09.8166090Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-09-07T06:14:09.8167020Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_mps_dispatch.h' 2025-09-07T06:14:09.8167900Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-09-07T06:14:09.8168940Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-09-07T06:14:09.8169830Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-09-07T06:14:09.8170740Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-09-07T06:14:09.8171570Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-09-07T06:14:09.8172540Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-09-07T06:14:09.8173410Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-09-07T06:14:09.8174370Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8175100Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-09-07T06:14:09.8176000Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-09-07T06:14:09.8176880Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-09-07T06:14:09.8177770Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-09-07T06:14:09.8178610Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-09-07T06:14:09.8179430Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-09-07T06:14:09.8180380Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-09-07T06:14:09.8181220Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-09-07T06:14:09.8182200Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8182970Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-09-07T06:14:09.8183880Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-09-07T06:14:09.8184750Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-09-07T06:14:09.8185710Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8186470Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-09-07T06:14:09.8187400Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-09-07T06:14:09.8188280Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-09-07T06:14:09.8189280Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8190050Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-09-07T06:14:09.8190970Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-09-07T06:14:09.8191830Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-09-07T06:14:09.8192820Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8193580Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-09-07T06:14:09.8194490Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-09-07T06:14:09.8195350Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-09-07T06:14:09.8196320Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8197090Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-09-07T06:14:09.8198020Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-09-07T06:14:09.8198920Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-09-07T06:14:09.8199850Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8200590Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-09-07T06:14:09.8201520Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-09-07T06:14:09.8202290Z adding 'torch/include/ATen/ops/_values.h' 2025-09-07T06:14:09.8203220Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-09-07T06:14:09.8204160Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8205070Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8205770Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-09-07T06:14:09.8206700Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-09-07T06:14:09.8207520Z adding 'torch/include/ATen/ops/_values_native.h' 2025-09-07T06:14:09.8208390Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-09-07T06:14:09.8209280Z adding 'torch/include/ATen/ops/_values_sparsemps_dispatch.h' 2025-09-07T06:14:09.8210070Z adding 'torch/include/ATen/ops/_version.h' 2025-09-07T06:14:09.8211000Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8211740Z adding 'torch/include/ATen/ops/_version_native.h' 2025-09-07T06:14:09.8212620Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-09-07T06:14:09.8213500Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-09-07T06:14:09.8214400Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-09-07T06:14:09.8215260Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-09-07T06:14:09.8216170Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-09-07T06:14:09.8216980Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-09-07T06:14:09.8218220Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-09-07T06:14:09.8219070Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h' 2025-09-07T06:14:09.8219890Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-09-07T06:14:09.8220800Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-09-07T06:14:09.8221710Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h' 2025-09-07T06:14:09.8222550Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h' 2025-09-07T06:14:09.8223480Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h' 2025-09-07T06:14:09.8224250Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-09-07T06:14:09.8225140Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-09-07T06:14:09.8225950Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cuda_dispatch.h' 2025-09-07T06:14:09.8226780Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h' 2025-09-07T06:14:09.8227590Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-09-07T06:14:09.8228460Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-09-07T06:14:09.8229290Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-09-07T06:14:09.8230240Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8231100Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-09-07T06:14:09.8232060Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8232820Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-09-07T06:14:09.8233740Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-09-07T06:14:09.8234610Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-09-07T06:14:09.8235570Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-09-07T06:14:09.8236580Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8237380Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-09-07T06:14:09.8238200Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-09-07T06:14:09.8239030Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h' 2025-09-07T06:14:09.8239880Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-09-07T06:14:09.8240890Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-09-07T06:14:09.8241830Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8242620Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-09-07T06:14:09.8243450Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-09-07T06:14:09.8244250Z adding 'torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h' 2025-09-07T06:14:09.8245090Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-09-07T06:14:09.8246050Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-09-07T06:14:09.8246860Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-09-07T06:14:09.8247750Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-09-07T06:14:09.8248630Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-09-07T06:14:09.8249600Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8250350Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-09-07T06:14:09.8251250Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-09-07T06:14:09.8252190Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-09-07T06:14:09.8253190Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8253950Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-09-07T06:14:09.8254890Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-09-07T06:14:09.8255690Z adding 'torch/include/ATen/ops/abs.h' 2025-09-07T06:14:09.8256630Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8257420Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-09-07T06:14:09.8258240Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-09-07T06:14:09.8259040Z adding 'torch/include/ATen/ops/abs_mps_dispatch.h' 2025-09-07T06:14:09.8259900Z adding 'torch/include/ATen/ops/abs_native.h' 2025-09-07T06:14:09.8260850Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-09-07T06:14:09.8261760Z adding 'torch/include/ATen/ops/abs_sparsecsrmps_dispatch.h' 2025-09-07T06:14:09.8262570Z adding 'torch/include/ATen/ops/abs_sparsemps_dispatch.h' 2025-09-07T06:14:09.8263410Z adding 'torch/include/ATen/ops/absolute.h' 2025-09-07T06:14:09.8264370Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8265110Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-09-07T06:14:09.8266050Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-09-07T06:14:09.8266930Z adding 'torch/include/ATen/ops/acos.h' 2025-09-07T06:14:09.8267910Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8268650Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-09-07T06:14:09.8269470Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-09-07T06:14:09.8270290Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-09-07T06:14:09.8271120Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-09-07T06:14:09.8271910Z adding 'torch/include/ATen/ops/acos_mps_dispatch.h' 2025-09-07T06:14:09.8272730Z adding 'torch/include/ATen/ops/acos_native.h' 2025-09-07T06:14:09.8273670Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-09-07T06:14:09.8274530Z adding 'torch/include/ATen/ops/acosh.h' 2025-09-07T06:14:09.8275510Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8276230Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-09-07T06:14:09.8277050Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-09-07T06:14:09.8277890Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-09-07T06:14:09.8278710Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-09-07T06:14:09.8279520Z adding 'torch/include/ATen/ops/acosh_mps_dispatch.h' 2025-09-07T06:14:09.8280350Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-09-07T06:14:09.8281270Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-09-07T06:14:09.8282200Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-09-07T06:14:09.8283180Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8284030Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8284790Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-09-07T06:14:09.8285720Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-09-07T06:14:09.8286750Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-09-07T06:14:09.8287740Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8288550Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-09-07T06:14:09.8289390Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-09-07T06:14:09.8290220Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h' 2025-09-07T06:14:09.8291050Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-09-07T06:14:09.8291990Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-09-07T06:14:09.8293050Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-09-07T06:14:09.8293950Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-09-07T06:14:09.8294860Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-09-07T06:14:09.8295660Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-09-07T06:14:09.8296480Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-09-07T06:14:09.8297400Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-09-07T06:14:09.8298330Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8299150Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-09-07T06:14:09.8299980Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-09-07T06:14:09.8300820Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-09-07T06:14:09.8301750Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-09-07T06:14:09.8302600Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-09-07T06:14:09.8303560Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8304310Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-09-07T06:14:09.8305210Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-09-07T06:14:09.8306110Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-09-07T06:14:09.8307060Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-09-07T06:14:09.8308080Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8308850Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-09-07T06:14:09.8309670Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-09-07T06:14:09.8310520Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-09-07T06:14:09.8311380Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-09-07T06:14:09.8312180Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h' 2025-09-07T06:14:09.8313050Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-09-07T06:14:09.8314010Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-09-07T06:14:09.8315000Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8315760Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-09-07T06:14:09.8316580Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-09-07T06:14:09.8317420Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-09-07T06:14:09.8318250Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-09-07T06:14:09.8319050Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h' 2025-09-07T06:14:09.8319900Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-09-07T06:14:09.8320860Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-09-07T06:14:09.8321780Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-09-07T06:14:09.8322720Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-09-07T06:14:09.8323730Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8324490Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-09-07T06:14:09.8325320Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-09-07T06:14:09.8326140Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-09-07T06:14:09.8326980Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-09-07T06:14:09.8327840Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-09-07T06:14:09.8328820Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-09-07T06:14:09.8329770Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8330500Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-09-07T06:14:09.8331320Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-09-07T06:14:09.8332120Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-09-07T06:14:09.8332960Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-09-07T06:14:09.8333790Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-09-07T06:14:09.8334750Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-09-07T06:14:09.8335690Z adding 'torch/include/ATen/ops/add.h' 2025-09-07T06:14:09.8336660Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8337540Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8338310Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-09-07T06:14:09.8339150Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-09-07T06:14:09.8339970Z adding 'torch/include/ATen/ops/add_meta.h' 2025-09-07T06:14:09.8340830Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-09-07T06:14:09.8341630Z adding 'torch/include/ATen/ops/add_mps_dispatch.h' 2025-09-07T06:14:09.8342640Z adding 'torch/include/ATen/ops/add_native.h' 2025-09-07T06:14:09.8343790Z adding 'torch/include/ATen/ops/add_ops.h' 2025-09-07T06:14:09.8344720Z adding 'torch/include/ATen/ops/add_sparsemps_dispatch.h' 2025-09-07T06:14:09.8345590Z adding 'torch/include/ATen/ops/addbmm.h' 2025-09-07T06:14:09.8346560Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-09-07T06:14:09.8347380Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-09-07T06:14:09.8348200Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-09-07T06:14:09.8349050Z adding 'torch/include/ATen/ops/addbmm_mps_dispatch.h' 2025-09-07T06:14:09.8349950Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-09-07T06:14:09.8351010Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-09-07T06:14:09.8351940Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-09-07T06:14:09.8352950Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8353710Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-09-07T06:14:09.8354530Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-09-07T06:14:09.8355400Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-09-07T06:14:09.8356220Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-09-07T06:14:09.8357030Z adding 'torch/include/ATen/ops/addcdiv_mps_dispatch.h' 2025-09-07T06:14:09.8357860Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-09-07T06:14:09.8358870Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-09-07T06:14:09.8359770Z adding 'torch/include/ATen/ops/addcmul.h' 2025-09-07T06:14:09.8360810Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8361640Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-09-07T06:14:09.8362460Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-09-07T06:14:09.8363290Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-09-07T06:14:09.8364170Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-09-07T06:14:09.8364950Z adding 'torch/include/ATen/ops/addcmul_mps_dispatch.h' 2025-09-07T06:14:09.8365820Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-09-07T06:14:09.8366830Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-09-07T06:14:09.8367820Z adding 'torch/include/ATen/ops/addmm.h' 2025-09-07T06:14:09.8368870Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8369700Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-09-07T06:14:09.8370670Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-09-07T06:14:09.8371530Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-09-07T06:14:09.8372390Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-09-07T06:14:09.8373210Z adding 'torch/include/ATen/ops/addmm_mps_dispatch.h' 2025-09-07T06:14:09.8374180Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-09-07T06:14:09.8375310Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-09-07T06:14:09.8376270Z adding 'torch/include/ATen/ops/addmv.h' 2025-09-07T06:14:09.8377250Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8378010Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-09-07T06:14:09.8378850Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-09-07T06:14:09.8379680Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-09-07T06:14:09.8380520Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-09-07T06:14:09.8381320Z adding 'torch/include/ATen/ops/addmv_mps_dispatch.h' 2025-09-07T06:14:09.8382200Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-09-07T06:14:09.8383210Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-09-07T06:14:09.8384130Z adding 'torch/include/ATen/ops/addr.h' 2025-09-07T06:14:09.8385110Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8385920Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-09-07T06:14:09.8386760Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-09-07T06:14:09.8387580Z adding 'torch/include/ATen/ops/addr_mps_dispatch.h' 2025-09-07T06:14:09.8388460Z adding 'torch/include/ATen/ops/addr_native.h' 2025-09-07T06:14:09.8389480Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-09-07T06:14:09.8390340Z adding 'torch/include/ATen/ops/adjoint.h' 2025-09-07T06:14:09.8391290Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8392040Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-09-07T06:14:09.8392910Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-09-07T06:14:09.8394030Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-09-07T06:14:09.8394990Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-09-07T06:14:09.8395980Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8396740Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-09-07T06:14:09.8397650Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-09-07T06:14:09.8398670Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8399430Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-09-07T06:14:09.8400400Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-09-07T06:14:09.8401220Z adding 'torch/include/ATen/ops/alias.h' 2025-09-07T06:14:09.8402170Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8402970Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-09-07T06:14:09.8403940Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8404840Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8405530Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-09-07T06:14:09.8406480Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-09-07T06:14:09.8407300Z adding 'torch/include/ATen/ops/alias_native.h' 2025-09-07T06:14:09.8408180Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-09-07T06:14:09.8409010Z adding 'torch/include/ATen/ops/align_as.h' 2025-09-07T06:14:09.8409970Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8410700Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-09-07T06:14:09.8411580Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-09-07T06:14:09.8412430Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-09-07T06:14:09.8413420Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8414140Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-09-07T06:14:09.8415030Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-09-07T06:14:09.8415840Z adding 'torch/include/ATen/ops/align_to.h' 2025-09-07T06:14:09.8416800Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8417560Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-09-07T06:14:09.8418530Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-09-07T06:14:09.8419570Z adding 'torch/include/ATen/ops/all.h' 2025-09-07T06:14:09.8420910Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8421850Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8422700Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8423550Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-09-07T06:14:09.8424460Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-09-07T06:14:09.8425340Z adding 'torch/include/ATen/ops/all_meta.h' 2025-09-07T06:14:09.8426250Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-09-07T06:14:09.8427130Z adding 'torch/include/ATen/ops/all_mps_dispatch.h' 2025-09-07T06:14:09.8428070Z adding 'torch/include/ATen/ops/all_native.h' 2025-09-07T06:14:09.8429250Z adding 'torch/include/ATen/ops/all_ops.h' 2025-09-07T06:14:09.8430150Z adding 'torch/include/ATen/ops/allclose.h' 2025-09-07T06:14:09.8431120Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8431890Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-09-07T06:14:09.8432880Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-09-07T06:14:09.8433770Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-09-07T06:14:09.8434730Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8435480Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-09-07T06:14:09.8436420Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-09-07T06:14:09.8437280Z adding 'torch/include/ATen/ops/amax.h' 2025-09-07T06:14:09.8438290Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8439060Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-09-07T06:14:09.8439960Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-09-07T06:14:09.8440770Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-09-07T06:14:09.8441670Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-09-07T06:14:09.8442470Z adding 'torch/include/ATen/ops/amax_mps_dispatch.h' 2025-09-07T06:14:09.8443300Z adding 'torch/include/ATen/ops/amax_native.h' 2025-09-07T06:14:09.8444250Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-09-07T06:14:09.8445150Z adding 'torch/include/ATen/ops/amin.h' 2025-09-07T06:14:09.8446150Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8446900Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-09-07T06:14:09.8447720Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-09-07T06:14:09.8448550Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-09-07T06:14:09.8449380Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-09-07T06:14:09.8450180Z adding 'torch/include/ATen/ops/amin_mps_dispatch.h' 2025-09-07T06:14:09.8451010Z adding 'torch/include/ATen/ops/amin_native.h' 2025-09-07T06:14:09.8451930Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-09-07T06:14:09.8452880Z adding 'torch/include/ATen/ops/aminmax.h' 2025-09-07T06:14:09.8453900Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8457890Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-09-07T06:14:09.8458130Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-09-07T06:14:09.8458240Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-09-07T06:14:09.8458380Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-09-07T06:14:09.8458480Z adding 'torch/include/ATen/ops/aminmax_mps_dispatch.h' 2025-09-07T06:14:09.8458900Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-09-07T06:14:09.8459880Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-09-07T06:14:09.8460750Z adding 'torch/include/ATen/ops/and.h' 2025-09-07T06:14:09.8461720Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8462450Z adding 'torch/include/ATen/ops/and_native.h' 2025-09-07T06:14:09.8463480Z adding 'torch/include/ATen/ops/and_ops.h' 2025-09-07T06:14:09.8464340Z adding 'torch/include/ATen/ops/angle.h' 2025-09-07T06:14:09.8465210Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-09-07T06:14:09.8466020Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-09-07T06:14:09.8466820Z adding 'torch/include/ATen/ops/angle_mps_dispatch.h' 2025-09-07T06:14:09.8467660Z adding 'torch/include/ATen/ops/angle_native.h' 2025-09-07T06:14:09.8468570Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-09-07T06:14:09.8469630Z adding 'torch/include/ATen/ops/any.h' 2025-09-07T06:14:09.8470600Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8471530Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8472380Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8473210Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-09-07T06:14:09.8474080Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-09-07T06:14:09.8474940Z adding 'torch/include/ATen/ops/any_meta.h' 2025-09-07T06:14:09.8475850Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-09-07T06:14:09.8476720Z adding 'torch/include/ATen/ops/any_mps_dispatch.h' 2025-09-07T06:14:09.8477640Z adding 'torch/include/ATen/ops/any_native.h' 2025-09-07T06:14:09.8478820Z adding 'torch/include/ATen/ops/any_ops.h' 2025-09-07T06:14:09.8479940Z adding 'torch/include/ATen/ops/arange.h' 2025-09-07T06:14:09.8480980Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8481790Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-09-07T06:14:09.8482620Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-09-07T06:14:09.8483450Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-09-07T06:14:09.8484250Z adding 'torch/include/ATen/ops/arange_mps_dispatch.h' 2025-09-07T06:14:09.8485190Z adding 'torch/include/ATen/ops/arange_native.h' 2025-09-07T06:14:09.8486380Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-09-07T06:14:09.8487290Z adding 'torch/include/ATen/ops/arccos.h' 2025-09-07T06:14:09.8488250Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8489000Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-09-07T06:14:09.8489980Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-09-07T06:14:09.8490860Z adding 'torch/include/ATen/ops/arccosh.h' 2025-09-07T06:14:09.8491840Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8492640Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-09-07T06:14:09.8493610Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-09-07T06:14:09.8494500Z adding 'torch/include/ATen/ops/arcsin.h' 2025-09-07T06:14:09.8495430Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8496190Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-09-07T06:14:09.8497130Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-09-07T06:14:09.8497980Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-09-07T06:14:09.8498920Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8499650Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-09-07T06:14:09.8500580Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-09-07T06:14:09.8501450Z adding 'torch/include/ATen/ops/arctan.h' 2025-09-07T06:14:09.8502340Z adding 'torch/include/ATen/ops/arctan2.h' 2025-09-07T06:14:09.8503340Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8504050Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-09-07T06:14:09.8505030Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-09-07T06:14:09.8505970Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8506720Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-09-07T06:14:09.8507680Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-09-07T06:14:09.8508570Z adding 'torch/include/ATen/ops/arctanh.h' 2025-09-07T06:14:09.8509510Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8510240Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-09-07T06:14:09.8511150Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-09-07T06:14:09.8512040Z adding 'torch/include/ATen/ops/argmax.h' 2025-09-07T06:14:09.8513050Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8513820Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-09-07T06:14:09.8514620Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-09-07T06:14:09.8515450Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-09-07T06:14:09.8516300Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-09-07T06:14:09.8517120Z adding 'torch/include/ATen/ops/argmax_mps_dispatch.h' 2025-09-07T06:14:09.8517920Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-09-07T06:14:09.8518860Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-09-07T06:14:09.8519750Z adding 'torch/include/ATen/ops/argmin.h' 2025-09-07T06:14:09.8520750Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8521500Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-09-07T06:14:09.8522300Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-09-07T06:14:09.8523140Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-09-07T06:14:09.8523980Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-09-07T06:14:09.8524760Z adding 'torch/include/ATen/ops/argmin_mps_dispatch.h' 2025-09-07T06:14:09.8525590Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-09-07T06:14:09.8526510Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-09-07T06:14:09.8527470Z adding 'torch/include/ATen/ops/argsort.h' 2025-09-07T06:14:09.8528450Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8529230Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-09-07T06:14:09.8530290Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-09-07T06:14:09.8531110Z adding 'torch/include/ATen/ops/argwhere.h' 2025-09-07T06:14:09.8532050Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8532800Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-09-07T06:14:09.8533690Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-09-07T06:14:09.8534720Z adding 'torch/include/ATen/ops/as_strided.h' 2025-09-07T06:14:09.8535770Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8536790Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-09-07T06:14:09.8537820Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8538740Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8539500Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-09-07T06:14:09.8540460Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-09-07T06:14:09.8541370Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-09-07T06:14:09.8542220Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-09-07T06:14:09.8543030Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-09-07T06:14:09.8543840Z adding 'torch/include/ATen/ops/as_strided_mps_dispatch.h' 2025-09-07T06:14:09.8544720Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-09-07T06:14:09.8545670Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-09-07T06:14:09.8546860Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-09-07T06:14:09.8547890Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8548830Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8549590Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-09-07T06:14:09.8550590Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-09-07T06:14:09.8551440Z adding 'torch/include/ATen/ops/asin.h' 2025-09-07T06:14:09.8552440Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8553190Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-09-07T06:14:09.8554000Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-09-07T06:14:09.8554830Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-09-07T06:14:09.8555660Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-09-07T06:14:09.8556460Z adding 'torch/include/ATen/ops/asin_mps_dispatch.h' 2025-09-07T06:14:09.8557320Z adding 'torch/include/ATen/ops/asin_native.h' 2025-09-07T06:14:09.8558280Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-09-07T06:14:09.8559180Z adding 'torch/include/ATen/ops/asin_sparsemps_dispatch.h' 2025-09-07T06:14:09.8560030Z adding 'torch/include/ATen/ops/asinh.h' 2025-09-07T06:14:09.8561020Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8561740Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-09-07T06:14:09.8562570Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-09-07T06:14:09.8563390Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-09-07T06:14:09.8564210Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-09-07T06:14:09.8565020Z adding 'torch/include/ATen/ops/asinh_mps_dispatch.h' 2025-09-07T06:14:09.8565900Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-09-07T06:14:09.8566850Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-09-07T06:14:09.8567750Z adding 'torch/include/ATen/ops/asinh_sparsemps_dispatch.h' 2025-09-07T06:14:09.8568610Z adding 'torch/include/ATen/ops/atan.h' 2025-09-07T06:14:09.8569530Z adding 'torch/include/ATen/ops/atan2.h' 2025-09-07T06:14:09.8570520Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8571290Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-09-07T06:14:09.8572160Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-09-07T06:14:09.8572960Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-09-07T06:14:09.8573820Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-09-07T06:14:09.8574650Z adding 'torch/include/ATen/ops/atan2_mps_dispatch.h' 2025-09-07T06:14:09.8575470Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-09-07T06:14:09.8576440Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-09-07T06:14:09.8577430Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8578170Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-09-07T06:14:09.8578960Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-09-07T06:14:09.8579780Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-09-07T06:14:09.8580620Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-09-07T06:14:09.8581390Z adding 'torch/include/ATen/ops/atan_mps_dispatch.h' 2025-09-07T06:14:09.8582270Z adding 'torch/include/ATen/ops/atan_native.h' 2025-09-07T06:14:09.8583220Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-09-07T06:14:09.8584110Z adding 'torch/include/ATen/ops/atan_sparsemps_dispatch.h' 2025-09-07T06:14:09.8584950Z adding 'torch/include/ATen/ops/atanh.h' 2025-09-07T06:14:09.8585940Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8586680Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-09-07T06:14:09.8587510Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-09-07T06:14:09.8588310Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-09-07T06:14:09.8589160Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-09-07T06:14:09.8589970Z adding 'torch/include/ATen/ops/atanh_mps_dispatch.h' 2025-09-07T06:14:09.8590830Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-09-07T06:14:09.8591790Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-09-07T06:14:09.8592690Z adding 'torch/include/ATen/ops/atanh_sparsemps_dispatch.h' 2025-09-07T06:14:09.8593550Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-09-07T06:14:09.8594530Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8595280Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-09-07T06:14:09.8596210Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-09-07T06:14:09.8597090Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-09-07T06:14:09.8598060Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8598800Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-09-07T06:14:09.8599760Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-09-07T06:14:09.8600630Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-09-07T06:14:09.8601590Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8602340Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-09-07T06:14:09.8603250Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-09-07T06:14:09.8604210Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-09-07T06:14:09.8605210Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8606080Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8606860Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-09-07T06:14:09.8607850Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-09-07T06:14:09.8608810Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-09-07T06:14:09.8609820Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-09-07T06:14:09.8610890Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8611710Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-09-07T06:14:09.8612610Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-09-07T06:14:09.8613470Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-09-07T06:14:09.8614410Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-09-07T06:14:09.8615220Z adding 'torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h' 2025-09-07T06:14:09.8616150Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-09-07T06:14:09.8617190Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-09-07T06:14:09.8618180Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8619010Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-09-07T06:14:09.8619930Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-09-07T06:14:09.8621080Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-09-07T06:14:09.8622020Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-09-07T06:14:09.8622860Z adding 'torch/include/ATen/ops/avg_pool2d_mps_dispatch.h' 2025-09-07T06:14:09.8623800Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-09-07T06:14:09.8624810Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-09-07T06:14:09.8626180Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-09-07T06:14:09.8627190Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-09-07T06:14:09.8628280Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8629100Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-09-07T06:14:09.8630010Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-09-07T06:14:09.8630830Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-09-07T06:14:09.8631740Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-09-07T06:14:09.8632600Z adding 'torch/include/ATen/ops/avg_pool3d_backward_mps_dispatch.h' 2025-09-07T06:14:09.8633530Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-09-07T06:14:09.8634590Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-09-07T06:14:09.8635590Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8636370Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-09-07T06:14:09.8637240Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-09-07T06:14:09.8638090Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-09-07T06:14:09.8639000Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-09-07T06:14:09.8639840Z adding 'torch/include/ATen/ops/avg_pool3d_mps_dispatch.h' 2025-09-07T06:14:09.8640800Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-09-07T06:14:09.8641810Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-09-07T06:14:09.8642800Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-09-07T06:14:09.8643830Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8644610Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-09-07T06:14:09.8645540Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-09-07T06:14:09.8646390Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-09-07T06:14:09.8647280Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-09-07T06:14:09.8648120Z adding 'torch/include/ATen/ops/baddbmm_mps_dispatch.h' 2025-09-07T06:14:09.8649060Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-09-07T06:14:09.8650180Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-09-07T06:14:09.8651250Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-09-07T06:14:09.8652310Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8653100Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-09-07T06:14:09.8654170Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-09-07T06:14:09.8655050Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-09-07T06:14:09.8655980Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-09-07T06:14:09.8656920Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-09-07T06:14:09.8657780Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-09-07T06:14:09.8658700Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-09-07T06:14:09.8659720Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8660540Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-09-07T06:14:09.8661380Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-09-07T06:14:09.8662390Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-09-07T06:14:09.8663260Z adding 'torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h' 2025-09-07T06:14:09.8664160Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-09-07T06:14:09.8665230Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-09-07T06:14:09.8666180Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-09-07T06:14:09.8667230Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8668070Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-09-07T06:14:09.8668920Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-09-07T06:14:09.8669950Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-09-07T06:14:09.8670900Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8671800Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-09-07T06:14:09.8672700Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-09-07T06:14:09.8673550Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-09-07T06:14:09.8674540Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-09-07T06:14:09.8675510Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-09-07T06:14:09.8676530Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8677340Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-09-07T06:14:09.8678200Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-09-07T06:14:09.8679230Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-09-07T06:14:09.8680240Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-09-07T06:14:09.8681350Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8682200Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-09-07T06:14:09.8683070Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-09-07T06:14:09.8684130Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-09-07T06:14:09.8684990Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-09-07T06:14:09.8686010Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-09-07T06:14:09.8686970Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-09-07T06:14:09.8688040Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8688930Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-09-07T06:14:09.8689760Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-09-07T06:14:09.8690790Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-09-07T06:14:09.8691800Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-09-07T06:14:09.8692900Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8693760Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-09-07T06:14:09.8694700Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-09-07T06:14:09.8695650Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-09-07T06:14:09.8696670Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-09-07T06:14:09.8697720Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-09-07T06:14:09.8698720Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8699660Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8700430Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-09-07T06:14:09.8701290Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-09-07T06:14:09.8702180Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-09-07T06:14:09.8703020Z adding 'torch/include/ATen/ops/bernoulli_mps_dispatch.h' 2025-09-07T06:14:09.8703940Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-09-07T06:14:09.8705170Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-09-07T06:14:09.8706100Z adding 'torch/include/ATen/ops/bilinear.h' 2025-09-07T06:14:09.8707080Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8707840Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-09-07T06:14:09.8708790Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-09-07T06:14:09.8709750Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-09-07T06:14:09.8710710Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-09-07T06:14:09.8711660Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-09-07T06:14:09.8712560Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-09-07T06:14:09.8713370Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h' 2025-09-07T06:14:09.8714280Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-09-07T06:14:09.8715290Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-09-07T06:14:09.8716180Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-09-07T06:14:09.8717050Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-09-07T06:14:09.8717890Z adding 'torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h' 2025-09-07T06:14:09.8718770Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-09-07T06:14:09.8719770Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-09-07T06:14:09.8720780Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-09-07T06:14:09.8721800Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8722660Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-09-07T06:14:09.8723660Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-09-07T06:14:09.8724660Z adding 'torch/include/ATen/ops/bincount.h' 2025-09-07T06:14:09.8725680Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8726520Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-09-07T06:14:09.8727310Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-09-07T06:14:09.8728150Z adding 'torch/include/ATen/ops/bincount_mps_dispatch.h' 2025-09-07T06:14:09.8729020Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-09-07T06:14:09.8730020Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-09-07T06:14:09.8730940Z adding 'torch/include/ATen/ops/binomial.h' 2025-09-07T06:14:09.8731950Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8732750Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-09-07T06:14:09.8733600Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-09-07T06:14:09.8734450Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-09-07T06:14:09.8735410Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-09-07T06:14:09.8736440Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-09-07T06:14:09.8737430Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8738380Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8739130Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-09-07T06:14:09.8739960Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-09-07T06:14:09.8740800Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-09-07T06:14:09.8741660Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-09-07T06:14:09.8742470Z adding 'torch/include/ATen/ops/bitwise_and_mps_dispatch.h' 2025-09-07T06:14:09.8743350Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-09-07T06:14:09.8744560Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-09-07T06:14:09.8745580Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-09-07T06:14:09.8746620Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8747530Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8748290Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-09-07T06:14:09.8749140Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-09-07T06:14:09.8749970Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-09-07T06:14:09.8750860Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-09-07T06:14:09.8751660Z adding 'torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h' 2025-09-07T06:14:09.8752600Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-09-07T06:14:09.8753780Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-09-07T06:14:09.8754640Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-09-07T06:14:09.8755620Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8756370Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-09-07T06:14:09.8757180Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-09-07T06:14:09.8758000Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-09-07T06:14:09.8758870Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-09-07T06:14:09.8759690Z adding 'torch/include/ATen/ops/bitwise_not_mps_dispatch.h' 2025-09-07T06:14:09.8760520Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-09-07T06:14:09.8761470Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-09-07T06:14:09.8762450Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-09-07T06:14:09.8763470Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8764350Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8765080Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-09-07T06:14:09.8765910Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-09-07T06:14:09.8766700Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-09-07T06:14:09.8767550Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-09-07T06:14:09.8768350Z adding 'torch/include/ATen/ops/bitwise_or_mps_dispatch.h' 2025-09-07T06:14:09.8769210Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-09-07T06:14:09.8770380Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-09-07T06:14:09.8771410Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-09-07T06:14:09.8772400Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8773310Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8774030Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-09-07T06:14:09.8774860Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-09-07T06:14:09.8775670Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-09-07T06:14:09.8776520Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-09-07T06:14:09.8777330Z adding 'torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h' 2025-09-07T06:14:09.8778230Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-09-07T06:14:09.8779400Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-09-07T06:14:09.8780380Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-09-07T06:14:09.8781420Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8782330Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8783110Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-09-07T06:14:09.8783940Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-09-07T06:14:09.8784740Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-09-07T06:14:09.8785580Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-09-07T06:14:09.8786380Z adding 'torch/include/ATen/ops/bitwise_xor_mps_dispatch.h' 2025-09-07T06:14:09.8787300Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-09-07T06:14:09.8788510Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-09-07T06:14:09.8789600Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-09-07T06:14:09.8790670Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8791460Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-09-07T06:14:09.8792530Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-09-07T06:14:09.8793450Z adding 'torch/include/ATen/ops/block_diag.h' 2025-09-07T06:14:09.8794410Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8795170Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-09-07T06:14:09.8796130Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-09-07T06:14:09.8797030Z adding 'torch/include/ATen/ops/bmm.h' 2025-09-07T06:14:09.8798020Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8798770Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-09-07T06:14:09.8799660Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-09-07T06:14:09.8800480Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-09-07T06:14:09.8801370Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-09-07T06:14:09.8802210Z adding 'torch/include/ATen/ops/bmm_mps_dispatch.h' 2025-09-07T06:14:09.8803130Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-09-07T06:14:09.8804180Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-09-07T06:14:09.8805040Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-09-07T06:14:09.8806010Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8806760Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-09-07T06:14:09.8807670Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-09-07T06:14:09.8808560Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-09-07T06:14:09.8809530Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8810270Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-09-07T06:14:09.8811140Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-09-07T06:14:09.8812110Z adding 'torch/include/ATen/ops/bucketize.h' 2025-09-07T06:14:09.8813080Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8813890Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-09-07T06:14:09.8814770Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-09-07T06:14:09.8815650Z adding 'torch/include/ATen/ops/bucketize_mps_dispatch.h' 2025-09-07T06:14:09.8816560Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-09-07T06:14:09.8817590Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-09-07T06:14:09.8818450Z adding 'torch/include/ATen/ops/can_cast.h' 2025-09-07T06:14:09.8819410Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8820140Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-09-07T06:14:09.8821090Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-09-07T06:14:09.8821940Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-09-07T06:14:09.8822900Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8823650Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-09-07T06:14:09.8824530Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-09-07T06:14:09.8825450Z adding 'torch/include/ATen/ops/cat.h' 2025-09-07T06:14:09.8826440Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8827280Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8828150Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-09-07T06:14:09.8829000Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-09-07T06:14:09.8830220Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-09-07T06:14:09.8831080Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-09-07T06:14:09.8831880Z adding 'torch/include/ATen/ops/cat_mps_dispatch.h' 2025-09-07T06:14:09.8832820Z adding 'torch/include/ATen/ops/cat_native.h' 2025-09-07T06:14:09.8833850Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-09-07T06:14:09.8834770Z adding 'torch/include/ATen/ops/cauchy.h' 2025-09-07T06:14:09.8835840Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8836570Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-09-07T06:14:09.8837730Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-09-07T06:14:09.8838510Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-09-07T06:14:09.8839370Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-09-07T06:14:09.8840360Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-09-07T06:14:09.8841190Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-09-07T06:14:09.8842130Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8842910Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-09-07T06:14:09.8843860Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8844770Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8845470Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-09-07T06:14:09.8846380Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-09-07T06:14:09.8847200Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-09-07T06:14:09.8848070Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-09-07T06:14:09.8848900Z adding 'torch/include/ATen/ops/cdist.h' 2025-09-07T06:14:09.8849890Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8850640Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-09-07T06:14:09.8851560Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-09-07T06:14:09.8852440Z adding 'torch/include/ATen/ops/ceil.h' 2025-09-07T06:14:09.8853420Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8854160Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-09-07T06:14:09.8854970Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-09-07T06:14:09.8855780Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-09-07T06:14:09.8856630Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-09-07T06:14:09.8857430Z adding 'torch/include/ATen/ops/ceil_mps_dispatch.h' 2025-09-07T06:14:09.8858280Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-09-07T06:14:09.8859240Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-09-07T06:14:09.8860140Z adding 'torch/include/ATen/ops/ceil_sparsemps_dispatch.h' 2025-09-07T06:14:09.8861000Z adding 'torch/include/ATen/ops/celu.h' 2025-09-07T06:14:09.8861970Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8862770Z adding 'torch/include/ATen/ops/celu_native.h' 2025-09-07T06:14:09.8863760Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-09-07T06:14:09.8864620Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-09-07T06:14:09.8865590Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8866330Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-09-07T06:14:09.8867230Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-09-07T06:14:09.8868030Z adding 'torch/include/ATen/ops/chalf.h' 2025-09-07T06:14:09.8869000Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8869740Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-09-07T06:14:09.8870630Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-09-07T06:14:09.8871670Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-09-07T06:14:09.8872660Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8873460Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-09-07T06:14:09.8874280Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-09-07T06:14:09.8875110Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-09-07T06:14:09.8876040Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-09-07T06:14:09.8876890Z adding 'torch/include/ATen/ops/cholesky.h' 2025-09-07T06:14:09.8877770Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-09-07T06:14:09.8878590Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-09-07T06:14:09.8879480Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-09-07T06:14:09.8880340Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-09-07T06:14:09.8881180Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-09-07T06:14:09.8881970Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-09-07T06:14:09.8882910Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-09-07T06:14:09.8883770Z adding 'torch/include/ATen/ops/cholesky_mps_dispatch.h' 2025-09-07T06:14:09.8884610Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-09-07T06:14:09.8885540Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-09-07T06:14:09.8886440Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-09-07T06:14:09.8887430Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8888160Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-09-07T06:14:09.8889090Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-09-07T06:14:09.8889980Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-09-07T06:14:09.8890970Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8891720Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-09-07T06:14:09.8892650Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-09-07T06:14:09.8893440Z adding 'torch/include/ATen/ops/chunk.h' 2025-09-07T06:14:09.8894420Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8895170Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-09-07T06:14:09.8896070Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-09-07T06:14:09.8897110Z adding 'torch/include/ATen/ops/clamp.h' 2025-09-07T06:14:09.8898140Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8898950Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-09-07T06:14:09.8899840Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-09-07T06:14:09.8900810Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-09-07T06:14:09.8901810Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8902600Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-09-07T06:14:09.8903460Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-09-07T06:14:09.8904290Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-09-07T06:14:09.8905170Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-09-07T06:14:09.8905990Z adding 'torch/include/ATen/ops/clamp_max_mps_dispatch.h' 2025-09-07T06:14:09.8906860Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-09-07T06:14:09.8907950Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-09-07T06:14:09.8908810Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-09-07T06:14:09.8909760Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-09-07T06:14:09.8910730Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-09-07T06:14:09.8911760Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8912540Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-09-07T06:14:09.8913350Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-09-07T06:14:09.8914180Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-09-07T06:14:09.8915040Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-09-07T06:14:09.8915870Z adding 'torch/include/ATen/ops/clamp_min_mps_dispatch.h' 2025-09-07T06:14:09.8916720Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-09-07T06:14:09.8917830Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-09-07T06:14:09.8918750Z adding 'torch/include/ATen/ops/clamp_mps_dispatch.h' 2025-09-07T06:14:09.8919650Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-09-07T06:14:09.8920810Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-09-07T06:14:09.8921830Z adding 'torch/include/ATen/ops/clip.h' 2025-09-07T06:14:09.8922880Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8923640Z adding 'torch/include/ATen/ops/clip_native.h' 2025-09-07T06:14:09.8924790Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-09-07T06:14:09.8925690Z adding 'torch/include/ATen/ops/clone.h' 2025-09-07T06:14:09.8926710Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8927470Z adding 'torch/include/ATen/ops/clone_native.h' 2025-09-07T06:14:09.8928400Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-09-07T06:14:09.8929300Z adding 'torch/include/ATen/ops/clone_sparsemps_dispatch.h' 2025-09-07T06:14:09.8930080Z adding 'torch/include/ATen/ops/coalesce.h' 2025-09-07T06:14:09.8931030Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8931750Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-09-07T06:14:09.8932630Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-09-07T06:14:09.8933740Z adding 'torch/include/ATen/ops/col2im.h' 2025-09-07T06:14:09.8934730Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-09-07T06:14:09.8935590Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-09-07T06:14:09.8936460Z adding 'torch/include/ATen/ops/col2im_mps_dispatch.h' 2025-09-07T06:14:09.8937330Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-09-07T06:14:09.8938330Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-09-07T06:14:09.8939150Z adding 'torch/include/ATen/ops/col_indices.h' 2025-09-07T06:14:09.8940110Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8940900Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-09-07T06:14:09.8941860Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8942750Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.8943450Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-09-07T06:14:09.8944390Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-09-07T06:14:09.8945190Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-09-07T06:14:09.8946080Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-09-07T06:14:09.8946950Z adding 'torch/include/ATen/ops/column_stack.h' 2025-09-07T06:14:09.8947930Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8948680Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-09-07T06:14:09.8949610Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-09-07T06:14:09.8950450Z adding 'torch/include/ATen/ops/combinations.h' 2025-09-07T06:14:09.8951430Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8952180Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-09-07T06:14:09.8953060Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-09-07T06:14:09.8953950Z adding 'torch/include/ATen/ops/complex.h' 2025-09-07T06:14:09.8954880Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8955650Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-09-07T06:14:09.8956460Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-09-07T06:14:09.8957290Z adding 'torch/include/ATen/ops/complex_mps_dispatch.h' 2025-09-07T06:14:09.8958100Z adding 'torch/include/ATen/ops/complex_native.h' 2025-09-07T06:14:09.8959030Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-09-07T06:14:09.8963010Z adding 'torch/include/ATen/ops/concat.h' 2025-09-07T06:14:09.8963300Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8963380Z adding 'torch/include/ATen/ops/concat_native.h' 2025-09-07T06:14:09.8963460Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-09-07T06:14:09.8963650Z adding 'torch/include/ATen/ops/concatenate.h' 2025-09-07T06:14:09.8964650Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8965480Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-09-07T06:14:09.8966440Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-09-07T06:14:09.8967290Z adding 'torch/include/ATen/ops/conj.h' 2025-09-07T06:14:09.8968210Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8968970Z adding 'torch/include/ATen/ops/conj_native.h' 2025-09-07T06:14:09.8969880Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-09-07T06:14:09.8970790Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-09-07T06:14:09.8971750Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8972600Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8973390Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-09-07T06:14:09.8974200Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-09-07T06:14:09.8975020Z adding 'torch/include/ATen/ops/conj_physical_mps_dispatch.h' 2025-09-07T06:14:09.8975860Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-09-07T06:14:09.8976800Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-09-07T06:14:09.8977700Z adding 'torch/include/ATen/ops/conj_physical_sparsecsrmps_dispatch.h' 2025-09-07T06:14:09.8978520Z adding 'torch/include/ATen/ops/conj_physical_sparsemps_dispatch.h' 2025-09-07T06:14:09.8979520Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-09-07T06:14:09.8980540Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.8981350Z adding 'torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h' 2025-09-07T06:14:09.8982180Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-09-07T06:14:09.8983140Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-09-07T06:14:09.8983940Z adding 'torch/include/ATen/ops/contiguous.h' 2025-09-07T06:14:09.8984900Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8985630Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-09-07T06:14:09.8986520Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-09-07T06:14:09.8987590Z adding 'torch/include/ATen/ops/conv1d.h' 2025-09-07T06:14:09.8988640Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8989420Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-09-07T06:14:09.8990410Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-09-07T06:14:09.8991520Z adding 'torch/include/ATen/ops/conv2d.h' 2025-09-07T06:14:09.8992530Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8993320Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-09-07T06:14:09.8994370Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-09-07T06:14:09.8995400Z adding 'torch/include/ATen/ops/conv3d.h' 2025-09-07T06:14:09.8996460Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.8997270Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-09-07T06:14:09.8998230Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-09-07T06:14:09.8999460Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-09-07T06:14:09.9000590Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9001470Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-09-07T06:14:09.9002350Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-09-07T06:14:09.9003370Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-09-07T06:14:09.9004260Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-09-07T06:14:09.9005160Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-09-07T06:14:09.9006150Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9006970Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-09-07T06:14:09.9007950Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-09-07T06:14:09.9008960Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9009710Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-09-07T06:14:09.9010660Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-09-07T06:14:09.9011690Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-09-07T06:14:09.9012730Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9013510Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-09-07T06:14:09.9014480Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-09-07T06:14:09.9015480Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-09-07T06:14:09.9016520Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9017290Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-09-07T06:14:09.9018230Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-09-07T06:14:09.9019210Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-09-07T06:14:09.9020230Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9021000Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-09-07T06:14:09.9021910Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-09-07T06:14:09.9023120Z adding 'torch/include/ATen/ops/convolution.h' 2025-09-07T06:14:09.9024810Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-09-07T06:14:09.9025880Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9026730Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9027610Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-09-07T06:14:09.9028700Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-09-07T06:14:09.9030130Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-09-07T06:14:09.9031280Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9032060Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-09-07T06:14:09.9033130Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-09-07T06:14:09.9034220Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9035020Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-09-07T06:14:09.9036070Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-09-07T06:14:09.9037310Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-09-07T06:14:09.9038420Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9039220Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-09-07T06:14:09.9040220Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-09-07T06:14:09.9041070Z adding 'torch/include/ATen/ops/copy.h' 2025-09-07T06:14:09.9042090Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9042990Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9043720Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-09-07T06:14:09.9044580Z adding 'torch/include/ATen/ops/copy_native.h' 2025-09-07T06:14:09.9045570Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-09-07T06:14:09.9046520Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-09-07T06:14:09.9050830Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9051350Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-09-07T06:14:09.9052140Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-09-07T06:14:09.9053160Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-09-07T06:14:09.9054080Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_sparsemps_dispatch.h' 2025-09-07T06:14:09.9054910Z adding 'torch/include/ATen/ops/copysign.h' 2025-09-07T06:14:09.9055860Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9056760Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9057540Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-09-07T06:14:09.9058350Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-09-07T06:14:09.9059190Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-09-07T06:14:09.9060020Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-09-07T06:14:09.9060830Z adding 'torch/include/ATen/ops/copysign_mps_dispatch.h' 2025-09-07T06:14:09.9061690Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-09-07T06:14:09.9062760Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-09-07T06:14:09.9063630Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-09-07T06:14:09.9064580Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9065340Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-09-07T06:14:09.9066230Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-09-07T06:14:09.9067120Z adding 'torch/include/ATen/ops/cos.h' 2025-09-07T06:14:09.9068110Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9068890Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-09-07T06:14:09.9069700Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-09-07T06:14:09.9070510Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-09-07T06:14:09.9071370Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-09-07T06:14:09.9072220Z adding 'torch/include/ATen/ops/cos_mps_dispatch.h' 2025-09-07T06:14:09.9073080Z adding 'torch/include/ATen/ops/cos_native.h' 2025-09-07T06:14:09.9074050Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-09-07T06:14:09.9074950Z adding 'torch/include/ATen/ops/cosh.h' 2025-09-07T06:14:09.9075960Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9076710Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-09-07T06:14:09.9077520Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-09-07T06:14:09.9078350Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-09-07T06:14:09.9079230Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-09-07T06:14:09.9080040Z adding 'torch/include/ATen/ops/cosh_mps_dispatch.h' 2025-09-07T06:14:09.9080930Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-09-07T06:14:09.9081870Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-09-07T06:14:09.9082800Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-09-07T06:14:09.9083760Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9084520Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-09-07T06:14:09.9085440Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-09-07T06:14:09.9086280Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-09-07T06:14:09.9088370Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9088720Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-09-07T06:14:09.9089660Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-09-07T06:14:09.9090570Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-09-07T06:14:09.9091580Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9092360Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-09-07T06:14:09.9093200Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-09-07T06:14:09.9093990Z adding 'torch/include/ATen/ops/count_nonzero_mps_dispatch.h' 2025-09-07T06:14:09.9094850Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-09-07T06:14:09.9095890Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-09-07T06:14:09.9096770Z adding 'torch/include/ATen/ops/cov.h' 2025-09-07T06:14:09.9097690Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9098450Z adding 'torch/include/ATen/ops/cov_native.h' 2025-09-07T06:14:09.9099350Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-09-07T06:14:09.9100240Z adding 'torch/include/ATen/ops/cross.h' 2025-09-07T06:14:09.9101210Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9102140Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-09-07T06:14:09.9103130Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9103930Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-09-07T06:14:09.9104870Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-09-07T06:14:09.9105680Z adding 'torch/include/ATen/ops/cross_native.h' 2025-09-07T06:14:09.9106640Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-09-07T06:14:09.9107480Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-09-07T06:14:09.9108450Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9109250Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-09-07T06:14:09.9110200Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9111120Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9111820Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-09-07T06:14:09.9112740Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-09-07T06:14:09.9113580Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-09-07T06:14:09.9114470Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-09-07T06:14:09.9115430Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-09-07T06:14:09.9116430Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9117230Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-09-07T06:14:09.9118250Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-09-07T06:14:09.9119210Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-09-07T06:14:09.9120140Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-09-07T06:14:09.9121130Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9121970Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9122760Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-09-07T06:14:09.9123710Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-09-07T06:14:09.9124660Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9125480Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-09-07T06:14:09.9126300Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-09-07T06:14:09.9127250Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-09-07T06:14:09.9128220Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-09-07T06:14:09.9129270Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-09-07T06:14:09.9130310Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9131170Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9132010Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-09-07T06:14:09.9133080Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-09-07T06:14:09.9134030Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-09-07T06:14:09.9134890Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-09-07T06:14:09.9135970Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-09-07T06:14:09.9137220Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-09-07T06:14:09.9138430Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-09-07T06:14:09.9139520Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9140360Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-09-07T06:14:09.9141230Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-09-07T06:14:09.9142270Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-09-07T06:14:09.9143240Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-09-07T06:14:09.9144100Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-09-07T06:14:09.9145100Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-09-07T06:14:09.9146270Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-09-07T06:14:09.9147330Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9148150Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-09-07T06:14:09.9148980Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-09-07T06:14:09.9149990Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-09-07T06:14:09.9151260Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-09-07T06:14:09.9152330Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9153170Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-09-07T06:14:09.9154020Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-09-07T06:14:09.9155040Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-09-07T06:14:09.9155890Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-09-07T06:14:09.9156840Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-09-07T06:14:09.9157820Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9158630Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9159460Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-09-07T06:14:09.9160450Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-09-07T06:14:09.9161390Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9162220Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-09-07T06:14:09.9163010Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-09-07T06:14:09.9163940Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-09-07T06:14:09.9164780Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-09-07T06:14:09.9165760Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9166530Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-09-07T06:14:09.9167450Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-09-07T06:14:09.9168390Z adding 'torch/include/ATen/ops/cummax.h' 2025-09-07T06:14:09.9169400Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9170360Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9171090Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-09-07T06:14:09.9172170Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-09-07T06:14:09.9173070Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-09-07T06:14:09.9174100Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9174870Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-09-07T06:14:09.9175800Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-09-07T06:14:09.9176730Z adding 'torch/include/ATen/ops/cummin.h' 2025-09-07T06:14:09.9177750Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9178650Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9179450Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-09-07T06:14:09.9180500Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-09-07T06:14:09.9181480Z adding 'torch/include/ATen/ops/cumprod.h' 2025-09-07T06:14:09.9182400Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-09-07T06:14:09.9183380Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9184160Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-09-07T06:14:09.9185050Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-09-07T06:14:09.9186050Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9186900Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9187720Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-09-07T06:14:09.9188550Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-09-07T06:14:09.9189390Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-09-07T06:14:09.9190260Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-09-07T06:14:09.9191090Z adding 'torch/include/ATen/ops/cumprod_mps_dispatch.h' 2025-09-07T06:14:09.9191980Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-09-07T06:14:09.9193120Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-09-07T06:14:09.9194080Z adding 'torch/include/ATen/ops/cumsum.h' 2025-09-07T06:14:09.9195070Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9195900Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9196700Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-09-07T06:14:09.9197550Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-09-07T06:14:09.9198360Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-09-07T06:14:09.9199180Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-09-07T06:14:09.9200020Z adding 'torch/include/ATen/ops/cumsum_mps_dispatch.h' 2025-09-07T06:14:09.9200870Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-09-07T06:14:09.9201980Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-09-07T06:14:09.9202900Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-09-07T06:14:09.9203920Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9204630Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-09-07T06:14:09.9205560Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-09-07T06:14:09.9206360Z adding 'torch/include/ATen/ops/data.h' 2025-09-07T06:14:09.9207300Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9208040Z adding 'torch/include/ATen/ops/data_native.h' 2025-09-07T06:14:09.9208900Z adding 'torch/include/ATen/ops/data_ops.h' 2025-09-07T06:14:09.9209780Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-09-07T06:14:09.9210760Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9211540Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-09-07T06:14:09.9212490Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-09-07T06:14:09.9213390Z adding 'torch/include/ATen/ops/deg2rad_sparsemps_dispatch.h' 2025-09-07T06:14:09.9214170Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-09-07T06:14:09.9215100Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9215830Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-09-07T06:14:09.9216710Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-09-07T06:14:09.9217610Z adding 'torch/include/ATen/ops/dense_dim_sparsecsrmps_dispatch.h' 2025-09-07T06:14:09.9218410Z adding 'torch/include/ATen/ops/dense_dim_sparsemps_dispatch.h' 2025-09-07T06:14:09.9219350Z adding 'torch/include/ATen/ops/dequantize.h' 2025-09-07T06:14:09.9220320Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9221100Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-09-07T06:14:09.9221900Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-09-07T06:14:09.9222740Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-09-07T06:14:09.9223770Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-09-07T06:14:09.9224610Z adding 'torch/include/ATen/ops/det.h' 2025-09-07T06:14:09.9225570Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9226330Z adding 'torch/include/ATen/ops/det_native.h' 2025-09-07T06:14:09.9227190Z adding 'torch/include/ATen/ops/det_ops.h' 2025-09-07T06:14:09.9228040Z adding 'torch/include/ATen/ops/detach.h' 2025-09-07T06:14:09.9228970Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9229780Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-09-07T06:14:09.9230730Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9231630Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9232350Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-09-07T06:14:09.9233250Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-09-07T06:14:09.9234080Z adding 'torch/include/ATen/ops/detach_native.h' 2025-09-07T06:14:09.9234990Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-09-07T06:14:09.9235850Z adding 'torch/include/ATen/ops/diag.h' 2025-09-07T06:14:09.9236830Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9237630Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-09-07T06:14:09.9238600Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9239520Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9240220Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-09-07T06:14:09.9241160Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-09-07T06:14:09.9241990Z adding 'torch/include/ATen/ops/diag_native.h' 2025-09-07T06:14:09.9242930Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-09-07T06:14:09.9243760Z adding 'torch/include/ATen/ops/diagflat.h' 2025-09-07T06:14:09.9244710Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9245480Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-09-07T06:14:09.9246350Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-09-07T06:14:09.9247240Z adding 'torch/include/ATen/ops/diagonal.h' 2025-09-07T06:14:09.9248360Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-09-07T06:14:09.9249430Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9250210Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-09-07T06:14:09.9251190Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-09-07T06:14:09.9252110Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9252980Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9253840Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-09-07T06:14:09.9254830Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9255720Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9256470Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-09-07T06:14:09.9257420Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-09-07T06:14:09.9258540Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-09-07T06:14:09.9259540Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-09-07T06:14:09.9260500Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-09-07T06:14:09.9261520Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9262400Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9263140Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-09-07T06:14:09.9264110Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-09-07T06:14:09.9265020Z adding 'torch/include/ATen/ops/diff.h' 2025-09-07T06:14:09.9266010Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9266800Z adding 'torch/include/ATen/ops/diff_native.h' 2025-09-07T06:14:09.9267770Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-09-07T06:14:09.9268640Z adding 'torch/include/ATen/ops/digamma.h' 2025-09-07T06:14:09.9269630Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9270460Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-09-07T06:14:09.9271280Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-09-07T06:14:09.9272100Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-09-07T06:14:09.9272950Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-09-07T06:14:09.9273790Z adding 'torch/include/ATen/ops/digamma_mps_dispatch.h' 2025-09-07T06:14:09.9274610Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-09-07T06:14:09.9275570Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-09-07T06:14:09.9276510Z adding 'torch/include/ATen/ops/dist.h' 2025-09-07T06:14:09.9277510Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9278280Z adding 'torch/include/ATen/ops/dist_native.h' 2025-09-07T06:14:09.9279210Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-09-07T06:14:09.9280270Z adding 'torch/include/ATen/ops/div.h' 2025-09-07T06:14:09.9281280Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9282260Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9283060Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-09-07T06:14:09.9283950Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-09-07T06:14:09.9284830Z adding 'torch/include/ATen/ops/div_meta.h' 2025-09-07T06:14:09.9285700Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-09-07T06:14:09.9286550Z adding 'torch/include/ATen/ops/div_mps_dispatch.h' 2025-09-07T06:14:09.9287550Z adding 'torch/include/ATen/ops/div_native.h' 2025-09-07T06:14:09.9289250Z adding 'torch/include/ATen/ops/div_ops.h' 2025-09-07T06:14:09.9290130Z adding 'torch/include/ATen/ops/divide.h' 2025-09-07T06:14:09.9291180Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9292010Z adding 'torch/include/ATen/ops/divide_native.h' 2025-09-07T06:14:09.9293260Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-09-07T06:14:09.9294180Z adding 'torch/include/ATen/ops/dot.h' 2025-09-07T06:14:09.9295190Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9295990Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-09-07T06:14:09.9296850Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-09-07T06:14:09.9297690Z adding 'torch/include/ATen/ops/dot_mps_dispatch.h' 2025-09-07T06:14:09.9298570Z adding 'torch/include/ATen/ops/dot_native.h' 2025-09-07T06:14:09.9299520Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-09-07T06:14:09.9300400Z adding 'torch/include/ATen/ops/dropout.h' 2025-09-07T06:14:09.9301400Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9302220Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-09-07T06:14:09.9303200Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-09-07T06:14:09.9304090Z adding 'torch/include/ATen/ops/dsplit.h' 2025-09-07T06:14:09.9305090Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9306000Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-09-07T06:14:09.9307050Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-09-07T06:14:09.9307950Z adding 'torch/include/ATen/ops/dstack.h' 2025-09-07T06:14:09.9308960Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9309940Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-09-07T06:14:09.9310940Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-09-07T06:14:09.9311830Z adding 'torch/include/ATen/ops/einsum.h' 2025-09-07T06:14:09.9312810Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9313630Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-09-07T06:14:09.9314690Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-09-07T06:14:09.9315650Z adding 'torch/include/ATen/ops/elu.h' 2025-09-07T06:14:09.9316670Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-09-07T06:14:09.9317750Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9318730Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-09-07T06:14:09.9319620Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9320510Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-09-07T06:14:09.9321510Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-09-07T06:14:09.9322460Z adding 'torch/include/ATen/ops/elu_backward_mps_dispatch.h' 2025-09-07T06:14:09.9323380Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-09-07T06:14:09.9324460Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-09-07T06:14:09.9325510Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9326350Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-09-07T06:14:09.9327420Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-09-07T06:14:09.9328300Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-09-07T06:14:09.9329260Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-09-07T06:14:09.9330130Z adding 'torch/include/ATen/ops/elu_mps_dispatch.h' 2025-09-07T06:14:09.9331100Z adding 'torch/include/ATen/ops/elu_native.h' 2025-09-07T06:14:09.9332250Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-09-07T06:14:09.9333400Z adding 'torch/include/ATen/ops/embedding.h' 2025-09-07T06:14:09.9334470Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-09-07T06:14:09.9335530Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9336420Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-09-07T06:14:09.9337350Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-09-07T06:14:09.9338580Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-09-07T06:14:09.9339650Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9340490Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-09-07T06:14:09.9341550Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-09-07T06:14:09.9342560Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9343600Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-09-07T06:14:09.9344650Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9345470Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-09-07T06:14:09.9346300Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9347140Z adding 'torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h' 2025-09-07T06:14:09.9348000Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-09-07T06:14:09.9349000Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-09-07T06:14:09.9349830Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-09-07T06:14:09.9350800Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-09-07T06:14:09.9351720Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-09-07T06:14:09.9352720Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9353490Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-09-07T06:14:09.9354310Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-09-07T06:14:09.9355100Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-09-07T06:14:09.9355940Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-09-07T06:14:09.9356930Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-09-07T06:14:09.9357810Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-09-07T06:14:09.9358770Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9359520Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-09-07T06:14:09.9360440Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-09-07T06:14:09.9361800Z adding 'torch/include/ATen/ops/empty.h' 2025-09-07T06:14:09.9362830Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9363700Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9364550Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-09-07T06:14:09.9365450Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-09-07T06:14:09.9366450Z adding 'torch/include/ATen/ops/empty_like.h' 2025-09-07T06:14:09.9367450Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9368280Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-09-07T06:14:09.9369280Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-09-07T06:14:09.9370190Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-09-07T06:14:09.9371050Z adding 'torch/include/ATen/ops/empty_mps_dispatch.h' 2025-09-07T06:14:09.9372050Z adding 'torch/include/ATen/ops/empty_native.h' 2025-09-07T06:14:09.9373190Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-09-07T06:14:09.9374410Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-09-07T06:14:09.9375500Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9376280Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-09-07T06:14:09.9377250Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-09-07T06:14:09.9378290Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-09-07T06:14:09.9379310Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9380080Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-09-07T06:14:09.9381080Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-09-07T06:14:09.9381990Z adding 'torch/include/ATen/ops/empty_sparsemps_dispatch.h' 2025-09-07T06:14:09.9383180Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-09-07T06:14:09.9384190Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9385020Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-09-07T06:14:09.9385870Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-09-07T06:14:09.9386730Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-09-07T06:14:09.9387540Z adding 'torch/include/ATen/ops/empty_strided_mps_dispatch.h' 2025-09-07T06:14:09.9388460Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-09-07T06:14:09.9389420Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-09-07T06:14:09.9390360Z adding 'torch/include/ATen/ops/eq.h' 2025-09-07T06:14:09.9391350Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9392140Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-09-07T06:14:09.9393000Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-09-07T06:14:09.9393840Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-09-07T06:14:09.9394730Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-09-07T06:14:09.9395580Z adding 'torch/include/ATen/ops/eq_mps_dispatch.h' 2025-09-07T06:14:09.9396460Z adding 'torch/include/ATen/ops/eq_native.h' 2025-09-07T06:14:09.9397570Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-09-07T06:14:09.9398430Z adding 'torch/include/ATen/ops/equal.h' 2025-09-07T06:14:09.9399320Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-09-07T06:14:09.9400100Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-09-07T06:14:09.9400880Z adding 'torch/include/ATen/ops/equal_mps_dispatch.h' 2025-09-07T06:14:09.9401710Z adding 'torch/include/ATen/ops/equal_native.h' 2025-09-07T06:14:09.9402600Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-09-07T06:14:09.9403490Z adding 'torch/include/ATen/ops/erf.h' 2025-09-07T06:14:09.9404480Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9405250Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-09-07T06:14:09.9406060Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-09-07T06:14:09.9406870Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-09-07T06:14:09.9407700Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-09-07T06:14:09.9408490Z adding 'torch/include/ATen/ops/erf_mps_dispatch.h' 2025-09-07T06:14:09.9409340Z adding 'torch/include/ATen/ops/erf_native.h' 2025-09-07T06:14:09.9410300Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-09-07T06:14:09.9411200Z adding 'torch/include/ATen/ops/erf_sparsemps_dispatch.h' 2025-09-07T06:14:09.9412020Z adding 'torch/include/ATen/ops/erfc.h' 2025-09-07T06:14:09.9412990Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9413720Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-09-07T06:14:09.9414520Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-09-07T06:14:09.9415340Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-09-07T06:14:09.9416170Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-09-07T06:14:09.9416950Z adding 'torch/include/ATen/ops/erfc_mps_dispatch.h' 2025-09-07T06:14:09.9417760Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-09-07T06:14:09.9418740Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-09-07T06:14:09.9419610Z adding 'torch/include/ATen/ops/erfinv.h' 2025-09-07T06:14:09.9420590Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9421310Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-09-07T06:14:09.9422130Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-09-07T06:14:09.9422980Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-09-07T06:14:09.9423780Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-09-07T06:14:09.9424590Z adding 'torch/include/ATen/ops/erfinv_mps_dispatch.h' 2025-09-07T06:14:09.9425510Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-09-07T06:14:09.9426490Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-09-07T06:14:09.9427360Z adding 'torch/include/ATen/ops/exp.h' 2025-09-07T06:14:09.9428240Z adding 'torch/include/ATen/ops/exp2.h' 2025-09-07T06:14:09.9429230Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9429960Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-09-07T06:14:09.9430780Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-09-07T06:14:09.9431590Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-09-07T06:14:09.9432420Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-09-07T06:14:09.9433210Z adding 'torch/include/ATen/ops/exp2_mps_dispatch.h' 2025-09-07T06:14:09.9434050Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-09-07T06:14:09.9434990Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-09-07T06:14:09.9435980Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9436710Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-09-07T06:14:09.9437510Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-09-07T06:14:09.9438340Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-09-07T06:14:09.9439190Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-09-07T06:14:09.9439970Z adding 'torch/include/ATen/ops/exp_mps_dispatch.h' 2025-09-07T06:14:09.9440800Z adding 'torch/include/ATen/ops/exp_native.h' 2025-09-07T06:14:09.9441740Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-09-07T06:14:09.9442630Z adding 'torch/include/ATen/ops/expand.h' 2025-09-07T06:14:09.9443450Z adding 'torch/include/ATen/ops/expand_as.h' 2025-09-07T06:14:09.9444400Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9445140Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-09-07T06:14:09.9446020Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-09-07T06:14:09.9446970Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9447950Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-09-07T06:14:09.9448970Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9449900Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9450630Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-09-07T06:14:09.9452040Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-09-07T06:14:09.9453450Z adding 'torch/include/ATen/ops/expand_native.h' 2025-09-07T06:14:09.9454430Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-09-07T06:14:09.9455280Z adding 'torch/include/ATen/ops/expm1.h' 2025-09-07T06:14:09.9456310Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9457120Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-09-07T06:14:09.9457930Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-09-07T06:14:09.9458750Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-09-07T06:14:09.9459580Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-09-07T06:14:09.9460400Z adding 'torch/include/ATen/ops/expm1_mps_dispatch.h' 2025-09-07T06:14:09.9461310Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-09-07T06:14:09.9462290Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-09-07T06:14:09.9463240Z adding 'torch/include/ATen/ops/expm1_sparsemps_dispatch.h' 2025-09-07T06:14:09.9464150Z adding 'torch/include/ATen/ops/exponential.h' 2025-09-07T06:14:09.9465130Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9465950Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-09-07T06:14:09.9466790Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-09-07T06:14:09.9467580Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-09-07T06:14:09.9468370Z adding 'torch/include/ATen/ops/exponential_mps_dispatch.h' 2025-09-07T06:14:09.9469200Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-09-07T06:14:09.9470520Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-09-07T06:14:09.9471890Z adding 'torch/include/ATen/ops/eye.h' 2025-09-07T06:14:09.9472950Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9473790Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-09-07T06:14:09.9474630Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-09-07T06:14:09.9475450Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-09-07T06:14:09.9476300Z adding 'torch/include/ATen/ops/eye_mps_dispatch.h' 2025-09-07T06:14:09.9477160Z adding 'torch/include/ATen/ops/eye_native.h' 2025-09-07T06:14:09.9481390Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-09-07T06:14:09.9481660Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-09-07T06:14:09.9481830Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-09-07T06:14:09.9482000Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-09-07T06:14:09.9482280Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9482770Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-09-07T06:14:09.9483660Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-09-07T06:14:09.9484650Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9485430Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-09-07T06:14:09.9486280Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-09-07T06:14:09.9487130Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-09-07T06:14:09.9488160Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-09-07T06:14:09.9489090Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9489860Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-09-07T06:14:09.9490800Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-09-07T06:14:09.9491670Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-09-07T06:14:09.9492640Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-09-07T06:14:09.9493540Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-09-07T06:14:09.9494500Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9495240Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-09-07T06:14:09.9496140Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-09-07T06:14:09.9497100Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9497900Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-09-07T06:14:09.9498720Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-09-07T06:14:09.9499580Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-09-07T06:14:09.9500560Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-09-07T06:14:09.9501510Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9502310Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-09-07T06:14:09.9503270Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-09-07T06:14:09.9504130Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-09-07T06:14:09.9505140Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9505960Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-09-07T06:14:09.9506970Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9507740Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-09-07T06:14:09.9508740Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-09-07T06:14:09.9509540Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-09-07T06:14:09.9510530Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-09-07T06:14:09.9511390Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-09-07T06:14:09.9512350Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9513180Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-09-07T06:14:09.9514230Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9514970Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-09-07T06:14:09.9515930Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-09-07T06:14:09.9516740Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-09-07T06:14:09.9517650Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-09-07T06:14:09.9518510Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-09-07T06:14:09.9519490Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9520240Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-09-07T06:14:09.9521200Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-09-07T06:14:09.9522050Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-09-07T06:14:09.9523030Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9523770Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-09-07T06:14:09.9524690Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-09-07T06:14:09.9525550Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-09-07T06:14:09.9526550Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9527330Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-09-07T06:14:09.9528250Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-09-07T06:14:09.9529090Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-09-07T06:14:09.9530090Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9530830Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-09-07T06:14:09.9531750Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-09-07T06:14:09.9532600Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-09-07T06:14:09.9533560Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9534300Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-09-07T06:14:09.9535230Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-09-07T06:14:09.9536340Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-09-07T06:14:09.9537520Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-09-07T06:14:09.9538640Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9539350Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-09-07T06:14:09.9540320Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-09-07T06:14:09.9541340Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9542120Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-09-07T06:14:09.9543080Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-09-07T06:14:09.9544030Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-09-07T06:14:09.9545070Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9545850Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-09-07T06:14:09.9546810Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-09-07T06:14:09.9547870Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-09-07T06:14:09.9548920Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9549720Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-09-07T06:14:09.9550680Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-09-07T06:14:09.9551550Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-09-07T06:14:09.9552510Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9553260Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-09-07T06:14:09.9554160Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-09-07T06:14:09.9555200Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-09-07T06:14:09.9556290Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-09-07T06:14:09.9557340Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9558100Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-09-07T06:14:09.9559060Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-09-07T06:14:09.9560070Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9560830Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-09-07T06:14:09.9561790Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-09-07T06:14:09.9562890Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-09-07T06:14:09.9563940Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9564700Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-09-07T06:14:09.9565650Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-09-07T06:14:09.9566730Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-09-07T06:14:09.9567840Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-09-07T06:14:09.9568880Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9569660Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-09-07T06:14:09.9570650Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-09-07T06:14:09.9571690Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9572460Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-09-07T06:14:09.9573400Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-09-07T06:14:09.9574490Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-09-07T06:14:09.9575520Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9576290Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-09-07T06:14:09.9577240Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-09-07T06:14:09.9578100Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-09-07T06:14:09.9579070Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9579820Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-09-07T06:14:09.9580710Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-09-07T06:14:09.9581750Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-09-07T06:14:09.9582860Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-09-07T06:14:09.9583930Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9584680Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-09-07T06:14:09.9585660Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-09-07T06:14:09.9586680Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9587420Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-09-07T06:14:09.9588370Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-09-07T06:14:09.9589470Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-09-07T06:14:09.9590520Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9591280Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-09-07T06:14:09.9592240Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-09-07T06:14:09.9593330Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-09-07T06:14:09.9594410Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-09-07T06:14:09.9595440Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9596210Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-09-07T06:14:09.9597160Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-09-07T06:14:09.9598180Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9598940Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-09-07T06:14:09.9599880Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-09-07T06:14:09.9600980Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-09-07T06:14:09.9601990Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9602740Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-09-07T06:14:09.9603690Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-09-07T06:14:09.9604740Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-09-07T06:14:09.9605820Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-09-07T06:14:09.9606870Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9607620Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-09-07T06:14:09.9608590Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-09-07T06:14:09.9609620Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9610380Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-09-07T06:14:09.9611330Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-09-07T06:14:09.9612290Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-09-07T06:14:09.9613310Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9614140Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-09-07T06:14:09.9615130Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-09-07T06:14:09.9616190Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-09-07T06:14:09.9617270Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9618040Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-09-07T06:14:09.9619010Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-09-07T06:14:09.9619990Z adding 'torch/include/ATen/ops/fill.h' 2025-09-07T06:14:09.9621010Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9621800Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-09-07T06:14:09.9622600Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-09-07T06:14:09.9623450Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-09-07T06:14:09.9624440Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9625200Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-09-07T06:14:09.9626110Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-09-07T06:14:09.9626950Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-09-07T06:14:09.9627740Z adding 'torch/include/ATen/ops/fill_mps_dispatch.h' 2025-09-07T06:14:09.9628710Z adding 'torch/include/ATen/ops/fill_native.h' 2025-09-07T06:14:09.9629810Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-09-07T06:14:09.9630730Z adding 'torch/include/ATen/ops/fix.h' 2025-09-07T06:14:09.9631710Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9632500Z adding 'torch/include/ATen/ops/fix_native.h' 2025-09-07T06:14:09.9633460Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-09-07T06:14:09.9634380Z adding 'torch/include/ATen/ops/flatten.h' 2025-09-07T06:14:09.9635370Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9636190Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-09-07T06:14:09.9637170Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9637940Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-09-07T06:14:09.9638910Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-09-07T06:14:09.9639800Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-09-07T06:14:09.9640850Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-09-07T06:14:09.9641740Z adding 'torch/include/ATen/ops/flip.h' 2025-09-07T06:14:09.9642720Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9643520Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-09-07T06:14:09.9644330Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-09-07T06:14:09.9645180Z adding 'torch/include/ATen/ops/flip_mps_dispatch.h' 2025-09-07T06:14:09.9646010Z adding 'torch/include/ATen/ops/flip_native.h' 2025-09-07T06:14:09.9646940Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-09-07T06:14:09.9647790Z adding 'torch/include/ATen/ops/fliplr.h' 2025-09-07T06:14:09.9648730Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9649470Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-09-07T06:14:09.9650330Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-09-07T06:14:09.9651150Z adding 'torch/include/ATen/ops/flipud.h' 2025-09-07T06:14:09.9652080Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9652790Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-09-07T06:14:09.9653660Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-09-07T06:14:09.9654640Z adding 'torch/include/ATen/ops/float_power.h' 2025-09-07T06:14:09.9655670Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9656450Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-09-07T06:14:09.9657620Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-09-07T06:14:09.9658510Z adding 'torch/include/ATen/ops/floor.h' 2025-09-07T06:14:09.9659490Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9660250Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-09-07T06:14:09.9661100Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-09-07T06:14:09.9662020Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-09-07T06:14:09.9663010Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9663800Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-09-07T06:14:09.9664640Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-09-07T06:14:09.9665490Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-09-07T06:14:09.9666310Z adding 'torch/include/ATen/ops/floor_divide_mps_dispatch.h' 2025-09-07T06:14:09.9667190Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-09-07T06:14:09.9668270Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-09-07T06:14:09.9669170Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-09-07T06:14:09.9670040Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-09-07T06:14:09.9670900Z adding 'torch/include/ATen/ops/floor_mps_dispatch.h' 2025-09-07T06:14:09.9671750Z adding 'torch/include/ATen/ops/floor_native.h' 2025-09-07T06:14:09.9672740Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-09-07T06:14:09.9673600Z adding 'torch/include/ATen/ops/floor_sparsemps_dispatch.h' 2025-09-07T06:14:09.9674470Z adding 'torch/include/ATen/ops/fmax.h' 2025-09-07T06:14:09.9675440Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9676200Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-09-07T06:14:09.9677020Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-09-07T06:14:09.9677880Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-09-07T06:14:09.9678750Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-09-07T06:14:09.9679570Z adding 'torch/include/ATen/ops/fmax_mps_dispatch.h' 2025-09-07T06:14:09.9680420Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-09-07T06:14:09.9681690Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-09-07T06:14:09.9682570Z adding 'torch/include/ATen/ops/fmin.h' 2025-09-07T06:14:09.9683550Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9684270Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-09-07T06:14:09.9685100Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-09-07T06:14:09.9685910Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-09-07T06:14:09.9686750Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-09-07T06:14:09.9687550Z adding 'torch/include/ATen/ops/fmin_mps_dispatch.h' 2025-09-07T06:14:09.9688390Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-09-07T06:14:09.9689280Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-09-07T06:14:09.9690230Z adding 'torch/include/ATen/ops/fmod.h' 2025-09-07T06:14:09.9691200Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9692100Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9692850Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-09-07T06:14:09.9693660Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-09-07T06:14:09.9694520Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-09-07T06:14:09.9695360Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-09-07T06:14:09.9696180Z adding 'torch/include/ATen/ops/fmod_mps_dispatch.h' 2025-09-07T06:14:09.9697020Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-09-07T06:14:09.9698190Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-09-07T06:14:09.9699020Z adding 'torch/include/ATen/ops/frac.h' 2025-09-07T06:14:09.9700020Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9700740Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-09-07T06:14:09.9701560Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-09-07T06:14:09.9702370Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-09-07T06:14:09.9703210Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-09-07T06:14:09.9703990Z adding 'torch/include/ATen/ops/frac_mps_dispatch.h' 2025-09-07T06:14:09.9704850Z adding 'torch/include/ATen/ops/frac_native.h' 2025-09-07T06:14:09.9705790Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-09-07T06:14:09.9706690Z adding 'torch/include/ATen/ops/frac_sparsemps_dispatch.h' 2025-09-07T06:14:09.9707620Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-09-07T06:14:09.9708600Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-09-07T06:14:09.9709630Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9710410Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-09-07T06:14:09.9711270Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9712100Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-09-07T06:14:09.9712960Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-09-07T06:14:09.9713830Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-09-07T06:14:09.9714860Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-09-07T06:14:09.9715830Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9716630Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-09-07T06:14:09.9717500Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-09-07T06:14:09.9718340Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-09-07T06:14:09.9719210Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-09-07T06:14:09.9720060Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-09-07T06:14:09.9721050Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-09-07T06:14:09.9721990Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-09-07T06:14:09.9722950Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-09-07T06:14:09.9723890Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-09-07T06:14:09.9724750Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9725620Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-09-07T06:14:09.9726630Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-09-07T06:14:09.9727660Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9728420Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-09-07T06:14:09.9729290Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-09-07T06:14:09.9730960Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-09-07T06:14:09.9731850Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-09-07T06:14:09.9732710Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-09-07T06:14:09.9733790Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-09-07T06:14:09.9734640Z adding 'torch/include/ATen/ops/frexp.h' 2025-09-07T06:14:09.9735610Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9736420Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-09-07T06:14:09.9737300Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-09-07T06:14:09.9738110Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-09-07T06:14:09.9739080Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-09-07T06:14:09.9739980Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-09-07T06:14:09.9740980Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9741780Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-09-07T06:14:09.9742740Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-09-07T06:14:09.9743980Z adding 'torch/include/ATen/ops/from_blob.h' 2025-09-07T06:14:09.9745000Z adding 'torch/include/ATen/ops/from_file.h' 2025-09-07T06:14:09.9746000Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9746850Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-09-07T06:14:09.9747700Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-09-07T06:14:09.9748730Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-09-07T06:14:09.9750070Z adding 'torch/include/ATen/ops/full.h' 2025-09-07T06:14:09.9751170Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9752090Z adding 'torch/include/ATen/ops/full_like.h' 2025-09-07T06:14:09.9753110Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9753910Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-09-07T06:14:09.9754940Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-09-07T06:14:09.9755840Z adding 'torch/include/ATen/ops/full_native.h' 2025-09-07T06:14:09.9756950Z adding 'torch/include/ATen/ops/full_ops.h' 2025-09-07T06:14:09.9758030Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-09-07T06:14:09.9759020Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9759800Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-09-07T06:14:09.9760790Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-09-07T06:14:09.9761710Z adding 'torch/include/ATen/ops/gather.h' 2025-09-07T06:14:09.9762600Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-09-07T06:14:09.9763580Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9764330Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-09-07T06:14:09.9765250Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-09-07T06:14:09.9766220Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9767080Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9767920Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-09-07T06:14:09.9768730Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-09-07T06:14:09.9769580Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-09-07T06:14:09.9770400Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-09-07T06:14:09.9771200Z adding 'torch/include/ATen/ops/gather_mps_dispatch.h' 2025-09-07T06:14:09.9772080Z adding 'torch/include/ATen/ops/gather_native.h' 2025-09-07T06:14:09.9773090Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-09-07T06:14:09.9773980Z adding 'torch/include/ATen/ops/gcd.h' 2025-09-07T06:14:09.9774950Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9775710Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-09-07T06:14:09.9776530Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-09-07T06:14:09.9777350Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-09-07T06:14:09.9778180Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-09-07T06:14:09.9779010Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-09-07T06:14:09.9779980Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-09-07T06:14:09.9780870Z adding 'torch/include/ATen/ops/ge.h' 2025-09-07T06:14:09.9781870Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9782650Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-09-07T06:14:09.9783510Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-09-07T06:14:09.9784340Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-09-07T06:14:09.9785190Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-09-07T06:14:09.9786030Z adding 'torch/include/ATen/ops/ge_mps_dispatch.h' 2025-09-07T06:14:09.9786950Z adding 'torch/include/ATen/ops/ge_native.h' 2025-09-07T06:14:09.9788050Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-09-07T06:14:09.9788960Z adding 'torch/include/ATen/ops/gelu.h' 2025-09-07T06:14:09.9789910Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-09-07T06:14:09.9790950Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9791720Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-09-07T06:14:09.9792550Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9793360Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-09-07T06:14:09.9794310Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-09-07T06:14:09.9795110Z adding 'torch/include/ATen/ops/gelu_backward_mps_dispatch.h' 2025-09-07T06:14:09.9795970Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-09-07T06:14:09.9796930Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-09-07T06:14:09.9797930Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9798680Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-09-07T06:14:09.9799540Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-09-07T06:14:09.9800320Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-09-07T06:14:09.9801190Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-09-07T06:14:09.9801990Z adding 'torch/include/ATen/ops/gelu_mps_dispatch.h' 2025-09-07T06:14:09.9802920Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-09-07T06:14:09.9803870Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-09-07T06:14:09.9804770Z adding 'torch/include/ATen/ops/geometric.h' 2025-09-07T06:14:09.9805750Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9806560Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-09-07T06:14:09.9807360Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-09-07T06:14:09.9808180Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-09-07T06:14:09.9809010Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-09-07T06:14:09.9810020Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-09-07T06:14:09.9810900Z adding 'torch/include/ATen/ops/geqrf.h' 2025-09-07T06:14:09.9811810Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-09-07T06:14:09.9812640Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-09-07T06:14:09.9813460Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-09-07T06:14:09.9814400Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-09-07T06:14:09.9815270Z adding 'torch/include/ATen/ops/ger.h' 2025-09-07T06:14:09.9816260Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9816980Z adding 'torch/include/ATen/ops/ger_native.h' 2025-09-07T06:14:09.9817890Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-09-07T06:14:09.9818760Z adding 'torch/include/ATen/ops/glu.h' 2025-09-07T06:14:09.9819660Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-09-07T06:14:09.9820590Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-09-07T06:14:09.9821400Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9822300Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-09-07T06:14:09.9823290Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9824090Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-09-07T06:14:09.9824890Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-09-07T06:14:09.9825710Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-09-07T06:14:09.9826700Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-09-07T06:14:09.9827570Z adding 'torch/include/ATen/ops/glu_backward_mps_dispatch.h' 2025-09-07T06:14:09.9828400Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-09-07T06:14:09.9829350Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-09-07T06:14:09.9830300Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9831080Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-09-07T06:14:09.9831930Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-09-07T06:14:09.9832780Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-09-07T06:14:09.9833740Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9834510Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-09-07T06:14:09.9835310Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-09-07T06:14:09.9836130Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-09-07T06:14:09.9837070Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-09-07T06:14:09.9837920Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-09-07T06:14:09.9838800Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-09-07T06:14:09.9839610Z adding 'torch/include/ATen/ops/glu_mps_dispatch.h' 2025-09-07T06:14:09.9840430Z adding 'torch/include/ATen/ops/glu_native.h' 2025-09-07T06:14:09.9841350Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-09-07T06:14:09.9842390Z adding 'torch/include/ATen/ops/gradient.h' 2025-09-07T06:14:09.9843430Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9844220Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-09-07T06:14:09.9845440Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-09-07T06:14:09.9846400Z adding 'torch/include/ATen/ops/greater.h' 2025-09-07T06:14:09.9847430Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9848280Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-09-07T06:14:09.9849290Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9850100Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-09-07T06:14:09.9851160Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-09-07T06:14:09.9852040Z adding 'torch/include/ATen/ops/greater_native.h' 2025-09-07T06:14:09.9853130Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-09-07T06:14:09.9854060Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-09-07T06:14:09.9855030Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-09-07T06:14:09.9856050Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-09-07T06:14:09.9857080Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9857920Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-09-07T06:14:09.9858790Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9859720Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-09-07T06:14:09.9860710Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-09-07T06:14:09.9861690Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9862520Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-09-07T06:14:09.9863380Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-09-07T06:14:09.9864180Z adding 'torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h' 2025-09-07T06:14:09.9865060Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-09-07T06:14:09.9866040Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-09-07T06:14:09.9866970Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-09-07T06:14:09.9868000Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-09-07T06:14:09.9869050Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9869860Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-09-07T06:14:09.9870690Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9871550Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-09-07T06:14:09.9872560Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-09-07T06:14:09.9873520Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9874310Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-09-07T06:14:09.9875120Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-09-07T06:14:09.9875920Z adding 'torch/include/ATen/ops/grid_sampler_3d_mps_dispatch.h' 2025-09-07T06:14:09.9876770Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-09-07T06:14:09.9877740Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-09-07T06:14:09.9878680Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9879440Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-09-07T06:14:09.9880350Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-09-07T06:14:09.9881220Z adding 'torch/include/ATen/ops/group_norm.h' 2025-09-07T06:14:09.9882230Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9883000Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-09-07T06:14:09.9883940Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-09-07T06:14:09.9884870Z adding 'torch/include/ATen/ops/gru.h' 2025-09-07T06:14:09.9885700Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-09-07T06:14:09.9886670Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9887450Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-09-07T06:14:09.9888360Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-09-07T06:14:09.9889660Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9890460Z adding 'torch/include/ATen/ops/gru_native.h' 2025-09-07T06:14:09.9891460Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-09-07T06:14:09.9892390Z adding 'torch/include/ATen/ops/gt.h' 2025-09-07T06:14:09.9893410Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9894230Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-09-07T06:14:09.9895100Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-09-07T06:14:09.9895920Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-09-07T06:14:09.9896780Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-09-07T06:14:09.9897600Z adding 'torch/include/ATen/ops/gt_mps_dispatch.h' 2025-09-07T06:14:09.9898510Z adding 'torch/include/ATen/ops/gt_native.h' 2025-09-07T06:14:09.9899600Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-09-07T06:14:09.9900860Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-09-07T06:14:09.9902010Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9902820Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-09-07T06:14:09.9904090Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-09-07T06:14:09.9905140Z adding 'torch/include/ATen/ops/hann_window.h' 2025-09-07T06:14:09.9906170Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9906960Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-09-07T06:14:09.9908020Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-09-07T06:14:09.9908920Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-09-07T06:14:09.9909850Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-09-07T06:14:09.9910900Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9911650Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-09-07T06:14:09.9912480Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9913320Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-09-07T06:14:09.9914200Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-09-07T06:14:09.9915010Z adding 'torch/include/ATen/ops/hardshrink_backward_mps_dispatch.h' 2025-09-07T06:14:09.9915820Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-09-07T06:14:09.9916790Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-09-07T06:14:09.9917780Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9918530Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-09-07T06:14:09.9919390Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-09-07T06:14:09.9920220Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-09-07T06:14:09.9921100Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-09-07T06:14:09.9921910Z adding 'torch/include/ATen/ops/hardshrink_mps_dispatch.h' 2025-09-07T06:14:09.9922720Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-09-07T06:14:09.9923650Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-09-07T06:14:09.9924520Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-09-07T06:14:09.9925440Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-09-07T06:14:09.9926470Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9927220Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-09-07T06:14:09.9928080Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9928870Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-09-07T06:14:09.9929720Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-09-07T06:14:09.9930580Z adding 'torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h' 2025-09-07T06:14:09.9931400Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-09-07T06:14:09.9932340Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-09-07T06:14:09.9933350Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9934110Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-09-07T06:14:09.9934950Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-09-07T06:14:09.9935780Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-09-07T06:14:09.9936650Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-09-07T06:14:09.9937480Z adding 'torch/include/ATen/ops/hardsigmoid_mps_dispatch.h' 2025-09-07T06:14:09.9938330Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-09-07T06:14:09.9939310Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-09-07T06:14:09.9940170Z adding 'torch/include/ATen/ops/hardswish.h' 2025-09-07T06:14:09.9941120Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-09-07T06:14:09.9942140Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:09.9942920Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-09-07T06:14:09.9943770Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9944590Z adding 'torch/include/ATen/ops/hardswish_backward_mps_dispatch.h' 2025-09-07T06:14:09.9945430Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-09-07T06:14:09.9946390Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-09-07T06:14:09.9947250Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-09-07T06:14:09.9948100Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-09-07T06:14:09.9949030Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-09-07T06:14:09.9949880Z adding 'torch/include/ATen/ops/hardswish_mps_dispatch.h' 2025-09-07T06:14:09.9950750Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-09-07T06:14:09.9951740Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-09-07T06:14:09.9952670Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-09-07T06:14:09.9953620Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-09-07T06:14:09.9954540Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-09-07T06:14:09.9955410Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-09-07T06:14:09.9956250Z adding 'torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h' 2025-09-07T06:14:09.9957120Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-09-07T06:14:09.9958090Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-09-07T06:14:09.9958980Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-09-07T06:14:09.9959830Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-09-07T06:14:09.9960690Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-09-07T06:14:09.9961520Z adding 'torch/include/ATen/ops/hardtanh_mps_dispatch.h' 2025-09-07T06:14:09.9962370Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-09-07T06:14:09.9963360Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-09-07T06:14:09.9964290Z adding 'torch/include/ATen/ops/hash_tensor.h' 2025-09-07T06:14:09.9965330Z adding 'torch/include/ATen/ops/hash_tensor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9966090Z adding 'torch/include/ATen/ops/hash_tensor_cpu_dispatch.h' 2025-09-07T06:14:09.9966970Z adding 'torch/include/ATen/ops/hash_tensor_cuda_dispatch.h' 2025-09-07T06:14:09.9967770Z adding 'torch/include/ATen/ops/hash_tensor_meta.h' 2025-09-07T06:14:09.9968660Z adding 'torch/include/ATen/ops/hash_tensor_meta_dispatch.h' 2025-09-07T06:14:09.9969460Z adding 'torch/include/ATen/ops/hash_tensor_native.h' 2025-09-07T06:14:09.9970400Z adding 'torch/include/ATen/ops/hash_tensor_ops.h' 2025-09-07T06:14:09.9971300Z adding 'torch/include/ATen/ops/heaviside.h' 2025-09-07T06:14:09.9972310Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:09.9973060Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-09-07T06:14:09.9973900Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-09-07T06:14:09.9974720Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-09-07T06:14:09.9975560Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-09-07T06:14:09.9976390Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-09-07T06:14:09.9977360Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-09-07T06:14:09.9978270Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-09-07T06:14:09.9979260Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9980000Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-09-07T06:14:09.9980900Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-09-07T06:14:09.9981770Z adding 'torch/include/ATen/ops/histc.h' 2025-09-07T06:14:09.9982660Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-09-07T06:14:09.9983540Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-09-07T06:14:09.9984330Z adding 'torch/include/ATen/ops/histc_mps_dispatch.h' 2025-09-07T06:14:09.9985180Z adding 'torch/include/ATen/ops/histc_native.h' 2025-09-07T06:14:09.9989220Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-09-07T06:14:09.9989410Z adding 'torch/include/ATen/ops/histogram.h' 2025-09-07T06:14:09.9989520Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-09-07T06:14:09.9989630Z adding 'torch/include/ATen/ops/histogram_mps_dispatch.h' 2025-09-07T06:14:09.9989980Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-09-07T06:14:09.9991080Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-09-07T06:14:09.9992070Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-09-07T06:14:09.9993090Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9993880Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-09-07T06:14:09.9994940Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-09-07T06:14:09.9995840Z adding 'torch/include/ATen/ops/hsplit.h' 2025-09-07T06:14:09.9996800Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:09.9997540Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-09-07T06:14:09.9998500Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-09-07T06:14:09.9999390Z adding 'torch/include/ATen/ops/hspmm.h' 2025-09-07T06:14:10.0000240Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-09-07T06:14:10.0001160Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-09-07T06:14:10.0002080Z adding 'torch/include/ATen/ops/hstack.h' 2025-09-07T06:14:10.0003080Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0003860Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-09-07T06:14:10.0004800Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-09-07T06:14:10.0005730Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-09-07T06:14:10.0006660Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-09-07T06:14:10.0007680Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0008510Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-09-07T06:14:10.0009340Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-09-07T06:14:10.0010180Z adding 'torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h' 2025-09-07T06:14:10.0011020Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-09-07T06:14:10.0012020Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-09-07T06:14:10.0012870Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-09-07T06:14:10.0013810Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-09-07T06:14:10.0014600Z adding 'torch/include/ATen/ops/huber_loss_mps_dispatch.h' 2025-09-07T06:14:10.0015440Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-09-07T06:14:10.0016380Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-09-07T06:14:10.0017240Z adding 'torch/include/ATen/ops/hypot.h' 2025-09-07T06:14:10.0018250Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0019000Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-09-07T06:14:10.0019860Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-09-07T06:14:10.0020710Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-09-07T06:14:10.0021560Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-09-07T06:14:10.0022380Z adding 'torch/include/ATen/ops/hypot_mps_dispatch.h' 2025-09-07T06:14:10.0023210Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-09-07T06:14:10.0024180Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-09-07T06:14:10.0025060Z adding 'torch/include/ATen/ops/i0.h' 2025-09-07T06:14:10.0026040Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0026790Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-09-07T06:14:10.0027680Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-09-07T06:14:10.0028470Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-09-07T06:14:10.0029290Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-09-07T06:14:10.0030110Z adding 'torch/include/ATen/ops/i0_mps_dispatch.h' 2025-09-07T06:14:10.0030910Z adding 'torch/include/ATen/ops/i0_native.h' 2025-09-07T06:14:10.0031910Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-09-07T06:14:10.0032790Z adding 'torch/include/ATen/ops/igamma.h' 2025-09-07T06:14:10.0033820Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0034550Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-09-07T06:14:10.0035380Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-09-07T06:14:10.0036190Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-09-07T06:14:10.0037030Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-09-07T06:14:10.0037860Z adding 'torch/include/ATen/ops/igamma_mps_dispatch.h' 2025-09-07T06:14:10.0038720Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-09-07T06:14:10.0039680Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-09-07T06:14:10.0040570Z adding 'torch/include/ATen/ops/igammac.h' 2025-09-07T06:14:10.0041560Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0042290Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-09-07T06:14:10.0043100Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-09-07T06:14:10.0043900Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-09-07T06:14:10.0044740Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-09-07T06:14:10.0045530Z adding 'torch/include/ATen/ops/igammac_mps_dispatch.h' 2025-09-07T06:14:10.0046340Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-09-07T06:14:10.0047290Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-09-07T06:14:10.0048200Z adding 'torch/include/ATen/ops/im2col.h' 2025-09-07T06:14:10.0049130Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-09-07T06:14:10.0049950Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-09-07T06:14:10.0050770Z adding 'torch/include/ATen/ops/im2col_mps_dispatch.h' 2025-09-07T06:14:10.0051630Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-09-07T06:14:10.0052600Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-09-07T06:14:10.0053450Z adding 'torch/include/ATen/ops/imag.h' 2025-09-07T06:14:10.0054420Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0055210Z adding 'torch/include/ATen/ops/imag_native.h' 2025-09-07T06:14:10.0056010Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-09-07T06:14:10.0056910Z adding 'torch/include/ATen/ops/index.h' 2025-09-07T06:14:10.0057860Z adding 'torch/include/ATen/ops/index_add.h' 2025-09-07T06:14:10.0058870Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0059690Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0060510Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-09-07T06:14:10.0061360Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-09-07T06:14:10.0062260Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-09-07T06:14:10.0063140Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-09-07T06:14:10.0063980Z adding 'torch/include/ATen/ops/index_add_mps_dispatch.h' 2025-09-07T06:14:10.0064850Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-09-07T06:14:10.0065910Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-09-07T06:14:10.0066900Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0067710Z adding 'torch/include/ATen/ops/index_copy.h' 2025-09-07T06:14:10.0068700Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0069540Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0070360Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-09-07T06:14:10.0071190Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-09-07T06:14:10.0072070Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-09-07T06:14:10.0072950Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-09-07T06:14:10.0073770Z adding 'torch/include/ATen/ops/index_copy_mps_dispatch.h' 2025-09-07T06:14:10.0074640Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-09-07T06:14:10.0075740Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-09-07T06:14:10.0076650Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-09-07T06:14:10.0077470Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-09-07T06:14:10.0078480Z adding 'torch/include/ATen/ops/index_fill.h' 2025-09-07T06:14:10.0079530Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0080400Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0081210Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-09-07T06:14:10.0082030Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-09-07T06:14:10.0082850Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-09-07T06:14:10.0083640Z adding 'torch/include/ATen/ops/index_fill_mps_dispatch.h' 2025-09-07T06:14:10.0084530Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-09-07T06:14:10.0085950Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-09-07T06:14:10.0087050Z adding 'torch/include/ATen/ops/index_meta.h' 2025-09-07T06:14:10.0087890Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-09-07T06:14:10.0088700Z adding 'torch/include/ATen/ops/index_mps_dispatch.h' 2025-09-07T06:14:10.0089580Z adding 'torch/include/ATen/ops/index_native.h' 2025-09-07T06:14:10.0090510Z adding 'torch/include/ATen/ops/index_ops.h' 2025-09-07T06:14:10.0091460Z adding 'torch/include/ATen/ops/index_put.h' 2025-09-07T06:14:10.0092460Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0093220Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-09-07T06:14:10.0094230Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-09-07T06:14:10.0095540Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-09-07T06:14:10.0096600Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0097400Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-09-07T06:14:10.0098330Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-09-07T06:14:10.0099200Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-09-07T06:14:10.0100110Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-09-07T06:14:10.0100960Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-09-07T06:14:10.0101990Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-09-07T06:14:10.0102950Z adding 'torch/include/ATen/ops/index_select.h' 2025-09-07T06:14:10.0103950Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-09-07T06:14:10.0104990Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0105770Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-09-07T06:14:10.0106690Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-09-07T06:14:10.0107670Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0108470Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-09-07T06:14:10.0109370Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-09-07T06:14:10.0110200Z adding 'torch/include/ATen/ops/index_select_mps_dispatch.h' 2025-09-07T06:14:10.0111110Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-09-07T06:14:10.0112190Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-09-07T06:14:10.0113050Z adding 'torch/include/ATen/ops/indices.h' 2025-09-07T06:14:10.0114040Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0114800Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-09-07T06:14:10.0115760Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0116650Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0117410Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-09-07T06:14:10.0118330Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-09-07T06:14:10.0119170Z adding 'torch/include/ATen/ops/indices_native.h' 2025-09-07T06:14:10.0120060Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-09-07T06:14:10.0120960Z adding 'torch/include/ATen/ops/indices_sparsemps_dispatch.h' 2025-09-07T06:14:10.0121840Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-09-07T06:14:10.0122820Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0123540Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-09-07T06:14:10.0124440Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-09-07T06:14:10.0125210Z adding 'torch/include/ATen/ops/inner.h' 2025-09-07T06:14:10.0126170Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0126920Z adding 'torch/include/ATen/ops/inner_native.h' 2025-09-07T06:14:10.0127850Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-09-07T06:14:10.0128770Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-09-07T06:14:10.0129740Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0130500Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-09-07T06:14:10.0131450Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-09-07T06:14:10.0132300Z adding 'torch/include/ATen/ops/int_repr.h' 2025-09-07T06:14:10.0133250Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0133990Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-09-07T06:14:10.0134900Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-09-07T06:14:10.0135750Z adding 'torch/include/ATen/ops/inverse.h' 2025-09-07T06:14:10.0136730Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0137460Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-09-07T06:14:10.0138370Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-09-07T06:14:10.0139220Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-09-07T06:14:10.0140150Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0140900Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-09-07T06:14:10.0141770Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-09-07T06:14:10.0142660Z adding 'torch/include/ATen/ops/is_coalesced_sparsemps_dispatch.h' 2025-09-07T06:14:10.0143450Z adding 'torch/include/ATen/ops/is_complex.h' 2025-09-07T06:14:10.0144380Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0145130Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-09-07T06:14:10.0146030Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-09-07T06:14:10.0146840Z adding 'torch/include/ATen/ops/is_conj.h' 2025-09-07T06:14:10.0147790Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0148540Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-09-07T06:14:10.0149390Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-09-07T06:14:10.0150220Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-09-07T06:14:10.0151180Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0151960Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-09-07T06:14:10.0152840Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-09-07T06:14:10.0153700Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-09-07T06:14:10.0154610Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0155370Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-09-07T06:14:10.0156220Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-09-07T06:14:10.0157010Z adding 'torch/include/ATen/ops/is_inference.h' 2025-09-07T06:14:10.0157940Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0158660Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-09-07T06:14:10.0159500Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-09-07T06:14:10.0160300Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-09-07T06:14:10.0161200Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0161940Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-09-07T06:14:10.0162790Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-09-07T06:14:10.0163610Z adding 'torch/include/ATen/ops/is_neg.h' 2025-09-07T06:14:10.0164520Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0165250Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-09-07T06:14:10.0166090Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-09-07T06:14:10.0166930Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-09-07T06:14:10.0167870Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0168580Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-09-07T06:14:10.0169450Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-09-07T06:14:10.0170230Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-09-07T06:14:10.0171190Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0171960Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-09-07T06:14:10.0172840Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-09-07T06:14:10.0173680Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-09-07T06:14:10.0174620Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0175380Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-09-07T06:14:10.0176250Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-09-07T06:14:10.0177050Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-09-07T06:14:10.0177910Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-09-07T06:14:10.0178740Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-09-07T06:14:10.0179580Z adding 'torch/include/ATen/ops/is_set_to_mps_dispatch.h' 2025-09-07T06:14:10.0180390Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-09-07T06:14:10.0181280Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-09-07T06:14:10.0182090Z adding 'torch/include/ATen/ops/is_signed.h' 2025-09-07T06:14:10.0183020Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0183740Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-09-07T06:14:10.0184590Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-09-07T06:14:10.0185430Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-09-07T06:14:10.0186380Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0187120Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-09-07T06:14:10.0188000Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-09-07T06:14:10.0188820Z adding 'torch/include/ATen/ops/isclose.h' 2025-09-07T06:14:10.0189780Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0190520Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-09-07T06:14:10.0191440Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-09-07T06:14:10.0192270Z adding 'torch/include/ATen/ops/isfinite.h' 2025-09-07T06:14:10.0193210Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0193970Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-09-07T06:14:10.0194810Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-09-07T06:14:10.0195880Z adding 'torch/include/ATen/ops/isin.h' 2025-09-07T06:14:10.0196920Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0197750Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-09-07T06:14:10.0198660Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-09-07T06:14:10.0199520Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-09-07T06:14:10.0200430Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-09-07T06:14:10.0201300Z adding 'torch/include/ATen/ops/isin_mps_dispatch.h' 2025-09-07T06:14:10.0202220Z adding 'torch/include/ATen/ops/isin_native.h' 2025-09-07T06:14:10.0203380Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-09-07T06:14:10.0204280Z adding 'torch/include/ATen/ops/isinf.h' 2025-09-07T06:14:10.0205250Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0206020Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-09-07T06:14:10.0206960Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-09-07T06:14:10.0207880Z adding 'torch/include/ATen/ops/isinf_sparsemps_dispatch.h' 2025-09-07T06:14:10.0208700Z adding 'torch/include/ATen/ops/isnan.h' 2025-09-07T06:14:10.0209670Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0210450Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-09-07T06:14:10.0211280Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-09-07T06:14:10.0212040Z adding 'torch/include/ATen/ops/isnan_mps_dispatch.h' 2025-09-07T06:14:10.0212880Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-09-07T06:14:10.0213790Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-09-07T06:14:10.0214680Z adding 'torch/include/ATen/ops/isnan_sparsemps_dispatch.h' 2025-09-07T06:14:10.0215520Z adding 'torch/include/ATen/ops/isneginf.h' 2025-09-07T06:14:10.0216510Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0217250Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-09-07T06:14:10.0218080Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-09-07T06:14:10.0218900Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-09-07T06:14:10.0219730Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-09-07T06:14:10.0220520Z adding 'torch/include/ATen/ops/isneginf_mps_dispatch.h' 2025-09-07T06:14:10.0221420Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-09-07T06:14:10.0222320Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-09-07T06:14:10.0223210Z adding 'torch/include/ATen/ops/isneginf_sparsemps_dispatch.h' 2025-09-07T06:14:10.0224050Z adding 'torch/include/ATen/ops/isposinf.h' 2025-09-07T06:14:10.0225040Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0225750Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-09-07T06:14:10.0226560Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-09-07T06:14:10.0227370Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-09-07T06:14:10.0228190Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-09-07T06:14:10.0228980Z adding 'torch/include/ATen/ops/isposinf_mps_dispatch.h' 2025-09-07T06:14:10.0229830Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-09-07T06:14:10.0230740Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-09-07T06:14:10.0231640Z adding 'torch/include/ATen/ops/isposinf_sparsemps_dispatch.h' 2025-09-07T06:14:10.0232440Z adding 'torch/include/ATen/ops/isreal.h' 2025-09-07T06:14:10.0233390Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0234140Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-09-07T06:14:10.0235040Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-09-07T06:14:10.0235960Z adding 'torch/include/ATen/ops/istft.h' 2025-09-07T06:14:10.0237010Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0237760Z adding 'torch/include/ATen/ops/istft_native.h' 2025-09-07T06:14:10.0238750Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-09-07T06:14:10.0239580Z adding 'torch/include/ATen/ops/item.h' 2025-09-07T06:14:10.0240580Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0241320Z adding 'torch/include/ATen/ops/item_native.h' 2025-09-07T06:14:10.0242220Z adding 'torch/include/ATen/ops/item_ops.h' 2025-09-07T06:14:10.0243400Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-09-07T06:14:10.0244500Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0245330Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-09-07T06:14:10.0246530Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-09-07T06:14:10.0247450Z adding 'torch/include/ATen/ops/kl_div.h' 2025-09-07T06:14:10.0248490Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0249290Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-09-07T06:14:10.0250200Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-09-07T06:14:10.0251090Z adding 'torch/include/ATen/ops/kron.h' 2025-09-07T06:14:10.0252060Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0252840Z adding 'torch/include/ATen/ops/kron_native.h' 2025-09-07T06:14:10.0253810Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-09-07T06:14:10.0255150Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-09-07T06:14:10.0256140Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0257090Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0257930Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-09-07T06:14:10.0258800Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-09-07T06:14:10.0259650Z adding 'torch/include/ATen/ops/kthvalue_mps_dispatch.h' 2025-09-07T06:14:10.0260510Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-09-07T06:14:10.0261580Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-09-07T06:14:10.0262430Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-09-07T06:14:10.0263390Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0264150Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-09-07T06:14:10.0265040Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-09-07T06:14:10.0266050Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-09-07T06:14:10.0267030Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0267790Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-09-07T06:14:10.0268710Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-09-07T06:14:10.0269620Z adding 'torch/include/ATen/ops/lcm.h' 2025-09-07T06:14:10.0270570Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0271330Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-09-07T06:14:10.0272160Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-09-07T06:14:10.0272980Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-09-07T06:14:10.0273810Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-09-07T06:14:10.0274640Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-09-07T06:14:10.0275590Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-09-07T06:14:10.0276480Z adding 'torch/include/ATen/ops/ldexp.h' 2025-09-07T06:14:10.0277450Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0278190Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-09-07T06:14:10.0279160Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-09-07T06:14:10.0280080Z adding 'torch/include/ATen/ops/le.h' 2025-09-07T06:14:10.0281060Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0281860Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-09-07T06:14:10.0282710Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-09-07T06:14:10.0283530Z adding 'torch/include/ATen/ops/le_meta.h' 2025-09-07T06:14:10.0284380Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-09-07T06:14:10.0285210Z adding 'torch/include/ATen/ops/le_mps_dispatch.h' 2025-09-07T06:14:10.0286120Z adding 'torch/include/ATen/ops/le_native.h' 2025-09-07T06:14:10.0287210Z adding 'torch/include/ATen/ops/le_ops.h' 2025-09-07T06:14:10.0288130Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-09-07T06:14:10.0289090Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-09-07T06:14:10.0290150Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0290980Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-09-07T06:14:10.0291800Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-09-07T06:14:10.0292630Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-09-07T06:14:10.0293520Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-09-07T06:14:10.0294350Z adding 'torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h' 2025-09-07T06:14:10.0295230Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-09-07T06:14:10.0296210Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-09-07T06:14:10.0297200Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0298320Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-09-07T06:14:10.0299200Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-09-07T06:14:10.0300030Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-09-07T06:14:10.0300890Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-09-07T06:14:10.0301710Z adding 'torch/include/ATen/ops/leaky_relu_mps_dispatch.h' 2025-09-07T06:14:10.0302580Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-09-07T06:14:10.0303630Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-09-07T06:14:10.0304580Z adding 'torch/include/ATen/ops/lerp.h' 2025-09-07T06:14:10.0305620Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0306410Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-09-07T06:14:10.0307260Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-09-07T06:14:10.0308090Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-09-07T06:14:10.0309010Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-09-07T06:14:10.0309820Z adding 'torch/include/ATen/ops/lerp_mps_dispatch.h' 2025-09-07T06:14:10.0310670Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-09-07T06:14:10.0311820Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-09-07T06:14:10.0312760Z adding 'torch/include/ATen/ops/less.h' 2025-09-07T06:14:10.0313750Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0314610Z adding 'torch/include/ATen/ops/less_equal.h' 2025-09-07T06:14:10.0315590Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0316370Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-09-07T06:14:10.0317460Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-09-07T06:14:10.0318310Z adding 'torch/include/ATen/ops/less_native.h' 2025-09-07T06:14:10.0319390Z adding 'torch/include/ATen/ops/less_ops.h' 2025-09-07T06:14:10.0320270Z adding 'torch/include/ATen/ops/lgamma.h' 2025-09-07T06:14:10.0321280Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0322010Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-09-07T06:14:10.0322850Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-09-07T06:14:10.0323690Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-09-07T06:14:10.0324520Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-09-07T06:14:10.0325360Z adding 'torch/include/ATen/ops/lgamma_mps_dispatch.h' 2025-09-07T06:14:10.0326220Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-09-07T06:14:10.0327110Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-09-07T06:14:10.0327970Z adding 'torch/include/ATen/ops/lift.h' 2025-09-07T06:14:10.0328900Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0329660Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-09-07T06:14:10.0330620Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0331380Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-09-07T06:14:10.0332350Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0333240Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0333950Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-09-07T06:14:10.0334900Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-09-07T06:14:10.0335700Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-09-07T06:14:10.0336590Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-09-07T06:14:10.0337410Z adding 'torch/include/ATen/ops/lift_native.h' 2025-09-07T06:14:10.0338350Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-09-07T06:14:10.0339260Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-09-07T06:14:10.0340240Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0341080Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-09-07T06:14:10.0342110Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0342910Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-09-07T06:14:10.0343740Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-09-07T06:14:10.0344570Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-09-07T06:14:10.0345440Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-09-07T06:14:10.0346250Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_mps_dispatch.h' 2025-09-07T06:14:10.0347070Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-09-07T06:14:10.0348040Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-09-07T06:14:10.0348890Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-09-07T06:14:10.0349820Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-09-07T06:14:10.0350750Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-09-07T06:14:10.0351820Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0352570Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-09-07T06:14:10.0353600Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-09-07T06:14:10.0354530Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-09-07T06:14:10.0355580Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0356370Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-09-07T06:14:10.0357230Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-09-07T06:14:10.0358060Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-09-07T06:14:10.0358900Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-09-07T06:14:10.0359720Z adding 'torch/include/ATen/ops/linalg_cross_mps_dispatch.h' 2025-09-07T06:14:10.0360550Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-09-07T06:14:10.0361520Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-09-07T06:14:10.0362440Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-09-07T06:14:10.0363430Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0364190Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-09-07T06:14:10.0365130Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-09-07T06:14:10.0366010Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-09-07T06:14:10.0367020Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0367740Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-09-07T06:14:10.0368680Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-09-07T06:14:10.0369570Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-09-07T06:14:10.0370460Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-09-07T06:14:10.0371290Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-09-07T06:14:10.0372150Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-09-07T06:14:10.0373030Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-09-07T06:14:10.0373970Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-09-07T06:14:10.0374960Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0375760Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-09-07T06:14:10.0376720Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-09-07T06:14:10.0377600Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-09-07T06:14:10.0378550Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0379340Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-09-07T06:14:10.0380160Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-09-07T06:14:10.0380970Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-09-07T06:14:10.0381880Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-09-07T06:14:10.0382750Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-09-07T06:14:10.0383740Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0384500Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-09-07T06:14:10.0385410Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-09-07T06:14:10.0386350Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-09-07T06:14:10.0387290Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-09-07T06:14:10.0388070Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-09-07T06:14:10.0388910Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-09-07T06:14:10.0389830Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-09-07T06:14:10.0390640Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-09-07T06:14:10.0391610Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0392500Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-09-07T06:14:10.0393450Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0394210Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-09-07T06:14:10.0395070Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-09-07T06:14:10.0395890Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-09-07T06:14:10.0396740Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-09-07T06:14:10.0397550Z adding 'torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h' 2025-09-07T06:14:10.0398380Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-09-07T06:14:10.0399350Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-09-07T06:14:10.0400200Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-09-07T06:14:10.0401110Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-09-07T06:14:10.0402030Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-09-07T06:14:10.0403020Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0403870Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-09-07T06:14:10.0404900Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0405690Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-09-07T06:14:10.0406550Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-09-07T06:14:10.0407360Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-09-07T06:14:10.0408230Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-09-07T06:14:10.0409070Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-09-07T06:14:10.0410070Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-09-07T06:14:10.0410930Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-09-07T06:14:10.0411870Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-09-07T06:14:10.0412800Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-09-07T06:14:10.0413820Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0414610Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-09-07T06:14:10.0415430Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-09-07T06:14:10.0416240Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-09-07T06:14:10.0417100Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-09-07T06:14:10.0417900Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-09-07T06:14:10.0418860Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-09-07T06:14:10.0419850Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-09-07T06:14:10.0420840Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0421670Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-09-07T06:14:10.0422540Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-09-07T06:14:10.0423400Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-09-07T06:14:10.0424410Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-09-07T06:14:10.0425330Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-09-07T06:14:10.0426340Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0427110Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-09-07T06:14:10.0428020Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-09-07T06:14:10.0428910Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-09-07T06:14:10.0429890Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0430760Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-09-07T06:14:10.0431820Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0432580Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-09-07T06:14:10.0433410Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-09-07T06:14:10.0434270Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-09-07T06:14:10.0435150Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-09-07T06:14:10.0436030Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_mps_dispatch.h' 2025-09-07T06:14:10.0436880Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-09-07T06:14:10.0437870Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-09-07T06:14:10.0438780Z adding 'torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h' 2025-09-07T06:14:10.0439620Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-09-07T06:14:10.0440590Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-09-07T06:14:10.0441420Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-09-07T06:14:10.0442290Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-09-07T06:14:10.0443120Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-09-07T06:14:10.0444080Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-09-07T06:14:10.0445010Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-09-07T06:14:10.0446040Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0446810Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-09-07T06:14:10.0447640Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-09-07T06:14:10.0448490Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-09-07T06:14:10.0449350Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-09-07T06:14:10.0450170Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-09-07T06:14:10.0451150Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-09-07T06:14:10.0452030Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-09-07T06:14:10.0452990Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0453760Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-09-07T06:14:10.0454680Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-09-07T06:14:10.0455570Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-09-07T06:14:10.0456520Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0457300Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-09-07T06:14:10.0458140Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-09-07T06:14:10.0458960Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-09-07T06:14:10.0459910Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-09-07T06:14:10.0460940Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-09-07T06:14:10.0462020Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0462820Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-09-07T06:14:10.0463930Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-09-07T06:14:10.0464840Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-09-07T06:14:10.0465890Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0466670Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-09-07T06:14:10.0467580Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-09-07T06:14:10.0468730Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-09-07T06:14:10.0469850Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0470690Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-09-07T06:14:10.0471950Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-09-07T06:14:10.0472900Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-09-07T06:14:10.0473900Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0474670Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-09-07T06:14:10.0475640Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-09-07T06:14:10.0476660Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-09-07T06:14:10.0477700Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0478530Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-09-07T06:14:10.0479620Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-09-07T06:14:10.0480710Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-09-07T06:14:10.0481740Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0482700Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0483590Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0484410Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-09-07T06:14:10.0488900Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-09-07T06:14:10.0489110Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-09-07T06:14:10.0489320Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0489470Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-09-07T06:14:10.0489580Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-09-07T06:14:10.0489920Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-09-07T06:14:10.0490810Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-09-07T06:14:10.0491630Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-09-07T06:14:10.0492600Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-09-07T06:14:10.0493530Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-09-07T06:14:10.0494550Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0495310Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-09-07T06:14:10.0496280Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-09-07T06:14:10.0497160Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-09-07T06:14:10.0498180Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0499010Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-09-07T06:14:10.0500020Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0500780Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-09-07T06:14:10.0501770Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-09-07T06:14:10.0502620Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-09-07T06:14:10.0503570Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-09-07T06:14:10.0504520Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-09-07T06:14:10.0505840Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-09-07T06:14:10.0506720Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-09-07T06:14:10.0507610Z adding 'torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h' 2025-09-07T06:14:10.0508460Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-09-07T06:14:10.0509450Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-09-07T06:14:10.0510350Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-09-07T06:14:10.0511370Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0512140Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-09-07T06:14:10.0513140Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-09-07T06:14:10.0514040Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-09-07T06:14:10.0515070Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0515810Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-09-07T06:14:10.0516760Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-09-07T06:14:10.0517650Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-09-07T06:14:10.0518670Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0519430Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-09-07T06:14:10.0520370Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-09-07T06:14:10.0521300Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-09-07T06:14:10.0522330Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0523100Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-09-07T06:14:10.0524060Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-09-07T06:14:10.0524990Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-09-07T06:14:10.0526010Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0526750Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-09-07T06:14:10.0527640Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-09-07T06:14:10.0528540Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-09-07T06:14:10.0529520Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0530330Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-09-07T06:14:10.0531230Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-09-07T06:14:10.0532200Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-09-07T06:14:10.0533220Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0534050Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-09-07T06:14:10.0534920Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-09-07T06:14:10.0535760Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-09-07T06:14:10.0536670Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-09-07T06:14:10.0537530Z adding 'torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h' 2025-09-07T06:14:10.0538410Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-09-07T06:14:10.0539420Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-09-07T06:14:10.0540320Z adding 'torch/include/ATen/ops/linear.h' 2025-09-07T06:14:10.0541300Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-09-07T06:14:10.0542340Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0543160Z adding 'torch/include/ATen/ops/linear_backward_mps_dispatch.h' 2025-09-07T06:14:10.0544080Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-09-07T06:14:10.0545100Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-09-07T06:14:10.0546050Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0546960Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0547800Z adding 'torch/include/ATen/ops/linear_mps_dispatch.h' 2025-09-07T06:14:10.0548700Z adding 'torch/include/ATen/ops/linear_native.h' 2025-09-07T06:14:10.0549650Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-09-07T06:14:10.0551030Z adding 'torch/include/ATen/ops/linspace.h' 2025-09-07T06:14:10.0552420Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0553240Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-09-07T06:14:10.0554110Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-09-07T06:14:10.0555000Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-09-07T06:14:10.0555930Z adding 'torch/include/ATen/ops/linspace_mps_dispatch.h' 2025-09-07T06:14:10.0556970Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-09-07T06:14:10.0558660Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-09-07T06:14:10.0559390Z adding 'torch/include/ATen/ops/log.h' 2025-09-07T06:14:10.0560490Z adding 'torch/include/ATen/ops/log10.h' 2025-09-07T06:14:10.0561560Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0562330Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-09-07T06:14:10.0563220Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-09-07T06:14:10.0564190Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-09-07T06:14:10.0565180Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-09-07T06:14:10.0566020Z adding 'torch/include/ATen/ops/log10_mps_dispatch.h' 2025-09-07T06:14:10.0566880Z adding 'torch/include/ATen/ops/log10_native.h' 2025-09-07T06:14:10.0567920Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-09-07T06:14:10.0568940Z adding 'torch/include/ATen/ops/log1p.h' 2025-09-07T06:14:10.0570000Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0570790Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-09-07T06:14:10.0571680Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-09-07T06:14:10.0572620Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-09-07T06:14:10.0573530Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-09-07T06:14:10.0574390Z adding 'torch/include/ATen/ops/log1p_mps_dispatch.h' 2025-09-07T06:14:10.0575400Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-09-07T06:14:10.0576360Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-09-07T06:14:10.0577360Z adding 'torch/include/ATen/ops/log1p_sparsemps_dispatch.h' 2025-09-07T06:14:10.0578260Z adding 'torch/include/ATen/ops/log2.h' 2025-09-07T06:14:10.0579340Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0580220Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-09-07T06:14:10.0581140Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-09-07T06:14:10.0581970Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-09-07T06:14:10.0582830Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-09-07T06:14:10.0583650Z adding 'torch/include/ATen/ops/log2_mps_dispatch.h' 2025-09-07T06:14:10.0584480Z adding 'torch/include/ATen/ops/log2_native.h' 2025-09-07T06:14:10.0585420Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-09-07T06:14:10.0586420Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0587160Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-09-07T06:14:10.0587950Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-09-07T06:14:10.0588770Z adding 'torch/include/ATen/ops/log_meta.h' 2025-09-07T06:14:10.0589600Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-09-07T06:14:10.0590410Z adding 'torch/include/ATen/ops/log_mps_dispatch.h' 2025-09-07T06:14:10.0591280Z adding 'torch/include/ATen/ops/log_native.h' 2025-09-07T06:14:10.0592480Z adding 'torch/include/ATen/ops/log_normal.h' 2025-09-07T06:14:10.0593520Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0594320Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-09-07T06:14:10.0595140Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-09-07T06:14:10.0595930Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-09-07T06:14:10.0596760Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-09-07T06:14:10.0597770Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-09-07T06:14:10.0598730Z adding 'torch/include/ATen/ops/log_ops.h' 2025-09-07T06:14:10.0599630Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-09-07T06:14:10.0600580Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-09-07T06:14:10.0601520Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-09-07T06:14:10.0602380Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-09-07T06:14:10.0603260Z adding 'torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h' 2025-09-07T06:14:10.0604090Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-09-07T06:14:10.0605100Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-09-07T06:14:10.0606070Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0606920Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-09-07T06:14:10.0607850Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-09-07T06:14:10.0608670Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-09-07T06:14:10.0609490Z adding 'torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h' 2025-09-07T06:14:10.0610370Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-09-07T06:14:10.0611400Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-09-07T06:14:10.0612270Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-09-07T06:14:10.0613220Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-09-07T06:14:10.0614190Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-09-07T06:14:10.0615170Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0616050Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0616820Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-09-07T06:14:10.0617800Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-09-07T06:14:10.0618740Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-09-07T06:14:10.0619610Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-09-07T06:14:10.0620620Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0621390Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-09-07T06:14:10.0622210Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-09-07T06:14:10.0623020Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-09-07T06:14:10.0623860Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-09-07T06:14:10.0624660Z adding 'torch/include/ATen/ops/logaddexp2_mps_dispatch.h' 2025-09-07T06:14:10.0625490Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-09-07T06:14:10.0626430Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-09-07T06:14:10.0627420Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0628160Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-09-07T06:14:10.0628990Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-09-07T06:14:10.0629750Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-09-07T06:14:10.0630590Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-09-07T06:14:10.0631390Z adding 'torch/include/ATen/ops/logaddexp_mps_dispatch.h' 2025-09-07T06:14:10.0632210Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-09-07T06:14:10.0633150Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-09-07T06:14:10.0634100Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-09-07T06:14:10.0635090Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0635990Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0636750Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-09-07T06:14:10.0637770Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-09-07T06:14:10.0638620Z adding 'torch/include/ATen/ops/logdet.h' 2025-09-07T06:14:10.0639570Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0640300Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-09-07T06:14:10.0641220Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-09-07T06:14:10.0642100Z adding 'torch/include/ATen/ops/logical_and.h' 2025-09-07T06:14:10.0643040Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0643890Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-09-07T06:14:10.0644670Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-09-07T06:14:10.0645470Z adding 'torch/include/ATen/ops/logical_and_mps_dispatch.h' 2025-09-07T06:14:10.0646310Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-09-07T06:14:10.0647280Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-09-07T06:14:10.0648190Z adding 'torch/include/ATen/ops/logical_not.h' 2025-09-07T06:14:10.0649130Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0649920Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-09-07T06:14:10.0650720Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-09-07T06:14:10.0651520Z adding 'torch/include/ATen/ops/logical_not_mps_dispatch.h' 2025-09-07T06:14:10.0652370Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-09-07T06:14:10.0653320Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-09-07T06:14:10.0654200Z adding 'torch/include/ATen/ops/logical_or.h' 2025-09-07T06:14:10.0655120Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0655870Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-09-07T06:14:10.0656650Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-09-07T06:14:10.0657460Z adding 'torch/include/ATen/ops/logical_or_mps_dispatch.h' 2025-09-07T06:14:10.0658280Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-09-07T06:14:10.0659280Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-09-07T06:14:10.0660140Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-09-07T06:14:10.0661090Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0661850Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-09-07T06:14:10.0662660Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-09-07T06:14:10.0663470Z adding 'torch/include/ATen/ops/logical_xor_mps_dispatch.h' 2025-09-07T06:14:10.0664280Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-09-07T06:14:10.0665260Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-09-07T06:14:10.0666170Z adding 'torch/include/ATen/ops/logit.h' 2025-09-07T06:14:10.0667100Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-09-07T06:14:10.0668120Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0668910Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-09-07T06:14:10.0669710Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-09-07T06:14:10.0670540Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-09-07T06:14:10.0671410Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-09-07T06:14:10.0672230Z adding 'torch/include/ATen/ops/logit_backward_mps_dispatch.h' 2025-09-07T06:14:10.0673050Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-09-07T06:14:10.0674020Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-09-07T06:14:10.0674890Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-09-07T06:14:10.0675730Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-09-07T06:14:10.0676570Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-09-07T06:14:10.0677410Z adding 'torch/include/ATen/ops/logit_mps_dispatch.h' 2025-09-07T06:14:10.0678240Z adding 'torch/include/ATen/ops/logit_native.h' 2025-09-07T06:14:10.0679230Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-09-07T06:14:10.0680560Z adding 'torch/include/ATen/ops/logspace.h' 2025-09-07T06:14:10.0682770Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0683860Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-09-07T06:14:10.0684910Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-09-07T06:14:10.0685840Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-09-07T06:14:10.0686860Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-09-07T06:14:10.0688840Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-09-07T06:14:10.0689490Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-09-07T06:14:10.0690480Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0691480Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0692390Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0693240Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-09-07T06:14:10.0694320Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-09-07T06:14:10.0695290Z adding 'torch/include/ATen/ops/lshift.h' 2025-09-07T06:14:10.0696380Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0697220Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-09-07T06:14:10.0698080Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-09-07T06:14:10.0698960Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-09-07T06:14:10.0699840Z adding 'torch/include/ATen/ops/lshift_mps_dispatch.h' 2025-09-07T06:14:10.0700730Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-09-07T06:14:10.0701880Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-09-07T06:14:10.0702870Z adding 'torch/include/ATen/ops/lstm.h' 2025-09-07T06:14:10.0703870Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-09-07T06:14:10.0704940Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0705700Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-09-07T06:14:10.0706690Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-09-07T06:14:10.0707770Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0708810Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-09-07T06:14:10.0709900Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0710790Z adding 'torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h' 2025-09-07T06:14:10.0711800Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-09-07T06:14:10.0713030Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-09-07T06:14:10.0713920Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-09-07T06:14:10.0714980Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-09-07T06:14:10.0716020Z adding 'torch/include/ATen/ops/lt.h' 2025-09-07T06:14:10.0717080Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0717880Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-09-07T06:14:10.0719110Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-09-07T06:14:10.0720070Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-09-07T06:14:10.0720990Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-09-07T06:14:10.0721890Z adding 'torch/include/ATen/ops/lt_mps_dispatch.h' 2025-09-07T06:14:10.0722830Z adding 'torch/include/ATen/ops/lt_native.h' 2025-09-07T06:14:10.0724030Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-09-07T06:14:10.0724970Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-09-07T06:14:10.0725990Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0726780Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-09-07T06:14:10.0727850Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-09-07T06:14:10.0728780Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-09-07T06:14:10.0729840Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0730650Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-09-07T06:14:10.0731550Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-09-07T06:14:10.0732400Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-09-07T06:14:10.0733290Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-09-07T06:14:10.0734130Z adding 'torch/include/ATen/ops/lu_unpack_mps_dispatch.h' 2025-09-07T06:14:10.0735100Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-09-07T06:14:10.0736120Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-09-07T06:14:10.0736980Z adding 'torch/include/ATen/ops/mH.h' 2025-09-07T06:14:10.0737930Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0738760Z adding 'torch/include/ATen/ops/mH_native.h' 2025-09-07T06:14:10.0739680Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-09-07T06:14:10.0740530Z adding 'torch/include/ATen/ops/mT.h' 2025-09-07T06:14:10.0741480Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0742420Z adding 'torch/include/ATen/ops/mT_native.h' 2025-09-07T06:14:10.0743380Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-09-07T06:14:10.0744440Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-09-07T06:14:10.0745410Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0746270Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-09-07T06:14:10.0747280Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-09-07T06:14:10.0748280Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-09-07T06:14:10.0749320Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0750260Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-09-07T06:14:10.0751230Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-09-07T06:14:10.0752130Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-09-07T06:14:10.0752920Z adding 'torch/include/ATen/ops/masked_fill_mps_dispatch.h' 2025-09-07T06:14:10.0753900Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-09-07T06:14:10.0755100Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-09-07T06:14:10.0756040Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-09-07T06:14:10.0757010Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-09-07T06:14:10.0758080Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0758910Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-09-07T06:14:10.0759860Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-09-07T06:14:10.0760950Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0761870Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-09-07T06:14:10.0762800Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-09-07T06:14:10.0763620Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-09-07T06:14:10.0764470Z adding 'torch/include/ATen/ops/masked_scatter_mps_dispatch.h' 2025-09-07T06:14:10.0765400Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-09-07T06:14:10.0766440Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-09-07T06:14:10.0767370Z adding 'torch/include/ATen/ops/masked_select.h' 2025-09-07T06:14:10.0768270Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-09-07T06:14:10.0769330Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0770110Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-09-07T06:14:10.0771120Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-09-07T06:14:10.0772100Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-09-07T06:14:10.0773010Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-09-07T06:14:10.0773880Z adding 'torch/include/ATen/ops/masked_select_mps_dispatch.h' 2025-09-07T06:14:10.0774760Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-09-07T06:14:10.0775750Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-09-07T06:14:10.0776780Z adding 'torch/include/ATen/ops/matmul.h' 2025-09-07T06:14:10.0777780Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-09-07T06:14:10.0778850Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0779600Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-09-07T06:14:10.0780670Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-09-07T06:14:10.0781660Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0782420Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-09-07T06:14:10.0783380Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-09-07T06:14:10.0784280Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-09-07T06:14:10.0785250Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0785980Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-09-07T06:14:10.0786870Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-09-07T06:14:10.0787820Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-09-07T06:14:10.0788750Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-09-07T06:14:10.0789780Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0790590Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-09-07T06:14:10.0791550Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-09-07T06:14:10.0792490Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0793250Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-09-07T06:14:10.0794130Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-09-07T06:14:10.0795100Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-09-07T06:14:10.0796080Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0796840Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-09-07T06:14:10.0797770Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-09-07T06:14:10.0798910Z adding 'torch/include/ATen/ops/max.h' 2025-09-07T06:14:10.0799970Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0800840Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0801680Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-09-07T06:14:10.0802610Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-09-07T06:14:10.0803550Z adding 'torch/include/ATen/ops/max_meta.h' 2025-09-07T06:14:10.0804440Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-09-07T06:14:10.0805320Z adding 'torch/include/ATen/ops/max_mps_dispatch.h' 2025-09-07T06:14:10.0806360Z adding 'torch/include/ATen/ops/max_native.h' 2025-09-07T06:14:10.0807580Z adding 'torch/include/ATen/ops/max_ops.h' 2025-09-07T06:14:10.0808510Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-09-07T06:14:10.0809500Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0810320Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-09-07T06:14:10.0811260Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-09-07T06:14:10.0812210Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-09-07T06:14:10.0813190Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0814050Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-09-07T06:14:10.0815000Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-09-07T06:14:10.0815840Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-09-07T06:14:10.0816840Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-09-07T06:14:10.0817960Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0818790Z adding 'torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h' 2025-09-07T06:14:10.0819670Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-09-07T06:14:10.0820660Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-09-07T06:14:10.0821690Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0822530Z adding 'torch/include/ATen/ops/max_pool2d_mps_dispatch.h' 2025-09-07T06:14:10.0823330Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-09-07T06:14:10.0824270Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-09-07T06:14:10.0825310Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-09-07T06:14:10.0826340Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-09-07T06:14:10.0827400Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0828210Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-09-07T06:14:10.0829150Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-09-07T06:14:10.0830040Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-09-07T06:14:10.0830900Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-09-07T06:14:10.0831740Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h' 2025-09-07T06:14:10.0832700Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-09-07T06:14:10.0833720Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-09-07T06:14:10.0834740Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0835630Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-09-07T06:14:10.0836650Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-09-07T06:14:10.0837470Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-09-07T06:14:10.0838360Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-09-07T06:14:10.0839280Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h' 2025-09-07T06:14:10.0840250Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-09-07T06:14:10.0841310Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-09-07T06:14:10.0842170Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-09-07T06:14:10.0843130Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0844000Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-09-07T06:14:10.0844930Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-09-07T06:14:10.0845950Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-09-07T06:14:10.0847050Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-09-07T06:14:10.0848050Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-09-07T06:14:10.0848950Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-09-07T06:14:10.0849760Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_mps_dispatch.h' 2025-09-07T06:14:10.0850670Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-09-07T06:14:10.0851750Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-09-07T06:14:10.0852650Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-09-07T06:14:10.0853500Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-09-07T06:14:10.0854370Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_mps_dispatch.h' 2025-09-07T06:14:10.0855350Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-09-07T06:14:10.0856540Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-09-07T06:14:10.0857620Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-09-07T06:14:10.0858570Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-09-07T06:14:10.0859530Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-09-07T06:14:10.0860400Z adding 'torch/include/ATen/ops/max_unpool2d_mps_dispatch.h' 2025-09-07T06:14:10.0861270Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-09-07T06:14:10.0862280Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-09-07T06:14:10.0863440Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-09-07T06:14:10.0864410Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-09-07T06:14:10.0865290Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-09-07T06:14:10.0866190Z adding 'torch/include/ATen/ops/max_unpool3d_mps_dispatch.h' 2025-09-07T06:14:10.0867130Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-09-07T06:14:10.0868140Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-09-07T06:14:10.0869120Z adding 'torch/include/ATen/ops/maximum.h' 2025-09-07T06:14:10.0870200Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0871090Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-09-07T06:14:10.0871960Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-09-07T06:14:10.0872800Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-09-07T06:14:10.0873700Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-09-07T06:14:10.0874630Z adding 'torch/include/ATen/ops/maximum_mps_dispatch.h' 2025-09-07T06:14:10.0875490Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-09-07T06:14:10.0876440Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-09-07T06:14:10.0877560Z adding 'torch/include/ATen/ops/mean.h' 2025-09-07T06:14:10.0878640Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0879620Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0880450Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0881300Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-09-07T06:14:10.0882230Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-09-07T06:14:10.0883130Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-09-07T06:14:10.0884010Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-09-07T06:14:10.0884830Z adding 'torch/include/ATen/ops/mean_mps_dispatch.h' 2025-09-07T06:14:10.0885820Z adding 'torch/include/ATen/ops/mean_native.h' 2025-09-07T06:14:10.0887020Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-09-07T06:14:10.0888100Z adding 'torch/include/ATen/ops/median.h' 2025-09-07T06:14:10.0889150Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0890130Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0890970Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-09-07T06:14:10.0891820Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-09-07T06:14:10.0892660Z adding 'torch/include/ATen/ops/median_mps_dispatch.h' 2025-09-07T06:14:10.0893660Z adding 'torch/include/ATen/ops/median_native.h' 2025-09-07T06:14:10.0895940Z adding 'torch/include/ATen/ops/median_ops.h' 2025-09-07T06:14:10.0896750Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-09-07T06:14:10.0897850Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0898700Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-09-07T06:14:10.0899660Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-09-07T06:14:10.0900780Z adding 'torch/include/ATen/ops/min.h' 2025-09-07T06:14:10.0901850Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0902750Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0903620Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-09-07T06:14:10.0904480Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-09-07T06:14:10.0905400Z adding 'torch/include/ATen/ops/min_meta.h' 2025-09-07T06:14:10.0906310Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-09-07T06:14:10.0907170Z adding 'torch/include/ATen/ops/min_mps_dispatch.h' 2025-09-07T06:14:10.0908100Z adding 'torch/include/ATen/ops/min_native.h' 2025-09-07T06:14:10.0909360Z adding 'torch/include/ATen/ops/min_ops.h' 2025-09-07T06:14:10.0910320Z adding 'torch/include/ATen/ops/minimum.h' 2025-09-07T06:14:10.0911290Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0912050Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-09-07T06:14:10.0912880Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-09-07T06:14:10.0913700Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-09-07T06:14:10.0914550Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-09-07T06:14:10.0915410Z adding 'torch/include/ATen/ops/minimum_mps_dispatch.h' 2025-09-07T06:14:10.0916300Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-09-07T06:14:10.0917260Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-09-07T06:14:10.0918310Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-09-07T06:14:10.0919420Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-09-07T06:14:10.0920470Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0921320Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-09-07T06:14:10.0922200Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-09-07T06:14:10.0923320Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-09-07T06:14:10.0924310Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0925160Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-09-07T06:14:10.0925990Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-09-07T06:14:10.0927030Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-09-07T06:14:10.0928270Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-09-07T06:14:10.0929330Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-09-07T06:14:10.0930310Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-09-07T06:14:10.0931140Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-09-07T06:14:10.0932090Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-09-07T06:14:10.0933120Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0933950Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-09-07T06:14:10.0934810Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-09-07T06:14:10.0935830Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-09-07T06:14:10.0936820Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-09-07T06:14:10.0938160Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-09-07T06:14:10.0938980Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-09-07T06:14:10.0939910Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-09-07T06:14:10.0941170Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-09-07T06:14:10.0942280Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0943130Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-09-07T06:14:10.0944040Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-09-07T06:14:10.0945100Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-09-07T06:14:10.0946300Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-09-07T06:14:10.0947370Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0948240Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-09-07T06:14:10.0949090Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-09-07T06:14:10.0950160Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-09-07T06:14:10.0951210Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-09-07T06:14:10.0952410Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-09-07T06:14:10.0953450Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0954340Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-09-07T06:14:10.0955250Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-09-07T06:14:10.0956460Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-09-07T06:14:10.0957520Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0958340Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-09-07T06:14:10.0959200Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-09-07T06:14:10.0960320Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-09-07T06:14:10.0961210Z adding 'torch/include/ATen/ops/mish.h' 2025-09-07T06:14:10.0962120Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-09-07T06:14:10.0963090Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.0963860Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-09-07T06:14:10.0964730Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-09-07T06:14:10.0965560Z adding 'torch/include/ATen/ops/mish_backward_mps_dispatch.h' 2025-09-07T06:14:10.0966370Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-09-07T06:14:10.0967290Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-09-07T06:14:10.0968340Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.0969070Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-09-07T06:14:10.0969880Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-09-07T06:14:10.0970770Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-09-07T06:14:10.0971630Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-09-07T06:14:10.0972490Z adding 'torch/include/ATen/ops/mish_mps_dispatch.h' 2025-09-07T06:14:10.0973320Z adding 'torch/include/ATen/ops/mish_native.h' 2025-09-07T06:14:10.0974290Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-09-07T06:14:10.0975250Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-09-07T06:14:10.0976190Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-09-07T06:14:10.0977200Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0977960Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-09-07T06:14:10.0978900Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-09-07T06:14:10.0979770Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-09-07T06:14:10.0980740Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-09-07T06:14:10.0981850Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-09-07T06:14:10.0982920Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0983790Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-09-07T06:14:10.0984760Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-09-07T06:14:10.0985680Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-09-07T06:14:10.0986660Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-09-07T06:14:10.0987690Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0988520Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-09-07T06:14:10.0989520Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0990340Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-09-07T06:14:10.0991320Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-09-07T06:14:10.0992200Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-09-07T06:14:10.0993260Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-09-07T06:14:10.0994190Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-09-07T06:14:10.0995190Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0995970Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-09-07T06:14:10.0996980Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-09-07T06:14:10.0997900Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.0998670Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-09-07T06:14:10.0999600Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-09-07T06:14:10.1000530Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-09-07T06:14:10.1001540Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-09-07T06:14:10.1002580Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1003370Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-09-07T06:14:10.1004400Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-09-07T06:14:10.1005740Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1006190Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-09-07T06:14:10.1007160Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-09-07T06:14:10.1008180Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-09-07T06:14:10.1009150Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-09-07T06:14:10.1013550Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1013830Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-09-07T06:14:10.1013960Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-09-07T06:14:10.1014140Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1014310Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-09-07T06:14:10.1014590Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-09-07T06:14:10.1015860Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-09-07T06:14:10.1016970Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1017810Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-09-07T06:14:10.1018790Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-09-07T06:14:10.1020010Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-09-07T06:14:10.1021100Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1021900Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-09-07T06:14:10.1022900Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-09-07T06:14:10.1023940Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-09-07T06:14:10.1025180Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-09-07T06:14:10.1026340Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1027290Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1028190Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-09-07T06:14:10.1029490Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-09-07T06:14:10.1030610Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1031410Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-09-07T06:14:10.1032300Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-09-07T06:14:10.1033450Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-09-07T06:14:10.1034420Z adding 'torch/include/ATen/ops/mm.h' 2025-09-07T06:14:10.1035440Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1036240Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-09-07T06:14:10.1037140Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-09-07T06:14:10.1038010Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-09-07T06:14:10.1038900Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-09-07T06:14:10.1039710Z adding 'torch/include/ATen/ops/mm_mps_dispatch.h' 2025-09-07T06:14:10.1040620Z adding 'torch/include/ATen/ops/mm_native.h' 2025-09-07T06:14:10.1041620Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-09-07T06:14:10.1042630Z adding 'torch/include/ATen/ops/mode.h' 2025-09-07T06:14:10.1043640Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1044510Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1045310Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-09-07T06:14:10.1046170Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-09-07T06:14:10.1047000Z adding 'torch/include/ATen/ops/mode_native.h' 2025-09-07T06:14:10.1048050Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-09-07T06:14:10.1049070Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-09-07T06:14:10.1050110Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1050910Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-09-07T06:14:10.1051840Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-09-07T06:14:10.1052680Z adding 'torch/include/ATen/ops/movedim.h' 2025-09-07T06:14:10.1053680Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1054460Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-09-07T06:14:10.1055440Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-09-07T06:14:10.1056910Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-09-07T06:14:10.1058070Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1058930Z adding 'torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h' 2025-09-07T06:14:10.1059790Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-09-07T06:14:10.1060830Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-09-07T06:14:10.1062220Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-09-07T06:14:10.1063270Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1064150Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h' 2025-09-07T06:14:10.1065010Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-09-07T06:14:10.1066050Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-09-07T06:14:10.1066890Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-09-07T06:14:10.1067810Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-09-07T06:14:10.1068730Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1069590Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-09-07T06:14:10.1070430Z adding 'torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h' 2025-09-07T06:14:10.1071310Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-09-07T06:14:10.1072250Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-09-07T06:14:10.1073240Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1074010Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-09-07T06:14:10.1074840Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-09-07T06:14:10.1075680Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-09-07T06:14:10.1076540Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-09-07T06:14:10.1077390Z adding 'torch/include/ATen/ops/mse_loss_mps_dispatch.h' 2025-09-07T06:14:10.1078180Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-09-07T06:14:10.1079120Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-09-07T06:14:10.1079970Z adding 'torch/include/ATen/ops/msort.h' 2025-09-07T06:14:10.1080920Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1081680Z adding 'torch/include/ATen/ops/msort_native.h' 2025-09-07T06:14:10.1082600Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-09-07T06:14:10.1083520Z adding 'torch/include/ATen/ops/mul.h' 2025-09-07T06:14:10.1084470Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1085380Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1086160Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-09-07T06:14:10.1086970Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-09-07T06:14:10.1087790Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-09-07T06:14:10.1088640Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-09-07T06:14:10.1089460Z adding 'torch/include/ATen/ops/mul_mps_dispatch.h' 2025-09-07T06:14:10.1090420Z adding 'torch/include/ATen/ops/mul_native.h' 2025-09-07T06:14:10.1091500Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-09-07T06:14:10.1092500Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-09-07T06:14:10.1093500Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-09-07T06:14:10.1094510Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1095330Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-09-07T06:14:10.1096260Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-09-07T06:14:10.1097270Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-09-07T06:14:10.1098180Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-09-07T06:14:10.1099040Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-09-07T06:14:10.1099900Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-09-07T06:14:10.1100890Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-09-07T06:14:10.1101820Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-09-07T06:14:10.1102800Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-09-07T06:14:10.1103760Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1104630Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-09-07T06:14:10.1105470Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-09-07T06:14:10.1106430Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-09-07T06:14:10.1107390Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1108240Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-09-07T06:14:10.1109170Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-09-07T06:14:10.1110030Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-09-07T06:14:10.1110880Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-09-07T06:14:10.1111840Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-09-07T06:14:10.1112670Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-09-07T06:14:10.1113590Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-09-07T06:14:10.1114640Z adding 'torch/include/ATen/ops/multinomial.h' 2025-09-07T06:14:10.1115620Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-09-07T06:14:10.1116510Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-09-07T06:14:10.1117350Z adding 'torch/include/ATen/ops/multinomial_mps_dispatch.h' 2025-09-07T06:14:10.1118200Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-09-07T06:14:10.1119210Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-09-07T06:14:10.1120070Z adding 'torch/include/ATen/ops/multiply.h' 2025-09-07T06:14:10.1121050Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1121840Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-09-07T06:14:10.1122900Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-09-07T06:14:10.1123760Z adding 'torch/include/ATen/ops/mv.h' 2025-09-07T06:14:10.1124920Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1125700Z adding 'torch/include/ATen/ops/mv_native.h' 2025-09-07T06:14:10.1126650Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-09-07T06:14:10.1127560Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-09-07T06:14:10.1128540Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1129330Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-09-07T06:14:10.1130150Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-09-07T06:14:10.1130990Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-09-07T06:14:10.1131990Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-09-07T06:14:10.1132920Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-09-07T06:14:10.1133890Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1134690Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-09-07T06:14:10.1135560Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-09-07T06:14:10.1136380Z adding 'torch/include/ATen/ops/nan_to_num_mps_dispatch.h' 2025-09-07T06:14:10.1137260Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-09-07T06:14:10.1138260Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-09-07T06:14:10.1139200Z adding 'torch/include/ATen/ops/nan_to_num_sparsemps_dispatch.h' 2025-09-07T06:14:10.1140070Z adding 'torch/include/ATen/ops/nanmean.h' 2025-09-07T06:14:10.1141030Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1141800Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-09-07T06:14:10.1142770Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-09-07T06:14:10.1143780Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-09-07T06:14:10.1144790Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1145670Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1146470Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-09-07T06:14:10.1147290Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-09-07T06:14:10.1148090Z adding 'torch/include/ATen/ops/nanmedian_mps_dispatch.h' 2025-09-07T06:14:10.1148970Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-09-07T06:14:10.1150110Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-09-07T06:14:10.1151130Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-09-07T06:14:10.1152180Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1152990Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-09-07T06:14:10.1154450Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-09-07T06:14:10.1155330Z adding 'torch/include/ATen/ops/nansum.h' 2025-09-07T06:14:10.1156260Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-09-07T06:14:10.1157080Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-09-07T06:14:10.1157930Z adding 'torch/include/ATen/ops/nansum_mps_dispatch.h' 2025-09-07T06:14:10.1158790Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-09-07T06:14:10.1159730Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-09-07T06:14:10.1160690Z adding 'torch/include/ATen/ops/narrow.h' 2025-09-07T06:14:10.1161670Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1162630Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-09-07T06:14:10.1163700Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1164500Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-09-07T06:14:10.1165370Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-09-07T06:14:10.1166310Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-09-07T06:14:10.1167140Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-09-07T06:14:10.1168080Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-09-07T06:14:10.1169120Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-09-07T06:14:10.1170170Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-09-07T06:14:10.1171200Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1172020Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1172880Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-09-07T06:14:10.1173740Z adding 'torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h' 2025-09-07T06:14:10.1174700Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-09-07T06:14:10.1175770Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-09-07T06:14:10.1176750Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-09-07T06:14:10.1177770Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-09-07T06:14:10.1178710Z adding 'torch/include/ATen/ops/native_batch_norm_mps_dispatch.h' 2025-09-07T06:14:10.1179630Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-09-07T06:14:10.1180710Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-09-07T06:14:10.1181660Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-09-07T06:14:10.1182650Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1183470Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-09-07T06:14:10.1184310Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-09-07T06:14:10.1185240Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-09-07T06:14:10.1186210Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-09-07T06:14:10.1187220Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-09-07T06:14:10.1188290Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1189210Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1190080Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-09-07T06:14:10.1190930Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-09-07T06:14:10.1191900Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-09-07T06:14:10.1192910Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1193710Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-09-07T06:14:10.1194580Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-09-07T06:14:10.1195500Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-09-07T06:14:10.1196460Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-09-07T06:14:10.1197730Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-09-07T06:14:10.1199170Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-09-07T06:14:10.1200390Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1201250Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1202090Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-09-07T06:14:10.1203020Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-09-07T06:14:10.1204090Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-09-07T06:14:10.1205250Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1206100Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-09-07T06:14:10.1207030Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-09-07T06:14:10.1207940Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-09-07T06:14:10.1209020Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-09-07T06:14:10.1210250Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-09-07T06:14:10.1211640Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-09-07T06:14:10.1212720Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1213600Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1214480Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-09-07T06:14:10.1215320Z adding 'torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h' 2025-09-07T06:14:10.1216270Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-09-07T06:14:10.1217360Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-09-07T06:14:10.1218400Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1219280Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-09-07T06:14:10.1220200Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-09-07T06:14:10.1221000Z adding 'torch/include/ATen/ops/native_layer_norm_mps_dispatch.h' 2025-09-07T06:14:10.1221920Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-09-07T06:14:10.1222950Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-09-07T06:14:10.1223930Z adding 'torch/include/ATen/ops/native_norm.h' 2025-09-07T06:14:10.1224970Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1225800Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-09-07T06:14:10.1226900Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-09-07T06:14:10.1227850Z adding 'torch/include/ATen/ops/ne.h' 2025-09-07T06:14:10.1228870Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1229670Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-09-07T06:14:10.1230550Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-09-07T06:14:10.1231380Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-09-07T06:14:10.1232270Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-09-07T06:14:10.1233120Z adding 'torch/include/ATen/ops/ne_mps_dispatch.h' 2025-09-07T06:14:10.1234080Z adding 'torch/include/ATen/ops/ne_native.h' 2025-09-07T06:14:10.1235170Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-09-07T06:14:10.1236100Z adding 'torch/include/ATen/ops/neg.h' 2025-09-07T06:14:10.1237110Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1237850Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-09-07T06:14:10.1238650Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-09-07T06:14:10.1239480Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-09-07T06:14:10.1240310Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-09-07T06:14:10.1241100Z adding 'torch/include/ATen/ops/neg_mps_dispatch.h' 2025-09-07T06:14:10.1241980Z adding 'torch/include/ATen/ops/neg_native.h' 2025-09-07T06:14:10.1242960Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-09-07T06:14:10.1243850Z adding 'torch/include/ATen/ops/neg_sparsemps_dispatch.h' 2025-09-07T06:14:10.1244710Z adding 'torch/include/ATen/ops/negative.h' 2025-09-07T06:14:10.1245660Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1246440Z adding 'torch/include/ATen/ops/negative_native.h' 2025-09-07T06:14:10.1247410Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-09-07T06:14:10.1248340Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-09-07T06:14:10.1249410Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1250120Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-09-07T06:14:10.1251100Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-09-07T06:14:10.1252200Z adding 'torch/include/ATen/ops/new_empty.h' 2025-09-07T06:14:10.1253250Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1254080Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-09-07T06:14:10.1255040Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-09-07T06:14:10.1256250Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-09-07T06:14:10.1257270Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1258260Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1259020Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-09-07T06:14:10.1260030Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-09-07T06:14:10.1261190Z adding 'torch/include/ATen/ops/new_full.h' 2025-09-07T06:14:10.1262280Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1263100Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-09-07T06:14:10.1264120Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-09-07T06:14:10.1265250Z adding 'torch/include/ATen/ops/new_ones.h' 2025-09-07T06:14:10.1266270Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1267060Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-09-07T06:14:10.1268060Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-09-07T06:14:10.1269170Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-09-07T06:14:10.1270250Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1271040Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-09-07T06:14:10.1272050Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-09-07T06:14:10.1272940Z adding 'torch/include/ATen/ops/nextafter.h' 2025-09-07T06:14:10.1273970Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1274790Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-09-07T06:14:10.1275700Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-09-07T06:14:10.1276550Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-09-07T06:14:10.1277420Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-09-07T06:14:10.1278240Z adding 'torch/include/ATen/ops/nextafter_mps_dispatch.h' 2025-09-07T06:14:10.1279100Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-09-07T06:14:10.1280070Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-09-07T06:14:10.1281210Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-09-07T06:14:10.1282360Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-09-07T06:14:10.1283570Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-09-07T06:14:10.1284620Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1285540Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-09-07T06:14:10.1286430Z adding 'torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h' 2025-09-07T06:14:10.1287320Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-09-07T06:14:10.1288360Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-09-07T06:14:10.1289410Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1290500Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-09-07T06:14:10.1291720Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-09-07T06:14:10.1292690Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-09-07T06:14:10.1293620Z adding 'torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h' 2025-09-07T06:14:10.1294550Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-09-07T06:14:10.1295550Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-09-07T06:14:10.1296420Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-09-07T06:14:10.1297470Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-09-07T06:14:10.1298640Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-09-07T06:14:10.1299720Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1300570Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1301460Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-09-07T06:14:10.1302290Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-09-07T06:14:10.1303220Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-09-07T06:14:10.1304060Z adding 'torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h' 2025-09-07T06:14:10.1304940Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-09-07T06:14:10.1305940Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-09-07T06:14:10.1306950Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1307990Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-09-07T06:14:10.1309080Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1309950Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-09-07T06:14:10.1310820Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-09-07T06:14:10.1311670Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-09-07T06:14:10.1312560Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-09-07T06:14:10.1313420Z adding 'torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h' 2025-09-07T06:14:10.1314300Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-09-07T06:14:10.1315290Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-09-07T06:14:10.1316150Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-09-07T06:14:10.1317100Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-09-07T06:14:10.1318100Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1318850Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-09-07T06:14:10.1319780Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-09-07T06:14:10.1320750Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-09-07T06:14:10.1321640Z adding 'torch/include/ATen/ops/nonzero.h' 2025-09-07T06:14:10.1322540Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-09-07T06:14:10.1323410Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-09-07T06:14:10.1324220Z adding 'torch/include/ATen/ops/nonzero_mps_dispatch.h' 2025-09-07T06:14:10.1325060Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-09-07T06:14:10.1325910Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-09-07T06:14:10.1326860Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1327620Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-09-07T06:14:10.1328480Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-09-07T06:14:10.1329430Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-09-07T06:14:10.1330450Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-09-07T06:14:10.1331450Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-09-07T06:14:10.1332320Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-09-07T06:14:10.1333150Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-09-07T06:14:10.1334150Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-09-07T06:14:10.1335350Z adding 'torch/include/ATen/ops/norm.h' 2025-09-07T06:14:10.1336380Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1337410Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1338320Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1339160Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-09-07T06:14:10.1340090Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-09-07T06:14:10.1340950Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-09-07T06:14:10.1341920Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1342700Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-09-07T06:14:10.1343610Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-09-07T06:14:10.1344470Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-09-07T06:14:10.1345390Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-09-07T06:14:10.1346260Z adding 'torch/include/ATen/ops/norm_mps_dispatch.h' 2025-09-07T06:14:10.1347300Z adding 'torch/include/ATen/ops/norm_native.h' 2025-09-07T06:14:10.1348960Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-09-07T06:14:10.1350440Z adding 'torch/include/ATen/ops/normal.h' 2025-09-07T06:14:10.1351590Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1352430Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-09-07T06:14:10.1353360Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-09-07T06:14:10.1354230Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-09-07T06:14:10.1355190Z adding 'torch/include/ATen/ops/normal_mps_dispatch.h' 2025-09-07T06:14:10.1356200Z adding 'torch/include/ATen/ops/normal_native.h' 2025-09-07T06:14:10.1357860Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-09-07T06:14:10.1358680Z adding 'torch/include/ATen/ops/not_equal.h' 2025-09-07T06:14:10.1359700Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1360490Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-09-07T06:14:10.1361620Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-09-07T06:14:10.1362630Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-09-07T06:14:10.1363650Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1364440Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-09-07T06:14:10.1365480Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-09-07T06:14:10.1366290Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-09-07T06:14:10.1367240Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1367990Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-09-07T06:14:10.1368880Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-09-07T06:14:10.1369740Z adding 'torch/include/ATen/ops/one_hot.h' 2025-09-07T06:14:10.1370710Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1371470Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-09-07T06:14:10.1372360Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-09-07T06:14:10.1373590Z adding 'torch/include/ATen/ops/ones.h' 2025-09-07T06:14:10.1375100Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1376070Z adding 'torch/include/ATen/ops/ones_like.h' 2025-09-07T06:14:10.1377060Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1377820Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-09-07T06:14:10.1378850Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-09-07T06:14:10.1379730Z adding 'torch/include/ATen/ops/ones_native.h' 2025-09-07T06:14:10.1380780Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-09-07T06:14:10.1381710Z adding 'torch/include/ATen/ops/or.h' 2025-09-07T06:14:10.1382660Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1383410Z adding 'torch/include/ATen/ops/or_native.h' 2025-09-07T06:14:10.1384420Z adding 'torch/include/ATen/ops/or_ops.h' 2025-09-07T06:14:10.1385350Z adding 'torch/include/ATen/ops/orgqr.h' 2025-09-07T06:14:10.1386310Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1387100Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-09-07T06:14:10.1388050Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-09-07T06:14:10.1388980Z adding 'torch/include/ATen/ops/ormqr.h' 2025-09-07T06:14:10.1389900Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-09-07T06:14:10.1390750Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-09-07T06:14:10.1391590Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-09-07T06:14:10.1392540Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-09-07T06:14:10.1393440Z adding 'torch/include/ATen/ops/outer.h' 2025-09-07T06:14:10.1394420Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1395220Z adding 'torch/include/ATen/ops/outer_native.h' 2025-09-07T06:14:10.1396150Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-09-07T06:14:10.1396990Z adding 'torch/include/ATen/ops/output_nr.h' 2025-09-07T06:14:10.1397990Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1398750Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-09-07T06:14:10.1399650Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-09-07T06:14:10.1400590Z adding 'torch/include/ATen/ops/pad.h' 2025-09-07T06:14:10.1401570Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1402400Z adding 'torch/include/ATen/ops/pad_native.h' 2025-09-07T06:14:10.1403280Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-09-07T06:14:10.1404130Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-09-07T06:14:10.1405130Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1405860Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-09-07T06:14:10.1406840Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-09-07T06:14:10.1407710Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-09-07T06:14:10.1408710Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1409460Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-09-07T06:14:10.1410410Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-09-07T06:14:10.1411270Z adding 'torch/include/ATen/ops/pdist.h' 2025-09-07T06:14:10.1412290Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1413090Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-09-07T06:14:10.1413970Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-09-07T06:14:10.1414890Z adding 'torch/include/ATen/ops/permute.h' 2025-09-07T06:14:10.1415910Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1416750Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-09-07T06:14:10.1417700Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1418600Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1419510Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-09-07T06:14:10.1420430Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-09-07T06:14:10.1421290Z adding 'torch/include/ATen/ops/permute_mps_dispatch.h' 2025-09-07T06:14:10.1422100Z adding 'torch/include/ATen/ops/permute_native.h' 2025-09-07T06:14:10.1422960Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-09-07T06:14:10.1423770Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-09-07T06:14:10.1424720Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1425450Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-09-07T06:14:10.1426320Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-09-07T06:14:10.1427150Z adding 'torch/include/ATen/ops/pinverse.h' 2025-09-07T06:14:10.1428080Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1428850Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-09-07T06:14:10.1429700Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-09-07T06:14:10.1430590Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-09-07T06:14:10.1431550Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1432450Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1433200Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-09-07T06:14:10.1434010Z adding 'torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h' 2025-09-07T06:14:10.1434850Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-09-07T06:14:10.1435760Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-09-07T06:14:10.1436640Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-09-07T06:14:10.1437610Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1438510Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1439240Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-09-07T06:14:10.1440050Z adding 'torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h' 2025-09-07T06:14:10.1440880Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-09-07T06:14:10.1441790Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-09-07T06:14:10.1442690Z adding 'torch/include/ATen/ops/poisson.h' 2025-09-07T06:14:10.1443640Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1444420Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-09-07T06:14:10.1445210Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-09-07T06:14:10.1449240Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-09-07T06:14:10.1449490Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-09-07T06:14:10.1449830Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1450180Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-09-07T06:14:10.1450510Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-09-07T06:14:10.1450750Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-09-07T06:14:10.1451210Z adding 'torch/include/ATen/ops/polar.h' 2025-09-07T06:14:10.1452170Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1452940Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-09-07T06:14:10.1453730Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-09-07T06:14:10.1454530Z adding 'torch/include/ATen/ops/polar_mps_dispatch.h' 2025-09-07T06:14:10.1455340Z adding 'torch/include/ATen/ops/polar_native.h' 2025-09-07T06:14:10.1456250Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-09-07T06:14:10.1457160Z adding 'torch/include/ATen/ops/polygamma.h' 2025-09-07T06:14:10.1458150Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1459060Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1459790Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-09-07T06:14:10.1460590Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-09-07T06:14:10.1461420Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-09-07T06:14:10.1462270Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-09-07T06:14:10.1463070Z adding 'torch/include/ATen/ops/polygamma_mps_dispatch.h' 2025-09-07T06:14:10.1463890Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-09-07T06:14:10.1464870Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-09-07T06:14:10.1465710Z adding 'torch/include/ATen/ops/positive.h' 2025-09-07T06:14:10.1466650Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1467390Z adding 'torch/include/ATen/ops/positive_native.h' 2025-09-07T06:14:10.1468290Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-09-07T06:14:10.1469230Z adding 'torch/include/ATen/ops/pow.h' 2025-09-07T06:14:10.1470230Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1471010Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-09-07T06:14:10.1471870Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-09-07T06:14:10.1472710Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-09-07T06:14:10.1473580Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-09-07T06:14:10.1474410Z adding 'torch/include/ATen/ops/pow_mps_dispatch.h' 2025-09-07T06:14:10.1475350Z adding 'torch/include/ATen/ops/pow_native.h' 2025-09-07T06:14:10.1476520Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-09-07T06:14:10.1477380Z adding 'torch/include/ATen/ops/prelu.h' 2025-09-07T06:14:10.1478310Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1479060Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-09-07T06:14:10.1479930Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-09-07T06:14:10.1480950Z adding 'torch/include/ATen/ops/prod.h' 2025-09-07T06:14:10.1481900Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1482800Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1483650Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1484480Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-09-07T06:14:10.1485290Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-09-07T06:14:10.1486120Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-09-07T06:14:10.1486980Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-09-07T06:14:10.1487810Z adding 'torch/include/ATen/ops/prod_mps_dispatch.h' 2025-09-07T06:14:10.1488710Z adding 'torch/include/ATen/ops/prod_native.h' 2025-09-07T06:14:10.1489830Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-09-07T06:14:10.1490710Z adding 'torch/include/ATen/ops/promote_types.h' 2025-09-07T06:14:10.1491680Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1492420Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-09-07T06:14:10.1493310Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-09-07T06:14:10.1494210Z adding 'torch/include/ATen/ops/put.h' 2025-09-07T06:14:10.1495190Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1495960Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-09-07T06:14:10.1496760Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-09-07T06:14:10.1497560Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-09-07T06:14:10.1498390Z adding 'torch/include/ATen/ops/put_native.h' 2025-09-07T06:14:10.1499390Z adding 'torch/include/ATen/ops/put_ops.h' 2025-09-07T06:14:10.1500260Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-09-07T06:14:10.1501090Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-09-07T06:14:10.1501990Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-09-07T06:14:10.1502850Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-09-07T06:14:10.1503790Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1504550Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-09-07T06:14:10.1505460Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-09-07T06:14:10.1506330Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-09-07T06:14:10.1507290Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1508070Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-09-07T06:14:10.1508970Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-09-07T06:14:10.1509760Z adding 'torch/include/ATen/ops/q_scale.h' 2025-09-07T06:14:10.1510570Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-09-07T06:14:10.1511490Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-09-07T06:14:10.1512300Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-09-07T06:14:10.1513140Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-09-07T06:14:10.1514000Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-09-07T06:14:10.1514880Z adding 'torch/include/ATen/ops/qr.h' 2025-09-07T06:14:10.1515830Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1516580Z adding 'torch/include/ATen/ops/qr_native.h' 2025-09-07T06:14:10.1517520Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-09-07T06:14:10.1518330Z adding 'torch/include/ATen/ops/qscheme.h' 2025-09-07T06:14:10.1519140Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-09-07T06:14:10.1520050Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-09-07T06:14:10.1521010Z adding 'torch/include/ATen/ops/quantile.h' 2025-09-07T06:14:10.1522040Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1522840Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-09-07T06:14:10.1523900Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-09-07T06:14:10.1524850Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-09-07T06:14:10.1525850Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1526650Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-09-07T06:14:10.1527500Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-09-07T06:14:10.1528290Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-09-07T06:14:10.1529250Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-09-07T06:14:10.1530340Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-09-07T06:14:10.1531400Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1532230Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-09-07T06:14:10.1533080Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-09-07T06:14:10.1533970Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-09-07T06:14:10.1534930Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1535730Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-09-07T06:14:10.1536540Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-09-07T06:14:10.1537350Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-09-07T06:14:10.1538300Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-09-07T06:14:10.1539220Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-09-07T06:14:10.1540390Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-09-07T06:14:10.1541380Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-09-07T06:14:10.1542390Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1543150Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-09-07T06:14:10.1544150Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-09-07T06:14:10.1545080Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-09-07T06:14:10.1546050Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1546820Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-09-07T06:14:10.1547820Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-09-07T06:14:10.1548750Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-09-07T06:14:10.1549770Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1550530Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-09-07T06:14:10.1551540Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-09-07T06:14:10.1552490Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-09-07T06:14:10.1553460Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1554240Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-09-07T06:14:10.1555210Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-09-07T06:14:10.1556160Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-09-07T06:14:10.1557170Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1557950Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-09-07T06:14:10.1558920Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-09-07T06:14:10.1559860Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-09-07T06:14:10.1560830Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1561610Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-09-07T06:14:10.1562560Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-09-07T06:14:10.1563480Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-09-07T06:14:10.1564470Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1565230Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-09-07T06:14:10.1566220Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-09-07T06:14:10.1567100Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-09-07T06:14:10.1568070Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1568830Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-09-07T06:14:10.1569790Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-09-07T06:14:10.1570660Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-09-07T06:14:10.1571620Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1572410Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-09-07T06:14:10.1573360Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-09-07T06:14:10.1574280Z adding 'torch/include/ATen/ops/rad2deg_sparsemps_dispatch.h' 2025-09-07T06:14:10.1576580Z adding 'torch/include/ATen/ops/rand.h' 2025-09-07T06:14:10.1577660Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1578600Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1579490Z adding 'torch/include/ATen/ops/rand_like.h' 2025-09-07T06:14:10.1580520Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1584610Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-09-07T06:14:10.1585340Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-09-07T06:14:10.1586240Z adding 'torch/include/ATen/ops/rand_native.h' 2025-09-07T06:14:10.1587550Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-09-07T06:14:10.1589920Z adding 'torch/include/ATen/ops/randint.h' 2025-09-07T06:14:10.1590950Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1593060Z adding 'torch/include/ATen/ops/randint_like.h' 2025-09-07T06:14:10.1593850Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1594680Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-09-07T06:14:10.1595900Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-09-07T06:14:10.1596830Z adding 'torch/include/ATen/ops/randint_native.h' 2025-09-07T06:14:10.1598090Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-09-07T06:14:10.1600420Z adding 'torch/include/ATen/ops/randn.h' 2025-09-07T06:14:10.1601380Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1602330Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1603270Z adding 'torch/include/ATen/ops/randn_like.h' 2025-09-07T06:14:10.1604240Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1605170Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-09-07T06:14:10.1605930Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-09-07T06:14:10.1606910Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-09-07T06:14:10.1607830Z adding 'torch/include/ATen/ops/randn_native.h' 2025-09-07T06:14:10.1609110Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-09-07T06:14:10.1610120Z adding 'torch/include/ATen/ops/random.h' 2025-09-07T06:14:10.1611150Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1611970Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-09-07T06:14:10.1612830Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-09-07T06:14:10.1613640Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-09-07T06:14:10.1614450Z adding 'torch/include/ATen/ops/random_mps_dispatch.h' 2025-09-07T06:14:10.1615370Z adding 'torch/include/ATen/ops/random_native.h' 2025-09-07T06:14:10.1616550Z adding 'torch/include/ATen/ops/random_ops.h' 2025-09-07T06:14:10.1617950Z adding 'torch/include/ATen/ops/randperm.h' 2025-09-07T06:14:10.1619040Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1619830Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-09-07T06:14:10.1620710Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-09-07T06:14:10.1621500Z adding 'torch/include/ATen/ops/randperm_mps_dispatch.h' 2025-09-07T06:14:10.1622350Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-09-07T06:14:10.1623420Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-09-07T06:14:10.1624440Z adding 'torch/include/ATen/ops/range.h' 2025-09-07T06:14:10.1625470Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1626270Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-09-07T06:14:10.1627080Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-09-07T06:14:10.1627890Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-09-07T06:14:10.1628670Z adding 'torch/include/ATen/ops/range_mps_dispatch.h' 2025-09-07T06:14:10.1629530Z adding 'torch/include/ATen/ops/range_native.h' 2025-09-07T06:14:10.1630610Z adding 'torch/include/ATen/ops/range_ops.h' 2025-09-07T06:14:10.1631460Z adding 'torch/include/ATen/ops/ravel.h' 2025-09-07T06:14:10.1632410Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1633170Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-09-07T06:14:10.1634030Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-09-07T06:14:10.1634870Z adding 'torch/include/ATen/ops/real.h' 2025-09-07T06:14:10.1635800Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1636520Z adding 'torch/include/ATen/ops/real_native.h' 2025-09-07T06:14:10.1637400Z adding 'torch/include/ATen/ops/real_ops.h' 2025-09-07T06:14:10.1638280Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-09-07T06:14:10.1639290Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1640030Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-09-07T06:14:10.1640860Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-09-07T06:14:10.1641650Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-09-07T06:14:10.1642500Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-09-07T06:14:10.1643290Z adding 'torch/include/ATen/ops/reciprocal_mps_dispatch.h' 2025-09-07T06:14:10.1644110Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-09-07T06:14:10.1645060Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-09-07T06:14:10.1645880Z adding 'torch/include/ATen/ops/record_stream.h' 2025-09-07T06:14:10.1646760Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-09-07T06:14:10.1647600Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-09-07T06:14:10.1648440Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-09-07T06:14:10.1649250Z adding 'torch/include/ATen/ops/refine_names.h' 2025-09-07T06:14:10.1650210Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1650980Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-09-07T06:14:10.1651900Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-09-07T06:14:10.1653010Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-09-07T06:14:10.1654130Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-09-07T06:14:10.1655200Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1656010Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1656860Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-09-07T06:14:10.1657720Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-09-07T06:14:10.1658600Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-09-07T06:14:10.1659440Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h' 2025-09-07T06:14:10.1660300Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-09-07T06:14:10.1661270Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-09-07T06:14:10.1662260Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1663010Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-09-07T06:14:10.1663860Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-09-07T06:14:10.1664700Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-09-07T06:14:10.1665540Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-09-07T06:14:10.1666390Z adding 'torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h' 2025-09-07T06:14:10.1667240Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-09-07T06:14:10.1668190Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-09-07T06:14:10.1669230Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-09-07T06:14:10.1670380Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-09-07T06:14:10.1671350Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1672210Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-09-07T06:14:10.1673070Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h' 2025-09-07T06:14:10.1673920Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-09-07T06:14:10.1674890Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-09-07T06:14:10.1675760Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-09-07T06:14:10.1676620Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-09-07T06:14:10.1677470Z adding 'torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h' 2025-09-07T06:14:10.1678320Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-09-07T06:14:10.1679270Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-09-07T06:14:10.1680260Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-09-07T06:14:10.1681340Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-09-07T06:14:10.1682410Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1683140Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1683980Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-09-07T06:14:10.1684820Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-09-07T06:14:10.1685690Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-09-07T06:14:10.1686560Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h' 2025-09-07T06:14:10.1687390Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-09-07T06:14:10.1688360Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-09-07T06:14:10.1689360Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1690100Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-09-07T06:14:10.1690960Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-09-07T06:14:10.1691790Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-09-07T06:14:10.1692650Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-09-07T06:14:10.1693490Z adding 'torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h' 2025-09-07T06:14:10.1694340Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-09-07T06:14:10.1695280Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-09-07T06:14:10.1696140Z adding 'torch/include/ATen/ops/relu.h' 2025-09-07T06:14:10.1697000Z adding 'torch/include/ATen/ops/relu6.h' 2025-09-07T06:14:10.1697980Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1698740Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-09-07T06:14:10.1699650Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-09-07T06:14:10.1700660Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1701420Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-09-07T06:14:10.1702230Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-09-07T06:14:10.1703090Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-09-07T06:14:10.1703880Z adding 'torch/include/ATen/ops/relu_mps_dispatch.h' 2025-09-07T06:14:10.1704770Z adding 'torch/include/ATen/ops/relu_native.h' 2025-09-07T06:14:10.1705720Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-09-07T06:14:10.1706600Z adding 'torch/include/ATen/ops/relu_sparsemps_dispatch.h' 2025-09-07T06:14:10.1707580Z adding 'torch/include/ATen/ops/remainder.h' 2025-09-07T06:14:10.1708570Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1709480Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1710230Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-09-07T06:14:10.1711070Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-09-07T06:14:10.1711880Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-09-07T06:14:10.1712750Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-09-07T06:14:10.1713580Z adding 'torch/include/ATen/ops/remainder_mps_dispatch.h' 2025-09-07T06:14:10.1714460Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-09-07T06:14:10.1719490Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-09-07T06:14:10.1719790Z adding 'torch/include/ATen/ops/rename.h' 2025-09-07T06:14:10.1720090Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1720400Z adding 'torch/include/ATen/ops/rename_native.h' 2025-09-07T06:14:10.1720630Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-09-07T06:14:10.1722630Z adding 'torch/include/ATen/ops/renorm.h' 2025-09-07T06:14:10.1722960Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1723320Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-09-07T06:14:10.1723860Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-09-07T06:14:10.1724770Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-09-07T06:14:10.1725690Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-09-07T06:14:10.1726590Z adding 'torch/include/ATen/ops/renorm_mps_dispatch.h' 2025-09-07T06:14:10.1727520Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-09-07T06:14:10.1728580Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-09-07T06:14:10.1729630Z adding 'torch/include/ATen/ops/repeat.h' 2025-09-07T06:14:10.1730680Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1732010Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-09-07T06:14:10.1733070Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1733960Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1734800Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-09-07T06:14:10.1735690Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-09-07T06:14:10.1736550Z adding 'torch/include/ATen/ops/repeat_interleave_mps_dispatch.h' 2025-09-07T06:14:10.1737460Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-09-07T06:14:10.1738580Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-09-07T06:14:10.1739540Z adding 'torch/include/ATen/ops/repeat_mps_dispatch.h' 2025-09-07T06:14:10.1740400Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-09-07T06:14:10.1741360Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-09-07T06:14:10.1742430Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-09-07T06:14:10.1743660Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-09-07T06:14:10.1744780Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1745640Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1746480Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-09-07T06:14:10.1747400Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-09-07T06:14:10.1748310Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-09-07T06:14:10.1749210Z adding 'torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h' 2025-09-07T06:14:10.1750100Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-09-07T06:14:10.1751150Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-09-07T06:14:10.1752160Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1752970Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-09-07T06:14:10.1753840Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-09-07T06:14:10.1754720Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-09-07T06:14:10.1755620Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-09-07T06:14:10.1756460Z adding 'torch/include/ATen/ops/replication_pad1d_mps_dispatch.h' 2025-09-07T06:14:10.1757320Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-09-07T06:14:10.1758390Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-09-07T06:14:10.1759460Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-09-07T06:14:10.1760590Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-09-07T06:14:10.1761550Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1762490Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-09-07T06:14:10.1763360Z adding 'torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h' 2025-09-07T06:14:10.1764230Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-09-07T06:14:10.1765210Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-09-07T06:14:10.1766270Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1767050Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-09-07T06:14:10.1767910Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-09-07T06:14:10.1768730Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-09-07T06:14:10.1769650Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-09-07T06:14:10.1770530Z adding 'torch/include/ATen/ops/replication_pad2d_mps_dispatch.h' 2025-09-07T06:14:10.1771370Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-09-07T06:14:10.1772370Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-09-07T06:14:10.1773500Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-09-07T06:14:10.1774660Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-09-07T06:14:10.1775650Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-09-07T06:14:10.1776510Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-09-07T06:14:10.1777420Z adding 'torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h' 2025-09-07T06:14:10.1778300Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-09-07T06:14:10.1779280Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-09-07T06:14:10.1780280Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1781080Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-09-07T06:14:10.1781930Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-09-07T06:14:10.1782750Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-09-07T06:14:10.1783600Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-09-07T06:14:10.1784480Z adding 'torch/include/ATen/ops/replication_pad3d_mps_dispatch.h' 2025-09-07T06:14:10.1785390Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-09-07T06:14:10.1786310Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-09-07T06:14:10.1787120Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-09-07T06:14:10.1788180Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1788950Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-09-07T06:14:10.1789840Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-09-07T06:14:10.1790730Z adding 'torch/include/ATen/ops/reshape.h' 2025-09-07T06:14:10.1791630Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-09-07T06:14:10.1792660Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1793580Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-09-07T06:14:10.1794310Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-09-07T06:14:10.1795260Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-09-07T06:14:10.1796210Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1797120Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-09-07T06:14:10.1797840Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-09-07T06:14:10.1798810Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-09-07T06:14:10.1799950Z adding 'torch/include/ATen/ops/resize.h' 2025-09-07T06:14:10.1801420Z adding 'torch/include/ATen/ops/resize_as.h' 2025-09-07T06:14:10.1802370Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1803220Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-09-07T06:14:10.1804290Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-09-07T06:14:10.1805200Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-09-07T06:14:10.1806210Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1807080Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-09-07T06:14:10.1807930Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-09-07T06:14:10.1808920Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-09-07T06:14:10.1809960Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1810840Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-09-07T06:14:10.1811690Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-09-07T06:14:10.1812570Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-09-07T06:14:10.1813380Z adding 'torch/include/ATen/ops/resize_mps_dispatch.h' 2025-09-07T06:14:10.1814360Z adding 'torch/include/ATen/ops/resize_native.h' 2025-09-07T06:14:10.1815420Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-09-07T06:14:10.1816310Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-09-07T06:14:10.1817330Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1818150Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-09-07T06:14:10.1819060Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-09-07T06:14:10.1819960Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-09-07T06:14:10.1820990Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1821840Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-09-07T06:14:10.1822750Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-09-07T06:14:10.1823730Z adding 'torch/include/ATen/ops/result_type.h' 2025-09-07T06:14:10.1824720Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1825610Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-09-07T06:14:10.1826680Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-09-07T06:14:10.1827550Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-09-07T06:14:10.1828580Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1829350Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-09-07T06:14:10.1830280Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-09-07T06:14:10.1831100Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-09-07T06:14:10.1832080Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1832890Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-09-07T06:14:10.1833870Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-09-07T06:14:10.1834860Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-09-07T06:14:10.1835900Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1836740Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-09-07T06:14:10.1837680Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-09-07T06:14:10.1838680Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-09-07T06:14:10.1839610Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-09-07T06:14:10.1840720Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1841540Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-09-07T06:14:10.1842470Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-09-07T06:14:10.1843460Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1844320Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-09-07T06:14:10.1845360Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-09-07T06:14:10.1846310Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-09-07T06:14:10.1847200Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-09-07T06:14:10.1848230Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1849030Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-09-07T06:14:10.1849980Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-09-07T06:14:10.1850960Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1851800Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-09-07T06:14:10.1852870Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-09-07T06:14:10.1853970Z adding 'torch/include/ATen/ops/roll.h' 2025-09-07T06:14:10.1854980Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1855850Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-09-07T06:14:10.1856840Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-09-07T06:14:10.1857640Z adding 'torch/include/ATen/ops/roll_mps_dispatch.h' 2025-09-07T06:14:10.1858460Z adding 'torch/include/ATen/ops/roll_native.h' 2025-09-07T06:14:10.1859550Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-09-07T06:14:10.1860450Z adding 'torch/include/ATen/ops/rot90.h' 2025-09-07T06:14:10.1861420Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1862200Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-09-07T06:14:10.1863210Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-09-07T06:14:10.1864190Z adding 'torch/include/ATen/ops/round.h' 2025-09-07T06:14:10.1865200Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1866010Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-09-07T06:14:10.1866920Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-09-07T06:14:10.1867780Z adding 'torch/include/ATen/ops/round_meta.h' 2025-09-07T06:14:10.1868680Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-09-07T06:14:10.1869560Z adding 'torch/include/ATen/ops/round_mps_dispatch.h' 2025-09-07T06:14:10.1870540Z adding 'torch/include/ATen/ops/round_native.h' 2025-09-07T06:14:10.1871640Z adding 'torch/include/ATen/ops/round_ops.h' 2025-09-07T06:14:10.1872540Z adding 'torch/include/ATen/ops/round_sparsemps_dispatch.h' 2025-09-07T06:14:10.1873350Z adding 'torch/include/ATen/ops/row_indices.h' 2025-09-07T06:14:10.1874450Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1875200Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-09-07T06:14:10.1876190Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1877070Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1877900Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-09-07T06:14:10.1878850Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-09-07T06:14:10.1879710Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-09-07T06:14:10.1880610Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-09-07T06:14:10.1881560Z adding 'torch/include/ATen/ops/row_stack.h' 2025-09-07T06:14:10.1882540Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1883290Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-09-07T06:14:10.1884250Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-09-07T06:14:10.1885200Z adding 'torch/include/ATen/ops/rrelu.h' 2025-09-07T06:14:10.1886190Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1886970Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-09-07T06:14:10.1887940Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-09-07T06:14:10.1889050Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-09-07T06:14:10.1890050Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-09-07T06:14:10.1891100Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1891890Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-09-07T06:14:10.1892950Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-09-07T06:14:10.1893920Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1894800Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-09-07T06:14:10.1895670Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-09-07T06:14:10.1896630Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-09-07T06:14:10.1897610Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-09-07T06:14:10.1898770Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-09-07T06:14:10.1899700Z adding 'torch/include/ATen/ops/rshift.h' 2025-09-07T06:14:10.1900740Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1901600Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-09-07T06:14:10.1902410Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-09-07T06:14:10.1903260Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-09-07T06:14:10.1904170Z adding 'torch/include/ATen/ops/rshift_mps_dispatch.h' 2025-09-07T06:14:10.1905060Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-09-07T06:14:10.1906180Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-09-07T06:14:10.1907060Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-09-07T06:14:10.1908120Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1908900Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-09-07T06:14:10.1909760Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-09-07T06:14:10.1910580Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-09-07T06:14:10.1911520Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-09-07T06:14:10.1912360Z adding 'torch/include/ATen/ops/rsqrt_mps_dispatch.h' 2025-09-07T06:14:10.1913190Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-09-07T06:14:10.1914220Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-09-07T06:14:10.1915290Z adding 'torch/include/ATen/ops/rsub.h' 2025-09-07T06:14:10.1916310Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1917100Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-09-07T06:14:10.1917940Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-09-07T06:14:10.1918810Z adding 'torch/include/ATen/ops/rsub_mps_dispatch.h' 2025-09-07T06:14:10.1919680Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-09-07T06:14:10.1920740Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-09-07T06:14:10.1921750Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-09-07T06:14:10.1922820Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1923590Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-09-07T06:14:10.1924570Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-09-07T06:14:10.1925550Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-09-07T06:14:10.1926630Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1927440Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-09-07T06:14:10.1928420Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-09-07T06:14:10.1929510Z adding 'torch/include/ATen/ops/scatter.h' 2025-09-07T06:14:10.1930720Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-09-07T06:14:10.1931770Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1932610Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1933410Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-09-07T06:14:10.1934350Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-09-07T06:14:10.1935200Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-09-07T06:14:10.1936060Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-09-07T06:14:10.1936880Z adding 'torch/include/ATen/ops/scatter_add_mps_dispatch.h' 2025-09-07T06:14:10.1937820Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-09-07T06:14:10.1938920Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-09-07T06:14:10.1939960Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1940790Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1941760Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-09-07T06:14:10.1942720Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-09-07T06:14:10.1943610Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-09-07T06:14:10.1944580Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-09-07T06:14:10.1945630Z adding 'torch/include/ATen/ops/scatter_mps_dispatch.h' 2025-09-07T06:14:10.1946540Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-09-07T06:14:10.1948510Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-09-07T06:14:10.1949110Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-09-07T06:14:10.1950200Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1951010Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-09-07T06:14:10.1951920Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-09-07T06:14:10.1952790Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-09-07T06:14:10.1953770Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-09-07T06:14:10.1954650Z adding 'torch/include/ATen/ops/scatter_reduce_mps_dispatch.h' 2025-09-07T06:14:10.1955630Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-09-07T06:14:10.1956740Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-09-07T06:14:10.1957840Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-09-07T06:14:10.1958960Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-09-07T06:14:10.1959940Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-09-07T06:14:10.1960920Z adding 'torch/include/ATen/ops/searchsorted_mps_dispatch.h' 2025-09-07T06:14:10.1961950Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-09-07T06:14:10.1963200Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-09-07T06:14:10.1964520Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-09-07T06:14:10.1965550Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1966460Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-09-07T06:14:10.1967390Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-09-07T06:14:10.1968400Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-09-07T06:14:10.1969490Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-09-07T06:14:10.1970500Z adding 'torch/include/ATen/ops/select.h' 2025-09-07T06:14:10.1971660Z adding 'torch/include/ATen/ops/select_backward.h' 2025-09-07T06:14:10.1972710Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1973670Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1974480Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-09-07T06:14:10.1975520Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-09-07T06:14:10.1976480Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1977370Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1978410Z adding 'torch/include/ATen/ops/select_copy.h' 2025-09-07T06:14:10.1979450Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1980450Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1981470Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-09-07T06:14:10.1982550Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-09-07T06:14:10.1983440Z adding 'torch/include/ATen/ops/select_native.h' 2025-09-07T06:14:10.1984440Z adding 'torch/include/ATen/ops/select_ops.h' 2025-09-07T06:14:10.1985580Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-09-07T06:14:10.1986710Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1987740Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.1988560Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-09-07T06:14:10.1989540Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-09-07T06:14:10.1990480Z adding 'torch/include/ATen/ops/selu.h' 2025-09-07T06:14:10.1991530Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1992260Z adding 'torch/include/ATen/ops/selu_native.h' 2025-09-07T06:14:10.1993240Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-09-07T06:14:10.1994910Z adding 'torch/include/ATen/ops/set.h' 2025-09-07T06:14:10.1996020Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.1996990Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.1997840Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-09-07T06:14:10.1998750Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-09-07T06:14:10.1999630Z adding 'torch/include/ATen/ops/set_data.h' 2025-09-07T06:14:10.2000640Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2001460Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-09-07T06:14:10.2002410Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-09-07T06:14:10.2003330Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-09-07T06:14:10.2004210Z adding 'torch/include/ATen/ops/set_mps_dispatch.h' 2025-09-07T06:14:10.2005260Z adding 'torch/include/ATen/ops/set_native.h' 2025-09-07T06:14:10.2006960Z adding 'torch/include/ATen/ops/set_ops.h' 2025-09-07T06:14:10.2007760Z adding 'torch/include/ATen/ops/sgn.h' 2025-09-07T06:14:10.2008810Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2009610Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-09-07T06:14:10.2010520Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-09-07T06:14:10.2011380Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-09-07T06:14:10.2012230Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-09-07T06:14:10.2013060Z adding 'torch/include/ATen/ops/sgn_mps_dispatch.h' 2025-09-07T06:14:10.2014000Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-09-07T06:14:10.2015050Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-09-07T06:14:10.2015960Z adding 'torch/include/ATen/ops/sgn_sparsemps_dispatch.h' 2025-09-07T06:14:10.2016830Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-09-07T06:14:10.2018090Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-09-07T06:14:10.2019140Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2019920Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-09-07T06:14:10.2020750Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-09-07T06:14:10.2022060Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-09-07T06:14:10.2022940Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-09-07T06:14:10.2023840Z adding 'torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h' 2025-09-07T06:14:10.2024770Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-09-07T06:14:10.2025840Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-09-07T06:14:10.2026850Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2027600Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-09-07T06:14:10.2028410Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-09-07T06:14:10.2029290Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-09-07T06:14:10.2030140Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-09-07T06:14:10.2030990Z adding 'torch/include/ATen/ops/sigmoid_mps_dispatch.h' 2025-09-07T06:14:10.2031830Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-09-07T06:14:10.2032880Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-09-07T06:14:10.2033790Z adding 'torch/include/ATen/ops/sign.h' 2025-09-07T06:14:10.2034780Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2035540Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-09-07T06:14:10.2036410Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-09-07T06:14:10.2037260Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-09-07T06:14:10.2038130Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-09-07T06:14:10.2038930Z adding 'torch/include/ATen/ops/sign_mps_dispatch.h' 2025-09-07T06:14:10.2039860Z adding 'torch/include/ATen/ops/sign_native.h' 2025-09-07T06:14:10.2040830Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-09-07T06:14:10.2041710Z adding 'torch/include/ATen/ops/sign_sparsemps_dispatch.h' 2025-09-07T06:14:10.2042560Z adding 'torch/include/ATen/ops/signbit.h' 2025-09-07T06:14:10.2043630Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2044400Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-09-07T06:14:10.2045230Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-09-07T06:14:10.2046030Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-09-07T06:14:10.2046920Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-09-07T06:14:10.2047740Z adding 'torch/include/ATen/ops/signbit_mps_dispatch.h' 2025-09-07T06:14:10.2048620Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-09-07T06:14:10.2049590Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-09-07T06:14:10.2050580Z adding 'torch/include/ATen/ops/signbit_sparsemps_dispatch.h' 2025-09-07T06:14:10.2051460Z adding 'torch/include/ATen/ops/silu.h' 2025-09-07T06:14:10.2052380Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-09-07T06:14:10.2053370Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2054330Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2055140Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-09-07T06:14:10.2055990Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-09-07T06:14:10.2057430Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-09-07T06:14:10.2058900Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-09-07T06:14:10.2060030Z adding 'torch/include/ATen/ops/silu_backward_mps_dispatch.h' 2025-09-07T06:14:10.2061420Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-09-07T06:14:10.2062540Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-09-07T06:14:10.2063650Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2064580Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-09-07T06:14:10.2065640Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-09-07T06:14:10.2066550Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-09-07T06:14:10.2067510Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-09-07T06:14:10.2068410Z adding 'torch/include/ATen/ops/silu_mps_dispatch.h' 2025-09-07T06:14:10.2069370Z adding 'torch/include/ATen/ops/silu_native.h' 2025-09-07T06:14:10.2070440Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-09-07T06:14:10.2071420Z adding 'torch/include/ATen/ops/sin.h' 2025-09-07T06:14:10.2072520Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2073410Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-09-07T06:14:10.2074290Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-09-07T06:14:10.2075190Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-09-07T06:14:10.2076010Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-09-07T06:14:10.2076950Z adding 'torch/include/ATen/ops/sin_mps_dispatch.h' 2025-09-07T06:14:10.2077870Z adding 'torch/include/ATen/ops/sin_native.h' 2025-09-07T06:14:10.2078880Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-09-07T06:14:10.2079820Z adding 'torch/include/ATen/ops/sin_sparsemps_dispatch.h' 2025-09-07T06:14:10.2080820Z adding 'torch/include/ATen/ops/sinc.h' 2025-09-07T06:14:10.2081860Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2082620Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-09-07T06:14:10.2083460Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-09-07T06:14:10.2084380Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-09-07T06:14:10.2085380Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-09-07T06:14:10.2086190Z adding 'torch/include/ATen/ops/sinc_mps_dispatch.h' 2025-09-07T06:14:10.2087100Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-09-07T06:14:10.2088160Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-09-07T06:14:10.2089100Z adding 'torch/include/ATen/ops/sinh.h' 2025-09-07T06:14:10.2090160Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2090930Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-09-07T06:14:10.2091870Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-09-07T06:14:10.2092760Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-09-07T06:14:10.2093660Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-09-07T06:14:10.2094500Z adding 'torch/include/ATen/ops/sinh_mps_dispatch.h' 2025-09-07T06:14:10.2095470Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-09-07T06:14:10.2096480Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-09-07T06:14:10.2097450Z adding 'torch/include/ATen/ops/sinh_sparsemps_dispatch.h' 2025-09-07T06:14:10.2098380Z adding 'torch/include/ATen/ops/size.h' 2025-09-07T06:14:10.2099510Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2100330Z adding 'torch/include/ATen/ops/size_native.h' 2025-09-07T06:14:10.2101320Z adding 'torch/include/ATen/ops/size_ops.h' 2025-09-07T06:14:10.2102420Z adding 'torch/include/ATen/ops/slice.h' 2025-09-07T06:14:10.2103660Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-09-07T06:14:10.2104830Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2105720Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-09-07T06:14:10.2106740Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-09-07T06:14:10.2107810Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2108940Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-09-07T06:14:10.2110030Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2111000Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2111850Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-09-07T06:14:10.2112860Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-09-07T06:14:10.2113890Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-09-07T06:14:10.2114940Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2115840Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-09-07T06:14:10.2116810Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-09-07T06:14:10.2117670Z adding 'torch/include/ATen/ops/slice_native.h' 2025-09-07T06:14:10.2118600Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-09-07T06:14:10.2119900Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-09-07T06:14:10.2120990Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2121990Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2122800Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-09-07T06:14:10.2123870Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-09-07T06:14:10.2124830Z adding 'torch/include/ATen/ops/slogdet.h' 2025-09-07T06:14:10.2125810Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2126610Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-09-07T06:14:10.2127730Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-09-07T06:14:10.2129000Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-09-07T06:14:10.2130080Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2131260Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-09-07T06:14:10.2132400Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-09-07T06:14:10.2133270Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-09-07T06:14:10.2134280Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-09-07T06:14:10.2135160Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-09-07T06:14:10.2140200Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-09-07T06:14:10.2140430Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-09-07T06:14:10.2140630Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2140820Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-09-07T06:14:10.2140950Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-09-07T06:14:10.2141340Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-09-07T06:14:10.2142370Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-09-07T06:14:10.2143610Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-09-07T06:14:10.2144750Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2145650Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-09-07T06:14:10.2146580Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-09-07T06:14:10.2147510Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-09-07T06:14:10.2148620Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-09-07T06:14:10.2150040Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-09-07T06:14:10.2151180Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2152090Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-09-07T06:14:10.2153190Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-09-07T06:14:10.2154120Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-09-07T06:14:10.2155130Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-09-07T06:14:10.2155990Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-09-07T06:14:10.2157120Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-09-07T06:14:10.2158520Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-09-07T06:14:10.2159500Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-09-07T06:14:10.2160510Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-09-07T06:14:10.2161590Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-09-07T06:14:10.2162700Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-09-07T06:14:10.2163630Z adding 'torch/include/ATen/ops/smm.h' 2025-09-07T06:14:10.2164620Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2165510Z adding 'torch/include/ATen/ops/smm_native.h' 2025-09-07T06:14:10.2166480Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-09-07T06:14:10.2167440Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-09-07T06:14:10.2168420Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-09-07T06:14:10.2169520Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2170370Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-09-07T06:14:10.2171240Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-09-07T06:14:10.2172090Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h' 2025-09-07T06:14:10.2173060Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-09-07T06:14:10.2174100Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-09-07T06:14:10.2175200Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2176010Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-09-07T06:14:10.2177020Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-09-07T06:14:10.2177910Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-09-07T06:14:10.2178780Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-09-07T06:14:10.2179600Z adding 'torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h' 2025-09-07T06:14:10.2180580Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-09-07T06:14:10.2181560Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-09-07T06:14:10.2182520Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-09-07T06:14:10.2183550Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-09-07T06:14:10.2184640Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2185490Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-09-07T06:14:10.2186500Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-09-07T06:14:10.2187560Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2188420Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-09-07T06:14:10.2189430Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-09-07T06:14:10.2190410Z adding 'torch/include/ATen/ops/softmax.h' 2025-09-07T06:14:10.2191440Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2192490Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2193240Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-09-07T06:14:10.2194240Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-09-07T06:14:10.2195160Z adding 'torch/include/ATen/ops/softplus.h' 2025-09-07T06:14:10.2196230Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-09-07T06:14:10.2197330Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2198120Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-09-07T06:14:10.2199020Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-09-07T06:14:10.2199990Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-09-07T06:14:10.2200920Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-09-07T06:14:10.2201760Z adding 'torch/include/ATen/ops/softplus_backward_mps_dispatch.h' 2025-09-07T06:14:10.2202620Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-09-07T06:14:10.2203740Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-09-07T06:14:10.2204790Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2205630Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-09-07T06:14:10.2206550Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-09-07T06:14:10.2207510Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-09-07T06:14:10.2208390Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-09-07T06:14:10.2209230Z adding 'torch/include/ATen/ops/softplus_mps_dispatch.h' 2025-09-07T06:14:10.2210090Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-09-07T06:14:10.2211140Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-09-07T06:14:10.2212050Z adding 'torch/include/ATen/ops/softshrink.h' 2025-09-07T06:14:10.2213020Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-09-07T06:14:10.2214070Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2214960Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-09-07T06:14:10.2215840Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-09-07T06:14:10.2216700Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-09-07T06:14:10.2217580Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-09-07T06:14:10.2218480Z adding 'torch/include/ATen/ops/softshrink_backward_mps_dispatch.h' 2025-09-07T06:14:10.2219370Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-09-07T06:14:10.2220330Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-09-07T06:14:10.2221320Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2222200Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-09-07T06:14:10.2223080Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-09-07T06:14:10.2223870Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-09-07T06:14:10.2224740Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-09-07T06:14:10.2225640Z adding 'torch/include/ATen/ops/softshrink_mps_dispatch.h' 2025-09-07T06:14:10.2226480Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-09-07T06:14:10.2227430Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-09-07T06:14:10.2228550Z adding 'torch/include/ATen/ops/sort.h' 2025-09-07T06:14:10.2229690Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2230670Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2231600Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2232440Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-09-07T06:14:10.2233400Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-09-07T06:14:10.2234250Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-09-07T06:14:10.2235160Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-09-07T06:14:10.2235960Z adding 'torch/include/ATen/ops/sort_mps_dispatch.h' 2025-09-07T06:14:10.2237000Z adding 'torch/include/ATen/ops/sort_native.h' 2025-09-07T06:14:10.2238310Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-09-07T06:14:10.2239370Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-09-07T06:14:10.2240400Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2241310Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-09-07T06:14:10.2242390Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-09-07T06:14:10.2243470Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-09-07T06:14:10.2244470Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2245730Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-09-07T06:14:10.2246830Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-09-07T06:14:10.2248070Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-09-07T06:14:10.2249170Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2250050Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-09-07T06:14:10.2251130Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-09-07T06:14:10.2252250Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-09-07T06:14:10.2253270Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2254280Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2255150Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-09-07T06:14:10.2256310Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-09-07T06:14:10.2257360Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-09-07T06:14:10.2258480Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2259300Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-09-07T06:14:10.2260350Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-09-07T06:14:10.2261360Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-09-07T06:14:10.2262480Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2263310Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-09-07T06:14:10.2264440Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-09-07T06:14:10.2265240Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-09-07T06:14:10.2266320Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2267120Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-09-07T06:14:10.2268040Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-09-07T06:14:10.2268980Z adding 'torch/include/ATen/ops/sparse_dim_sparsecsrmps_dispatch.h' 2025-09-07T06:14:10.2269900Z adding 'torch/include/ATen/ops/sparse_dim_sparsemps_dispatch.h' 2025-09-07T06:14:10.2270770Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-09-07T06:14:10.2271760Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2272510Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-09-07T06:14:10.2273580Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-09-07T06:14:10.2274620Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-09-07T06:14:10.2275680Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-09-07T06:14:10.2276690Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2277600Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-09-07T06:14:10.2278480Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-09-07T06:14:10.2279510Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-09-07T06:14:10.2280530Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_sparsemps_dispatch.h' 2025-09-07T06:14:10.2281520Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2282350Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-09-07T06:14:10.2283200Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-09-07T06:14:10.2284240Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-09-07T06:14:10.2285290Z adding 'torch/include/ATen/ops/sparse_resize_sparsemps_dispatch.h' 2025-09-07T06:14:10.2286210Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-09-07T06:14:10.2287170Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-09-07T06:14:10.2288170Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-09-07T06:14:10.2289170Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-09-07T06:14:10.2290210Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2290970Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-09-07T06:14:10.2291790Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-09-07T06:14:10.2292730Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-09-07T06:14:10.2293610Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-09-07T06:14:10.2294460Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-09-07T06:14:10.2295410Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-09-07T06:14:10.2296400Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-09-07T06:14:10.2297440Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2298220Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-09-07T06:14:10.2299070Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-09-07T06:14:10.2299980Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-09-07T06:14:10.2300840Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-09-07T06:14:10.2301660Z adding 'torch/include/ATen/ops/special_bessel_j0_mps_dispatch.h' 2025-09-07T06:14:10.2302530Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-09-07T06:14:10.2303560Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-09-07T06:14:10.2304470Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-09-07T06:14:10.2305550Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2306260Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-09-07T06:14:10.2307180Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-09-07T06:14:10.2308040Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-09-07T06:14:10.2308870Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-09-07T06:14:10.2309680Z adding 'torch/include/ATen/ops/special_bessel_j1_mps_dispatch.h' 2025-09-07T06:14:10.2310570Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-09-07T06:14:10.2311550Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-09-07T06:14:10.2312440Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-09-07T06:14:10.2313470Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2314270Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-09-07T06:14:10.2315120Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-09-07T06:14:10.2315940Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-09-07T06:14:10.2316770Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-09-07T06:14:10.2317670Z adding 'torch/include/ATen/ops/special_bessel_y0_mps_dispatch.h' 2025-09-07T06:14:10.2318520Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-09-07T06:14:10.2319490Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-09-07T06:14:10.2320360Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-09-07T06:14:10.2321440Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2322180Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-09-07T06:14:10.2323000Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-09-07T06:14:10.2323870Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-09-07T06:14:10.2324760Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-09-07T06:14:10.2325560Z adding 'torch/include/ATen/ops/special_bessel_y1_mps_dispatch.h' 2025-09-07T06:14:10.2326370Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-09-07T06:14:10.2327330Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-09-07T06:14:10.2328460Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-09-07T06:14:10.2329560Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2330480Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2331240Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-09-07T06:14:10.2332180Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-09-07T06:14:10.2333030Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-09-07T06:14:10.2333990Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-09-07T06:14:10.2334830Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_mps_dispatch.h' 2025-09-07T06:14:10.2335820Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-09-07T06:14:10.2336960Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-09-07T06:14:10.2337970Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-09-07T06:14:10.2339000Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2340030Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2340840Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-09-07T06:14:10.2341720Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-09-07T06:14:10.2342570Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-09-07T06:14:10.2343460Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-09-07T06:14:10.2344290Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_mps_dispatch.h' 2025-09-07T06:14:10.2345160Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-09-07T06:14:10.2346280Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-09-07T06:14:10.2347340Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-09-07T06:14:10.2348370Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2349310Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2350090Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-09-07T06:14:10.2351020Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-09-07T06:14:10.2351840Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-09-07T06:14:10.2352680Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-09-07T06:14:10.2353500Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_mps_dispatch.h' 2025-09-07T06:14:10.2354440Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-09-07T06:14:10.2355550Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-09-07T06:14:10.2356540Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-09-07T06:14:10.2357560Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2358540Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2359290Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-09-07T06:14:10.2360160Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-09-07T06:14:10.2360980Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-09-07T06:14:10.2361900Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-09-07T06:14:10.2362720Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_mps_dispatch.h' 2025-09-07T06:14:10.2363550Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-09-07T06:14:10.2364670Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-09-07T06:14:10.2365630Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-09-07T06:14:10.2366610Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2367350Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-09-07T06:14:10.2368280Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-09-07T06:14:10.2369220Z adding 'torch/include/ATen/ops/special_entr.h' 2025-09-07T06:14:10.2370210Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2370970Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-09-07T06:14:10.2371800Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-09-07T06:14:10.2372670Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-09-07T06:14:10.2373530Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-09-07T06:14:10.2374340Z adding 'torch/include/ATen/ops/special_entr_mps_dispatch.h' 2025-09-07T06:14:10.2375140Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-09-07T06:14:10.2376160Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-09-07T06:14:10.2377040Z adding 'torch/include/ATen/ops/special_erf.h' 2025-09-07T06:14:10.2377980Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2378730Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-09-07T06:14:10.2379770Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-09-07T06:14:10.2380620Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-09-07T06:14:10.2381570Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2382310Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-09-07T06:14:10.2383300Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-09-07T06:14:10.2384160Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-09-07T06:14:10.2385160Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2385930Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-09-07T06:14:10.2386840Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-09-07T06:14:10.2387650Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-09-07T06:14:10.2388490Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-09-07T06:14:10.2389300Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-09-07T06:14:10.2390290Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-09-07T06:14:10.2391160Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-09-07T06:14:10.2392140Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2392890Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-09-07T06:14:10.2393890Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-09-07T06:14:10.2394850Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-09-07T06:14:10.2395780Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2396520Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-09-07T06:14:10.2397500Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-09-07T06:14:10.2398370Z adding 'torch/include/ATen/ops/special_expit.h' 2025-09-07T06:14:10.2399320Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2400060Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-09-07T06:14:10.2401050Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-09-07T06:14:10.2401920Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-09-07T06:14:10.2402890Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2403620Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-09-07T06:14:10.2404590Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-09-07T06:14:10.2405470Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-09-07T06:14:10.2406450Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2407230Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-09-07T06:14:10.2408250Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-09-07T06:14:10.2409130Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-09-07T06:14:10.2410100Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2410840Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-09-07T06:14:10.2411830Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-09-07T06:14:10.2412700Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-09-07T06:14:10.2413640Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2414370Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-09-07T06:14:10.2415350Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-09-07T06:14:10.2416390Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-09-07T06:14:10.2417390Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2418300Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2419140Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-09-07T06:14:10.2420010Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-09-07T06:14:10.2420800Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-09-07T06:14:10.2421650Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-09-07T06:14:10.2422530Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_mps_dispatch.h' 2025-09-07T06:14:10.2423420Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-09-07T06:14:10.2424520Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-09-07T06:14:10.2425520Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-09-07T06:14:10.2426630Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2427550Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2428310Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-09-07T06:14:10.2429110Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-09-07T06:14:10.2430020Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-09-07T06:14:10.2430850Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-09-07T06:14:10.2431650Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_mps_dispatch.h' 2025-09-07T06:14:10.2432540Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-09-07T06:14:10.2433680Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-09-07T06:14:10.2434520Z adding 'torch/include/ATen/ops/special_i0.h' 2025-09-07T06:14:10.2435480Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2436240Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-09-07T06:14:10.2437210Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-09-07T06:14:10.2438090Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-09-07T06:14:10.2439090Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2439840Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-09-07T06:14:10.2440720Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-09-07T06:14:10.2441540Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-09-07T06:14:10.2442400Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-09-07T06:14:10.2443180Z adding 'torch/include/ATen/ops/special_i0e_mps_dispatch.h' 2025-09-07T06:14:10.2444090Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-09-07T06:14:10.2445020Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-09-07T06:14:10.2445860Z adding 'torch/include/ATen/ops/special_i1.h' 2025-09-07T06:14:10.2446860Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2447650Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-09-07T06:14:10.2448450Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-09-07T06:14:10.2449270Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-09-07T06:14:10.2450070Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-09-07T06:14:10.2450950Z adding 'torch/include/ATen/ops/special_i1_mps_dispatch.h' 2025-09-07T06:14:10.2451750Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-09-07T06:14:10.2452670Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-09-07T06:14:10.2453540Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-09-07T06:14:10.2454600Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2455330Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-09-07T06:14:10.2456470Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-09-07T06:14:10.2457320Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-09-07T06:14:10.2458240Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-09-07T06:14:10.2459030Z adding 'torch/include/ATen/ops/special_i1e_mps_dispatch.h' 2025-09-07T06:14:10.2459830Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-09-07T06:14:10.2460740Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-09-07T06:14:10.2461860Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-09-07T06:14:10.2462880Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2463790Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2464540Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-09-07T06:14:10.2465470Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-09-07T06:14:10.2466310Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-09-07T06:14:10.2467160Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-09-07T06:14:10.2468020Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-09-07T06:14:10.2469190Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-09-07T06:14:10.2470200Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-09-07T06:14:10.2471230Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2472100Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2472920Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-09-07T06:14:10.2473740Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-09-07T06:14:10.2474570Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-09-07T06:14:10.2475420Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-09-07T06:14:10.2476330Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-09-07T06:14:10.2477440Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-09-07T06:14:10.2478280Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-09-07T06:14:10.2479240Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2480100Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-09-07T06:14:10.2481030Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-09-07T06:14:10.2481910Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-09-07T06:14:10.2482910Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2483740Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-09-07T06:14:10.2484580Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-09-07T06:14:10.2485370Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-09-07T06:14:10.2486200Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-09-07T06:14:10.2487100Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-09-07T06:14:10.2488030Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-09-07T06:14:10.2488890Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-09-07T06:14:10.2489870Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2490690Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-09-07T06:14:10.2491620Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-09-07T06:14:10.2492470Z adding 'torch/include/ATen/ops/special_logit.h' 2025-09-07T06:14:10.2493430Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2494260Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-09-07T06:14:10.2495190Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-09-07T06:14:10.2496110Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-09-07T06:14:10.2497070Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2497910Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-09-07T06:14:10.2498850Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-09-07T06:14:10.2499750Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-09-07T06:14:10.2500740Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2501570Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-09-07T06:14:10.2502430Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-09-07T06:14:10.2503240Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-09-07T06:14:10.2504080Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-09-07T06:14:10.2504970Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_mps_dispatch.h' 2025-09-07T06:14:10.2505810Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-09-07T06:14:10.2506710Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-09-07T06:14:10.2507580Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-09-07T06:14:10.2508670Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2509370Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-09-07T06:14:10.2510170Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-09-07T06:14:10.2510980Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-09-07T06:14:10.2511870Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-09-07T06:14:10.2512700Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_mps_dispatch.h' 2025-09-07T06:14:10.2513540Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-09-07T06:14:10.2514430Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-09-07T06:14:10.2515380Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-09-07T06:14:10.2516390Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2517150Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-09-07T06:14:10.2517980Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-09-07T06:14:10.2518880Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-09-07T06:14:10.2519720Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-09-07T06:14:10.2520520Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_mps_dispatch.h' 2025-09-07T06:14:10.2521340Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-09-07T06:14:10.2522340Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-09-07T06:14:10.2523220Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-09-07T06:14:10.2524210Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2524930Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-09-07T06:14:10.2525810Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-09-07T06:14:10.2526630Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-09-07T06:14:10.2527450Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-09-07T06:14:10.2528240Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_mps_dispatch.h' 2025-09-07T06:14:10.2529130Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-09-07T06:14:10.2530090Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-09-07T06:14:10.2530970Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-09-07T06:14:10.2531920Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2532750Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-09-07T06:14:10.2533680Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-09-07T06:14:10.2534540Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-09-07T06:14:10.2535490Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2536300Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-09-07T06:14:10.2537250Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-09-07T06:14:10.2538080Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-09-07T06:14:10.2539070Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2539880Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-09-07T06:14:10.2540700Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-09-07T06:14:10.2541510Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-09-07T06:14:10.2542340Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-09-07T06:14:10.2543220Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-09-07T06:14:10.2544140Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-09-07T06:14:10.2545060Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-09-07T06:14:10.2545980Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2546810Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-09-07T06:14:10.2547740Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-09-07T06:14:10.2548570Z adding 'torch/include/ATen/ops/special_psi.h' 2025-09-07T06:14:10.2549510Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2550330Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-09-07T06:14:10.2551250Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-09-07T06:14:10.2552120Z adding 'torch/include/ATen/ops/special_round.h' 2025-09-07T06:14:10.2553090Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2553910Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-09-07T06:14:10.2554830Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-09-07T06:14:10.2555750Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-09-07T06:14:10.2556770Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2557630Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-09-07T06:14:10.2558440Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-09-07T06:14:10.2559280Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-09-07T06:14:10.2560110Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-09-07T06:14:10.2560980Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_mps_dispatch.h' 2025-09-07T06:14:10.2561820Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-09-07T06:14:10.2562740Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-09-07T06:14:10.2563610Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-09-07T06:14:10.2564690Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2565430Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-09-07T06:14:10.2566220Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-09-07T06:14:10.2567050Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-09-07T06:14:10.2567960Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-09-07T06:14:10.2568750Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_mps_dispatch.h' 2025-09-07T06:14:10.2569560Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-09-07T06:14:10.2570480Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-09-07T06:14:10.2571560Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-09-07T06:14:10.2572590Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2573500Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2574260Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-09-07T06:14:10.2575160Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-09-07T06:14:10.2575980Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-09-07T06:14:10.2576860Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-09-07T06:14:10.2577660Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_mps_dispatch.h' 2025-09-07T06:14:10.2578620Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-09-07T06:14:10.2579760Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-09-07T06:14:10.2580760Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-09-07T06:14:10.2581780Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2582760Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2583520Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-09-07T06:14:10.2584360Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-09-07T06:14:10.2585170Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-09-07T06:14:10.2586100Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-09-07T06:14:10.2586930Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_mps_dispatch.h' 2025-09-07T06:14:10.2587780Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-09-07T06:14:10.2588870Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-09-07T06:14:10.2589940Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-09-07T06:14:10.2590960Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2591880Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2592600Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-09-07T06:14:10.2593480Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-09-07T06:14:10.2594320Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-09-07T06:14:10.2595150Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-09-07T06:14:10.2595970Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_mps_dispatch.h' 2025-09-07T06:14:10.2596890Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-09-07T06:14:10.2598000Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-09-07T06:14:10.2599020Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-09-07T06:14:10.2600040Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2600990Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2601720Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-09-07T06:14:10.2602530Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-09-07T06:14:10.2603340Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-09-07T06:14:10.2604250Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-09-07T06:14:10.2605070Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_mps_dispatch.h' 2025-09-07T06:14:10.2605930Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-09-07T06:14:10.2607000Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-09-07T06:14:10.2607890Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-09-07T06:14:10.2608870Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2609610Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-09-07T06:14:10.2610530Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-09-07T06:14:10.2611450Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-09-07T06:14:10.2612460Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2613200Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-09-07T06:14:10.2614090Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-09-07T06:14:10.2615080Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-09-07T06:14:10.2616090Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2616840Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-09-07T06:14:10.2617680Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-09-07T06:14:10.2618560Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-09-07T06:14:10.2619430Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-09-07T06:14:10.2620230Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_mps_dispatch.h' 2025-09-07T06:14:10.2621060Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-09-07T06:14:10.2622050Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-09-07T06:14:10.2623030Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-09-07T06:14:10.2624030Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2624940Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2625760Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-09-07T06:14:10.2626600Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-09-07T06:14:10.2627430Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-09-07T06:14:10.2628280Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-09-07T06:14:10.2629150Z adding 'torch/include/ATen/ops/special_xlog1py_mps_dispatch.h' 2025-09-07T06:14:10.2630010Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-09-07T06:14:10.2631130Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-09-07T06:14:10.2632120Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-09-07T06:14:10.2633200Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2633990Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-09-07T06:14:10.2635070Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-09-07T06:14:10.2636070Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-09-07T06:14:10.2637160Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2638060Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2638810Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-09-07T06:14:10.2639640Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-09-07T06:14:10.2640510Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-09-07T06:14:10.2641390Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-09-07T06:14:10.2642210Z adding 'torch/include/ATen/ops/special_zeta_mps_dispatch.h' 2025-09-07T06:14:10.2643060Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-09-07T06:14:10.2644250Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-09-07T06:14:10.2645240Z adding 'torch/include/ATen/ops/split.h' 2025-09-07T06:14:10.2646230Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2647110Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2648240Z adding 'torch/include/ATen/ops/split_copy.h' 2025-09-07T06:14:10.2653490Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2653840Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2653930Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-09-07T06:14:10.2654010Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-09-07T06:14:10.2654120Z adding 'torch/include/ATen/ops/split_native.h' 2025-09-07T06:14:10.2654200Z adding 'torch/include/ATen/ops/split_ops.h' 2025-09-07T06:14:10.2654600Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-09-07T06:14:10.2655640Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2656650Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-09-07T06:14:10.2657680Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2658610Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2659480Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-09-07T06:14:10.2660330Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-09-07T06:14:10.2661280Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-09-07T06:14:10.2662130Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-09-07T06:14:10.2663490Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-09-07T06:14:10.2664330Z adding 'torch/include/ATen/ops/sqrt.h' 2025-09-07T06:14:10.2665330Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2666140Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-09-07T06:14:10.2667040Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-09-07T06:14:10.2667870Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-09-07T06:14:10.2668720Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-09-07T06:14:10.2669540Z adding 'torch/include/ATen/ops/sqrt_mps_dispatch.h' 2025-09-07T06:14:10.2670490Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-09-07T06:14:10.2671460Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-09-07T06:14:10.2672350Z adding 'torch/include/ATen/ops/sqrt_sparsemps_dispatch.h' 2025-09-07T06:14:10.2673210Z adding 'torch/include/ATen/ops/square.h' 2025-09-07T06:14:10.2674240Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2675010Z adding 'torch/include/ATen/ops/square_native.h' 2025-09-07T06:14:10.2675950Z adding 'torch/include/ATen/ops/square_ops.h' 2025-09-07T06:14:10.2676840Z adding 'torch/include/ATen/ops/squeeze.h' 2025-09-07T06:14:10.2677910Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2678790Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2679720Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-09-07T06:14:10.2680690Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2681690Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2682430Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-09-07T06:14:10.2683490Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-09-07T06:14:10.2684380Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-09-07T06:14:10.2685590Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-09-07T06:14:10.2686550Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-09-07T06:14:10.2687510Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2688360Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-09-07T06:14:10.2689240Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-09-07T06:14:10.2690140Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-09-07T06:14:10.2691090Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-09-07T06:14:10.2691970Z adding 'torch/include/ATen/ops/stack.h' 2025-09-07T06:14:10.2693010Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2693780Z adding 'torch/include/ATen/ops/stack_native.h' 2025-09-07T06:14:10.2694720Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-09-07T06:14:10.2695830Z adding 'torch/include/ATen/ops/std.h' 2025-09-07T06:14:10.2697030Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2697850Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-09-07T06:14:10.2699860Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-09-07T06:14:10.2700610Z adding 'torch/include/ATen/ops/std_mean.h' 2025-09-07T06:14:10.2701720Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2702630Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2703470Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-09-07T06:14:10.2704290Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-09-07T06:14:10.2705210Z adding 'torch/include/ATen/ops/std_mean_mps_dispatch.h' 2025-09-07T06:14:10.2706140Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-09-07T06:14:10.2707340Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-09-07T06:14:10.2708260Z adding 'torch/include/ATen/ops/std_mps_dispatch.h' 2025-09-07T06:14:10.2709280Z adding 'torch/include/ATen/ops/std_native.h' 2025-09-07T06:14:10.2710610Z adding 'torch/include/ATen/ops/std_ops.h' 2025-09-07T06:14:10.2711590Z adding 'torch/include/ATen/ops/stft.h' 2025-09-07T06:14:10.2712620Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2713520Z adding 'torch/include/ATen/ops/stft_native.h' 2025-09-07T06:14:10.2714580Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-09-07T06:14:10.2715470Z adding 'torch/include/ATen/ops/stride.h' 2025-09-07T06:14:10.2716490Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2717350Z adding 'torch/include/ATen/ops/stride_native.h' 2025-09-07T06:14:10.2718300Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-09-07T06:14:10.2719260Z adding 'torch/include/ATen/ops/sub.h' 2025-09-07T06:14:10.2720260Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2721250Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2722040Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-09-07T06:14:10.2722890Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-09-07T06:14:10.2723730Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-09-07T06:14:10.2724710Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-09-07T06:14:10.2725600Z adding 'torch/include/ATen/ops/sub_mps_dispatch.h' 2025-09-07T06:14:10.2726570Z adding 'torch/include/ATen/ops/sub_native.h' 2025-09-07T06:14:10.2727720Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-09-07T06:14:10.2728730Z adding 'torch/include/ATen/ops/subtract.h' 2025-09-07T06:14:10.2729780Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2730550Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-09-07T06:14:10.2731640Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-09-07T06:14:10.2732810Z adding 'torch/include/ATen/ops/sum.h' 2025-09-07T06:14:10.2733850Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2734780Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2735710Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2736630Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-09-07T06:14:10.2737500Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-09-07T06:14:10.2738380Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-09-07T06:14:10.2739270Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-09-07T06:14:10.2740220Z adding 'torch/include/ATen/ops/sum_mps_dispatch.h' 2025-09-07T06:14:10.2741260Z adding 'torch/include/ATen/ops/sum_native.h' 2025-09-07T06:14:10.2742470Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-09-07T06:14:10.2743430Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-09-07T06:14:10.2744520Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2745500Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-09-07T06:14:10.2746380Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-09-07T06:14:10.2747320Z adding 'torch/include/ATen/ops/svd.h' 2025-09-07T06:14:10.2748430Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2749260Z adding 'torch/include/ATen/ops/svd_native.h' 2025-09-07T06:14:10.2750280Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-09-07T06:14:10.2751170Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-09-07T06:14:10.2752250Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2753050Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-09-07T06:14:10.2754100Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-09-07T06:14:10.2754970Z adding 'torch/include/ATen/ops/swapdims.h' 2025-09-07T06:14:10.2756100Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2756910Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-09-07T06:14:10.2757880Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-09-07T06:14:10.2758840Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-09-07T06:14:10.2759920Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2760780Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-09-07T06:14:10.2761750Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2762570Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-09-07T06:14:10.2763570Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-09-07T06:14:10.2764430Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-09-07T06:14:10.2765370Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-09-07T06:14:10.2766260Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-09-07T06:14:10.2767330Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2768100Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-09-07T06:14:10.2769000Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-09-07T06:14:10.2769900Z adding 'torch/include/ATen/ops/sym_size.h' 2025-09-07T06:14:10.2770980Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2771780Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-09-07T06:14:10.2772740Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-09-07T06:14:10.2773650Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-09-07T06:14:10.2774660Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2775430Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-09-07T06:14:10.2776350Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-09-07T06:14:10.2777170Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-09-07T06:14:10.2778240Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2778990Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-09-07T06:14:10.2779960Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-09-07T06:14:10.2780780Z adding 'torch/include/ATen/ops/t.h' 2025-09-07T06:14:10.2781860Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2782690Z adding 'torch/include/ATen/ops/t_copy.h' 2025-09-07T06:14:10.2783670Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2784590Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2785430Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-09-07T06:14:10.2786410Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-09-07T06:14:10.2787240Z adding 'torch/include/ATen/ops/t_native.h' 2025-09-07T06:14:10.2788160Z adding 'torch/include/ATen/ops/t_ops.h' 2025-09-07T06:14:10.2789200Z adding 'torch/include/ATen/ops/take.h' 2025-09-07T06:14:10.2790140Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-09-07T06:14:10.2791160Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2791970Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-09-07T06:14:10.2793070Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-09-07T06:14:10.2794010Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-09-07T06:14:10.2794890Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-09-07T06:14:10.2795760Z adding 'torch/include/ATen/ops/take_native.h' 2025-09-07T06:14:10.2796780Z adding 'torch/include/ATen/ops/take_ops.h' 2025-09-07T06:14:10.2797690Z adding 'torch/include/ATen/ops/tan.h' 2025-09-07T06:14:10.2798700Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2799470Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-09-07T06:14:10.2800410Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-09-07T06:14:10.2801260Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-09-07T06:14:10.2802170Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-09-07T06:14:10.2803020Z adding 'torch/include/ATen/ops/tan_mps_dispatch.h' 2025-09-07T06:14:10.2804000Z adding 'torch/include/ATen/ops/tan_native.h' 2025-09-07T06:14:10.2805010Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-09-07T06:14:10.2805930Z adding 'torch/include/ATen/ops/tan_sparsemps_dispatch.h' 2025-09-07T06:14:10.2806860Z adding 'torch/include/ATen/ops/tanh.h' 2025-09-07T06:14:10.2807950Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-09-07T06:14:10.2809020Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2809820Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-09-07T06:14:10.2810680Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-09-07T06:14:10.2811620Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-09-07T06:14:10.2812500Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-09-07T06:14:10.2813380Z adding 'torch/include/ATen/ops/tanh_backward_mps_dispatch.h' 2025-09-07T06:14:10.2814250Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-09-07T06:14:10.2815300Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-09-07T06:14:10.2816330Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2817100Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-09-07T06:14:10.2817980Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-09-07T06:14:10.2818970Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-09-07T06:14:10.2819860Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-09-07T06:14:10.2820680Z adding 'torch/include/ATen/ops/tanh_mps_dispatch.h' 2025-09-07T06:14:10.2821610Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-09-07T06:14:10.2822690Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-09-07T06:14:10.2823640Z adding 'torch/include/ATen/ops/tanh_sparsemps_dispatch.h' 2025-09-07T06:14:10.2824610Z adding 'torch/include/ATen/ops/tensor.h' 2025-09-07T06:14:10.2825670Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-09-07T06:14:10.2826820Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2827680Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-09-07T06:14:10.2828730Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-09-07T06:14:10.2829690Z adding 'torch/include/ATen/ops/tensordot.h' 2025-09-07T06:14:10.2830780Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2831580Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-09-07T06:14:10.2832550Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-09-07T06:14:10.2833770Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-09-07T06:14:10.2835010Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2835850Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-09-07T06:14:10.2836810Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-09-07T06:14:10.2837720Z adding 'torch/include/ATen/ops/threshold.h' 2025-09-07T06:14:10.2838730Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-09-07T06:14:10.2839750Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2840540Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-09-07T06:14:10.2841370Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-09-07T06:14:10.2842280Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-09-07T06:14:10.2843180Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-09-07T06:14:10.2843990Z adding 'torch/include/ATen/ops/threshold_backward_mps_dispatch.h' 2025-09-07T06:14:10.2844910Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-09-07T06:14:10.2845940Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-09-07T06:14:10.2846990Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2847780Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-09-07T06:14:10.2848660Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-09-07T06:14:10.2849620Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-09-07T06:14:10.2850500Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-09-07T06:14:10.2851340Z adding 'torch/include/ATen/ops/threshold_mps_dispatch.h' 2025-09-07T06:14:10.2852210Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-09-07T06:14:10.2853280Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-09-07T06:14:10.2854220Z adding 'torch/include/ATen/ops/tile.h' 2025-09-07T06:14:10.2855160Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2855940Z adding 'torch/include/ATen/ops/tile_native.h' 2025-09-07T06:14:10.2856920Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-09-07T06:14:10.2857790Z adding 'torch/include/ATen/ops/to.h' 2025-09-07T06:14:10.2858830Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2859570Z adding 'torch/include/ATen/ops/to_dense.h' 2025-09-07T06:14:10.2860570Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-09-07T06:14:10.2861590Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2862460Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-09-07T06:14:10.2863340Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-09-07T06:14:10.2864360Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2865210Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-09-07T06:14:10.2866130Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-09-07T06:14:10.2867040Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-09-07T06:14:10.2868030Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-09-07T06:14:10.2869050Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2869790Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-09-07T06:14:10.2870710Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-09-07T06:14:10.2871760Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2872630Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-09-07T06:14:10.2873460Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-09-07T06:14:10.2874400Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-09-07T06:14:10.2875390Z adding 'torch/include/ATen/ops/to_native.h' 2025-09-07T06:14:10.2876480Z adding 'torch/include/ATen/ops/to_ops.h' 2025-09-07T06:14:10.2877640Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-09-07T06:14:10.2878650Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2879610Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-09-07T06:14:10.2880600Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-09-07T06:14:10.2881800Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-09-07T06:14:10.2882660Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-09-07T06:14:10.2883710Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2884510Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-09-07T06:14:10.2885410Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-09-07T06:14:10.2886270Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-09-07T06:14:10.2887330Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2888140Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-09-07T06:14:10.2889300Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-09-07T06:14:10.2890260Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2891080Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-09-07T06:14:10.2892100Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2892890Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-09-07T06:14:10.2893800Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-09-07T06:14:10.2894670Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-09-07T06:14:10.2895620Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2896370Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-09-07T06:14:10.2897240Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-09-07T06:14:10.2898210Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-09-07T06:14:10.2899230Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-09-07T06:14:10.2900370Z adding 'torch/include/ATen/ops/topk.h' 2025-09-07T06:14:10.2901510Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2902410Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-09-07T06:14:10.2903320Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-09-07T06:14:10.2904260Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-09-07T06:14:10.2905170Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-09-07T06:14:10.2906150Z adding 'torch/include/ATen/ops/topk_mps_dispatch.h' 2025-09-07T06:14:10.2907070Z adding 'torch/include/ATen/ops/topk_native.h' 2025-09-07T06:14:10.2908110Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-09-07T06:14:10.2908970Z adding 'torch/include/ATen/ops/trace.h' 2025-09-07T06:14:10.2910030Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-09-07T06:14:10.2910990Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2911780Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-09-07T06:14:10.2912700Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-09-07T06:14:10.2913730Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2914570Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-09-07T06:14:10.2915420Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-09-07T06:14:10.2916240Z adding 'torch/include/ATen/ops/trace_mps_dispatch.h' 2025-09-07T06:14:10.2917170Z adding 'torch/include/ATen/ops/trace_native.h' 2025-09-07T06:14:10.2918100Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-09-07T06:14:10.2918990Z adding 'torch/include/ATen/ops/transpose.h' 2025-09-07T06:14:10.2920000Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2920920Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2921740Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-09-07T06:14:10.2922710Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2923850Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2924680Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-09-07T06:14:10.2925640Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-09-07T06:14:10.2926510Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-09-07T06:14:10.2927530Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-09-07T06:14:10.2928490Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-09-07T06:14:10.2929480Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2930250Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-09-07T06:14:10.2931190Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-09-07T06:14:10.2932150Z adding 'torch/include/ATen/ops/trapz.h' 2025-09-07T06:14:10.2933140Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2933890Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-09-07T06:14:10.2934830Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-09-07T06:14:10.2935880Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-09-07T06:14:10.2936950Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2937760Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-09-07T06:14:10.2938680Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-09-07T06:14:10.2939610Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-09-07T06:14:10.2940520Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-09-07T06:14:10.2941390Z adding 'torch/include/ATen/ops/triangular_solve_mps_dispatch.h' 2025-09-07T06:14:10.2942310Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-09-07T06:14:10.2943410Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-09-07T06:14:10.2944290Z adding 'torch/include/ATen/ops/tril.h' 2025-09-07T06:14:10.2945300Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2946070Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-09-07T06:14:10.2946980Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-09-07T06:14:10.2947960Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-09-07T06:14:10.2949000Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2949870Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-09-07T06:14:10.2950840Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-09-07T06:14:10.2951640Z adding 'torch/include/ATen/ops/tril_indices_mps_dispatch.h' 2025-09-07T06:14:10.2952510Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-09-07T06:14:10.2953570Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-09-07T06:14:10.2954540Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-09-07T06:14:10.2955480Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-09-07T06:14:10.2956340Z adding 'torch/include/ATen/ops/tril_mps_dispatch.h' 2025-09-07T06:14:10.2957190Z adding 'torch/include/ATen/ops/tril_native.h' 2025-09-07T06:14:10.2958340Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-09-07T06:14:10.2959330Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-09-07T06:14:10.2960310Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2961230Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-09-07T06:14:10.2962280Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-09-07T06:14:10.2963140Z adding 'torch/include/ATen/ops/triu.h' 2025-09-07T06:14:10.2964140Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2964870Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-09-07T06:14:10.2965770Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-09-07T06:14:10.2966750Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-09-07T06:14:10.2967730Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2968530Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-09-07T06:14:10.2969500Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-09-07T06:14:10.2970360Z adding 'torch/include/ATen/ops/triu_indices_mps_dispatch.h' 2025-09-07T06:14:10.2971210Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-09-07T06:14:10.2972200Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-09-07T06:14:10.2973150Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-09-07T06:14:10.2974020Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-09-07T06:14:10.2974880Z adding 'torch/include/ATen/ops/triu_mps_dispatch.h' 2025-09-07T06:14:10.2975710Z adding 'torch/include/ATen/ops/triu_native.h' 2025-09-07T06:14:10.2976770Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-09-07T06:14:10.2977700Z adding 'torch/include/ATen/ops/true_divide.h' 2025-09-07T06:14:10.2978690Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2979460Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-09-07T06:14:10.2980570Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-09-07T06:14:10.2981470Z adding 'torch/include/ATen/ops/trunc.h' 2025-09-07T06:14:10.2982470Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.2983220Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-09-07T06:14:10.2984130Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-09-07T06:14:10.2984940Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-09-07T06:14:10.2985800Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-09-07T06:14:10.2986610Z adding 'torch/include/ATen/ops/trunc_mps_dispatch.h' 2025-09-07T06:14:10.2987540Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-09-07T06:14:10.2988500Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-09-07T06:14:10.2989430Z adding 'torch/include/ATen/ops/trunc_sparsecsrmps_dispatch.h' 2025-09-07T06:14:10.2990230Z adding 'torch/include/ATen/ops/trunc_sparsemps_dispatch.h' 2025-09-07T06:14:10.2991110Z adding 'torch/include/ATen/ops/type_as.h' 2025-09-07T06:14:10.2992060Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2992810Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-09-07T06:14:10.2993710Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-09-07T06:14:10.2994650Z adding 'torch/include/ATen/ops/unbind.h' 2025-09-07T06:14:10.2995660Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2996490Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.2997310Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-09-07T06:14:10.2998350Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.2999290Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3000010Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-09-07T06:14:10.3000950Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-09-07T06:14:10.3001930Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-09-07T06:14:10.3002900Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-09-07T06:14:10.3003920Z adding 'torch/include/ATen/ops/unflatten.h' 2025-09-07T06:14:10.3004930Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3005830Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-09-07T06:14:10.3006810Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3007570Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-09-07T06:14:10.3008520Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-09-07T06:14:10.3009390Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-09-07T06:14:10.3010380Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-09-07T06:14:10.3011160Z adding 'torch/include/ATen/ops/unfold.h' 2025-09-07T06:14:10.3012300Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-09-07T06:14:10.3013390Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3014220Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-09-07T06:14:10.3015030Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-09-07T06:14:10.3015850Z adding 'torch/include/ATen/ops/unfold_backward_mps_dispatch.h' 2025-09-07T06:14:10.3016760Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-09-07T06:14:10.3017770Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-09-07T06:14:10.3018680Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-09-07T06:14:10.3019660Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3020680Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3021400Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-09-07T06:14:10.3022330Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-09-07T06:14:10.3023210Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-09-07T06:14:10.3024080Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-09-07T06:14:10.3024930Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-09-07T06:14:10.3025710Z adding 'torch/include/ATen/ops/unfold_mps_dispatch.h' 2025-09-07T06:14:10.3026550Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-09-07T06:14:10.3027530Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-09-07T06:14:10.3028470Z adding 'torch/include/ATen/ops/uniform.h' 2025-09-07T06:14:10.3029450Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3030240Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-09-07T06:14:10.3031130Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-09-07T06:14:10.3031940Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-09-07T06:14:10.3032720Z adding 'torch/include/ATen/ops/uniform_mps_dispatch.h' 2025-09-07T06:14:10.3033570Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-09-07T06:14:10.3034670Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-09-07T06:14:10.3035680Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-09-07T06:14:10.3036680Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3037510Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-09-07T06:14:10.3038410Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-09-07T06:14:10.3039270Z adding 'torch/include/ATen/ops/unique_consecutive_mps_dispatch.h' 2025-09-07T06:14:10.3040140Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-09-07T06:14:10.3041150Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-09-07T06:14:10.3042200Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-09-07T06:14:10.3043220Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3044130Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-09-07T06:14:10.3045160Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3046070Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-09-07T06:14:10.3046940Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-09-07T06:14:10.3047760Z adding 'torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h' 2025-09-07T06:14:10.3048650Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-09-07T06:14:10.3049780Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-09-07T06:14:10.3050670Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-09-07T06:14:10.3051550Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-09-07T06:14:10.3052460Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-09-07T06:14:10.3053500Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-09-07T06:14:10.3054390Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-09-07T06:14:10.3055360Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3056120Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-09-07T06:14:10.3057130Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-09-07T06:14:10.3058170Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-09-07T06:14:10.3059170Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3059960Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-09-07T06:14:10.3060980Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-09-07T06:14:10.3062080Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-09-07T06:14:10.3063140Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3063900Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-09-07T06:14:10.3064920Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-09-07T06:14:10.3065750Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-09-07T06:14:10.3066720Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3067510Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-09-07T06:14:10.3068570Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3069480Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3070190Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-09-07T06:14:10.3071110Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-09-07T06:14:10.3072030Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-09-07T06:14:10.3072960Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-09-07T06:14:10.3074220Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-09-07T06:14:10.3075490Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-09-07T06:14:10.3076670Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3077540Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-09-07T06:14:10.3078470Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-09-07T06:14:10.3079360Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-09-07T06:14:10.3080340Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-09-07T06:14:10.3081240Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h' 2025-09-07T06:14:10.3082140Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-09-07T06:14:10.3083170Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-09-07T06:14:10.3084260Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3085140Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3085990Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-09-07T06:14:10.3086900Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-09-07T06:14:10.3087830Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-09-07T06:14:10.3088720Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-09-07T06:14:10.3089600Z adding 'torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h' 2025-09-07T06:14:10.3090490Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-09-07T06:14:10.3091600Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-09-07T06:14:10.3093250Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-09-07T06:14:10.3094510Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-09-07T06:14:10.3095550Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3096790Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-09-07T06:14:10.3097700Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-09-07T06:14:10.3098560Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-09-07T06:14:10.3099460Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-09-07T06:14:10.3100430Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h' 2025-09-07T06:14:10.3101350Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-09-07T06:14:10.3102340Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-09-07T06:14:10.3103320Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3104330Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3105170Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3106010Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-09-07T06:14:10.3106880Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-09-07T06:14:10.3107820Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-09-07T06:14:10.3108720Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-09-07T06:14:10.3109600Z adding 'torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h' 2025-09-07T06:14:10.3110550Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-09-07T06:14:10.3111740Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-09-07T06:14:10.3112970Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-09-07T06:14:10.3114210Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-09-07T06:14:10.3115310Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3116240Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-09-07T06:14:10.3117140Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-09-07T06:14:10.3117970Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-09-07T06:14:10.3118900Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-09-07T06:14:10.3119810Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h' 2025-09-07T06:14:10.3120710Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-09-07T06:14:10.3121780Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-09-07T06:14:10.3122780Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3123690Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3124550Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-09-07T06:14:10.3125420Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-09-07T06:14:10.3126260Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-09-07T06:14:10.3127240Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-09-07T06:14:10.3128100Z adding 'torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h' 2025-09-07T06:14:10.3129000Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-09-07T06:14:10.3130010Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-09-07T06:14:10.3131270Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-09-07T06:14:10.3132480Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-09-07T06:14:10.3133550Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3134400Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-09-07T06:14:10.3135330Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-09-07T06:14:10.3136190Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-09-07T06:14:10.3137090Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-09-07T06:14:10.3137940Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h' 2025-09-07T06:14:10.3138880Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-09-07T06:14:10.3139960Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-09-07T06:14:10.3140990Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3141900Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3142850Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-09-07T06:14:10.3143710Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-09-07T06:14:10.3144550Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-09-07T06:14:10.3145420Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-09-07T06:14:10.3146340Z adding 'torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h' 2025-09-07T06:14:10.3147240Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-09-07T06:14:10.3148250Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-09-07T06:14:10.3149640Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-09-07T06:14:10.3150950Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-09-07T06:14:10.3152050Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3152910Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-09-07T06:14:10.3153830Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-09-07T06:14:10.3154750Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-09-07T06:14:10.3155660Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-09-07T06:14:10.3156520Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h' 2025-09-07T06:14:10.3157410Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-09-07T06:14:10.3158530Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-09-07T06:14:10.3159500Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3160430Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3161460Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3162370Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-09-07T06:14:10.3163250Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-09-07T06:14:10.3164100Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-09-07T06:14:10.3164980Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-09-07T06:14:10.3165880Z adding 'torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h' 2025-09-07T06:14:10.3166830Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-09-07T06:14:10.3167910Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-09-07T06:14:10.3169160Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-09-07T06:14:10.3170530Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-09-07T06:14:10.3171600Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3172450Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-09-07T06:14:10.3173390Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-09-07T06:14:10.3174280Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-09-07T06:14:10.3175210Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-09-07T06:14:10.3176110Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_mps_dispatch.h' 2025-09-07T06:14:10.3177000Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-09-07T06:14:10.3181540Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-09-07T06:14:10.3181910Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3182160Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3182280Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-09-07T06:14:10.3182410Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-09-07T06:14:10.3182620Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-09-07T06:14:10.3183490Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-09-07T06:14:10.3184390Z adding 'torch/include/ATen/ops/upsample_nearest3d_mps_dispatch.h' 2025-09-07T06:14:10.3185370Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-09-07T06:14:10.3186430Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-09-07T06:14:10.3187750Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-09-07T06:14:10.3189070Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-09-07T06:14:10.3190230Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3191120Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-09-07T06:14:10.3192050Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-09-07T06:14:10.3192910Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-09-07T06:14:10.3193980Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-09-07T06:14:10.3194930Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_mps_dispatch.h' 2025-09-07T06:14:10.3195830Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-09-07T06:14:10.3196810Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-09-07T06:14:10.3197950Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3198770Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3199660Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-09-07T06:14:10.3200550Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-09-07T06:14:10.3201470Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-09-07T06:14:10.3202400Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-09-07T06:14:10.3203280Z adding 'torch/include/ATen/ops/upsample_trilinear3d_mps_dispatch.h' 2025-09-07T06:14:10.3204180Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-09-07T06:14:10.3205330Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-09-07T06:14:10.3206340Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-09-07T06:14:10.3207350Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3208150Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-09-07T06:14:10.3209190Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-09-07T06:14:10.3209960Z adding 'torch/include/ATen/ops/values.h' 2025-09-07T06:14:10.3210940Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3211740Z adding 'torch/include/ATen/ops/values_copy.h' 2025-09-07T06:14:10.3212830Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3213720Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3214440Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-09-07T06:14:10.3215390Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-09-07T06:14:10.3216310Z adding 'torch/include/ATen/ops/values_native.h' 2025-09-07T06:14:10.3217220Z adding 'torch/include/ATen/ops/values_ops.h' 2025-09-07T06:14:10.3218130Z adding 'torch/include/ATen/ops/values_sparsemps_dispatch.h' 2025-09-07T06:14:10.3218970Z adding 'torch/include/ATen/ops/vander.h' 2025-09-07T06:14:10.3220000Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3220770Z adding 'torch/include/ATen/ops/vander_native.h' 2025-09-07T06:14:10.3221690Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-09-07T06:14:10.3222800Z adding 'torch/include/ATen/ops/var.h' 2025-09-07T06:14:10.3223940Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3224800Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-09-07T06:14:10.3225620Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-09-07T06:14:10.3226660Z adding 'torch/include/ATen/ops/var_mean.h' 2025-09-07T06:14:10.3227750Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3228690Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3229510Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-09-07T06:14:10.3230330Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-09-07T06:14:10.3231240Z adding 'torch/include/ATen/ops/var_mean_mps_dispatch.h' 2025-09-07T06:14:10.3232150Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-09-07T06:14:10.3233350Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-09-07T06:14:10.3234250Z adding 'torch/include/ATen/ops/var_mps_dispatch.h' 2025-09-07T06:14:10.3235240Z adding 'torch/include/ATen/ops/var_native.h' 2025-09-07T06:14:10.3236520Z adding 'torch/include/ATen/ops/var_ops.h' 2025-09-07T06:14:10.3237440Z adding 'torch/include/ATen/ops/vdot.h' 2025-09-07T06:14:10.3238440Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3239290Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-09-07T06:14:10.3240120Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-09-07T06:14:10.3240970Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-09-07T06:14:10.3241880Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-09-07T06:14:10.3242820Z adding 'torch/include/ATen/ops/view.h' 2025-09-07T06:14:10.3243670Z adding 'torch/include/ATen/ops/view_as.h' 2025-09-07T06:14:10.3244520Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-09-07T06:14:10.3245420Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-09-07T06:14:10.3246460Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3247380Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3248100Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-09-07T06:14:10.3249010Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-09-07T06:14:10.3249950Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-09-07T06:14:10.3250770Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-09-07T06:14:10.3251590Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-09-07T06:14:10.3252380Z adding 'torch/include/ATen/ops/view_as_complex_mps_dispatch.h' 2025-09-07T06:14:10.3253270Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-09-07T06:14:10.3254180Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-09-07T06:14:10.3255090Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3255860Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-09-07T06:14:10.3256810Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-09-07T06:14:10.3257680Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-09-07T06:14:10.3258570Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-09-07T06:14:10.3259530Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3260500Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3261230Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-09-07T06:14:10.3262180Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-09-07T06:14:10.3263060Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-09-07T06:14:10.3263960Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-09-07T06:14:10.3264780Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-09-07T06:14:10.3265560Z adding 'torch/include/ATen/ops/view_as_real_mps_dispatch.h' 2025-09-07T06:14:10.3266410Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-09-07T06:14:10.3267370Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-09-07T06:14:10.3268310Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3269340Z adding 'torch/include/ATen/ops/view_copy.h' 2025-09-07T06:14:10.3270380Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3271460Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3272230Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-09-07T06:14:10.3273290Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-09-07T06:14:10.3274220Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-09-07T06:14:10.3275160Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-09-07T06:14:10.3276030Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-09-07T06:14:10.3276850Z adding 'torch/include/ATen/ops/view_mps_dispatch.h' 2025-09-07T06:14:10.3277700Z adding 'torch/include/ATen/ops/view_native.h' 2025-09-07T06:14:10.3278720Z adding 'torch/include/ATen/ops/view_ops.h' 2025-09-07T06:14:10.3279610Z adding 'torch/include/ATen/ops/vsplit.h' 2025-09-07T06:14:10.3280580Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3281350Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-09-07T06:14:10.3282360Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-09-07T06:14:10.3283290Z adding 'torch/include/ATen/ops/vstack.h' 2025-09-07T06:14:10.3284220Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3284990Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-09-07T06:14:10.3286030Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-09-07T06:14:10.3287020Z adding 'torch/include/ATen/ops/where.h' 2025-09-07T06:14:10.3287990Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3288810Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-09-07T06:14:10.3289730Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-09-07T06:14:10.3290550Z adding 'torch/include/ATen/ops/where_mps_dispatch.h' 2025-09-07T06:14:10.3291440Z adding 'torch/include/ATen/ops/where_native.h' 2025-09-07T06:14:10.3292540Z adding 'torch/include/ATen/ops/where_ops.h' 2025-09-07T06:14:10.3293660Z adding 'torch/include/ATen/ops/xlogy.h' 2025-09-07T06:14:10.3294660Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3295560Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-09-07T06:14:10.3296310Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-09-07T06:14:10.3297230Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-09-07T06:14:10.3298070Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-09-07T06:14:10.3298930Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-09-07T06:14:10.3299770Z adding 'torch/include/ATen/ops/xlogy_mps_dispatch.h' 2025-09-07T06:14:10.3300710Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-09-07T06:14:10.3301910Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-09-07T06:14:10.3302800Z adding 'torch/include/ATen/ops/xor.h' 2025-09-07T06:14:10.3303770Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-09-07T06:14:10.3304600Z adding 'torch/include/ATen/ops/xor_native.h' 2025-09-07T06:14:10.3305640Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-09-07T06:14:10.3306540Z adding 'torch/include/ATen/ops/zero.h' 2025-09-07T06:14:10.3307480Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3308370Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-09-07T06:14:10.3309190Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-09-07T06:14:10.3310000Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-09-07T06:14:10.3310790Z adding 'torch/include/ATen/ops/zero_mps_dispatch.h' 2025-09-07T06:14:10.3311730Z adding 'torch/include/ATen/ops/zero_native.h' 2025-09-07T06:14:10.3312670Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-09-07T06:14:10.3313890Z adding 'torch/include/ATen/ops/zero_sparsemps_dispatch.h' 2025-09-07T06:14:10.3315130Z adding 'torch/include/ATen/ops/zeros.h' 2025-09-07T06:14:10.3316300Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3317240Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-09-07T06:14:10.3318270Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-09-07T06:14:10.3319220Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-09-07T06:14:10.3320040Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-09-07T06:14:10.3321050Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-09-07T06:14:10.3321940Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-09-07T06:14:10.3323000Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-09-07T06:14:10.3325990Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-09-07T06:14:10.3328100Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-09-07T06:14:10.3329190Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-09-07T06:14:10.3329990Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-09-07T06:14:10.3330900Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-09-07T06:14:10.3331720Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-09-07T06:14:10.3333690Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-09-07T06:14:10.3334360Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-09-07T06:14:10.3335620Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-09-07T06:14:10.3340480Z adding 'torch/include/c10/core/Allocator.h' 2025-09-07T06:14:10.3343830Z adding 'torch/include/c10/core/AllocatorConfig.h' 2025-09-07T06:14:10.3344610Z adding 'torch/include/c10/core/AutogradState.h' 2025-09-07T06:14:10.3347100Z adding 'torch/include/c10/core/Backend.h' 2025-09-07T06:14:10.3347950Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-09-07T06:14:10.3349450Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-09-07T06:14:10.3350500Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-09-07T06:14:10.3351730Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-09-07T06:14:10.3354120Z adding 'torch/include/c10/core/Contiguity.h' 2025-09-07T06:14:10.3354840Z adding 'torch/include/c10/core/CopyBytes.h' 2025-09-07T06:14:10.3355690Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-09-07T06:14:10.3356760Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-09-07T06:14:10.3358910Z adding 'torch/include/c10/core/Device.h' 2025-09-07T06:14:10.3359550Z adding 'torch/include/c10/core/DeviceArray.h' 2025-09-07T06:14:10.3361830Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-09-07T06:14:10.3363140Z adding 'torch/include/c10/core/DeviceType.h' 2025-09-07T06:14:10.3370930Z adding 'torch/include/c10/core/DispatchKey.h' 2025-09-07T06:14:10.3380520Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-09-07T06:14:10.3382060Z adding 'torch/include/c10/core/DynamicCast.h' 2025-09-07T06:14:10.3383920Z adding 'torch/include/c10/core/Event.h' 2025-09-07T06:14:10.3385370Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-09-07T06:14:10.3386430Z adding 'torch/include/c10/core/GradMode.h' 2025-09-07T06:14:10.3387830Z adding 'torch/include/c10/core/InferenceMode.h' 2025-09-07T06:14:10.3388900Z adding 'torch/include/c10/core/Layout.h' 2025-09-07T06:14:10.3391570Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-09-07T06:14:10.3392240Z adding 'torch/include/c10/core/OptionalRef.h' 2025-09-07T06:14:10.3393570Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-09-07T06:14:10.3394510Z adding 'torch/include/c10/core/QEngine.h' 2025-09-07T06:14:10.3395600Z adding 'torch/include/c10/core/QScheme.h' 2025-09-07T06:14:10.3396760Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-09-07T06:14:10.3398070Z adding 'torch/include/c10/core/SafePyObject.h' 2025-09-07T06:14:10.3401330Z adding 'torch/include/c10/core/Scalar.h' 2025-09-07T06:14:10.3405320Z adding 'torch/include/c10/core/ScalarType.h' 2025-09-07T06:14:10.3406150Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-09-07T06:14:10.3408150Z adding 'torch/include/c10/core/Storage.h' 2025-09-07T06:14:10.3410770Z adding 'torch/include/c10/core/StorageImpl.h' 2025-09-07T06:14:10.3412890Z adding 'torch/include/c10/core/Stream.h' 2025-09-07T06:14:10.3414270Z adding 'torch/include/c10/core/StreamGuard.h' 2025-09-07T06:14:10.3415610Z adding 'torch/include/c10/core/SymBool.h' 2025-09-07T06:14:10.3416930Z adding 'torch/include/c10/core/SymFloat.h' 2025-09-07T06:14:10.3420670Z adding 'torch/include/c10/core/SymInt.h' 2025-09-07T06:14:10.3421670Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-09-07T06:14:10.3423310Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-09-07T06:14:10.3425080Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-09-07T06:14:10.3451340Z adding 'torch/include/c10/core/TensorImpl.h' 2025-09-07T06:14:10.3457500Z adding 'torch/include/c10/core/TensorOptions.h' 2025-09-07T06:14:10.3458460Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-09-07T06:14:10.3459390Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-09-07T06:14:10.3460360Z adding 'torch/include/c10/core/alignment.h' 2025-09-07T06:14:10.3461620Z adding 'torch/include/c10/core/thread_pool.h' 2025-09-07T06:14:10.3463240Z adding 'torch/include/c10/core/impl/COW.h' 2025-09-07T06:14:10.3464260Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-09-07T06:14:10.3467910Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-09-07T06:14:10.3468890Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-09-07T06:14:10.3469830Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-09-07T06:14:10.3471080Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-09-07T06:14:10.3474870Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-09-07T06:14:10.3476050Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-09-07T06:14:10.3478750Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-09-07T06:14:10.3480180Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-09-07T06:14:10.3483030Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-09-07T06:14:10.3483800Z adding 'torch/include/c10/core/impl/PyInterpreterHooks.h' 2025-09-07T06:14:10.3485780Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-09-07T06:14:10.3486450Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-09-07T06:14:10.3488720Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-09-07T06:14:10.3489650Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-09-07T06:14:10.3490820Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-09-07T06:14:10.3491710Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-09-07T06:14:10.3493140Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-09-07T06:14:10.3494710Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-09-07T06:14:10.3498720Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-09-07T06:14:10.3499960Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-09-07T06:14:10.3502270Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-09-07T06:14:10.3503380Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-09-07T06:14:10.3505020Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-09-07T06:14:10.3506020Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-09-07T06:14:10.3508650Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-09-07T06:14:10.3509420Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-09-07T06:14:10.3510560Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-09-07T06:14:10.3511450Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-09-07T06:14:10.3514460Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-09-07T06:14:10.3515600Z adding 'torch/include/c10/cuda/driver_api.h' 2025-09-07T06:14:10.3518340Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-09-07T06:14:10.3518880Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-09-07T06:14:10.3519970Z adding 'torch/include/c10/macros/Export.h' 2025-09-07T06:14:10.3520730Z adding 'torch/include/c10/macros/Macros.h' 2025-09-07T06:14:10.3521540Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-09-07T06:14:10.3523540Z adding 'torch/include/c10/metal/atomic.h' 2025-09-07T06:14:10.3524340Z adding 'torch/include/c10/metal/common.h' 2025-09-07T06:14:10.3525740Z adding 'torch/include/c10/metal/expm1f.h' 2025-09-07T06:14:10.3533370Z adding 'torch/include/c10/metal/igamma.h' 2025-09-07T06:14:10.3536560Z adding 'torch/include/c10/metal/indexing.h' 2025-09-07T06:14:10.3537620Z adding 'torch/include/c10/metal/random.h' 2025-09-07T06:14:10.3539960Z adding 'torch/include/c10/metal/reduction_utils.h' 2025-09-07T06:14:10.3549030Z adding 'torch/include/c10/metal/special_math.h' 2025-09-07T06:14:10.3551240Z adding 'torch/include/c10/metal/utils.h' 2025-09-07T06:14:10.3553380Z adding 'torch/include/c10/mobile/CPUCachingAllocator.h' 2025-09-07T06:14:10.3554700Z adding 'torch/include/c10/mobile/CPUProfilingAllocator.h' 2025-09-07T06:14:10.3556100Z adding 'torch/include/c10/test/util/Macros.h' 2025-09-07T06:14:10.3558980Z adding 'torch/include/c10/test/util/complex_math_test_common.h' 2025-09-07T06:14:10.3562320Z adding 'torch/include/c10/test/util/complex_test_common.h' 2025-09-07T06:14:10.3564620Z adding 'torch/include/c10/util/AbortHandler.h' 2025-09-07T06:14:10.3565910Z adding 'torch/include/c10/util/AlignOf.h' 2025-09-07T06:14:10.3567370Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-09-07T06:14:10.3568280Z adding 'torch/include/c10/util/Array.h' 2025-09-07T06:14:10.3570990Z adding 'torch/include/c10/util/ArrayRef.h' 2025-09-07T06:14:10.3571520Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-09-07T06:14:10.3573630Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-09-07T06:14:10.3574130Z adding 'torch/include/c10/util/BFloat16.h' 2025-09-07T06:14:10.3575170Z adding 'torch/include/c10/util/Backtrace.h' 2025-09-07T06:14:10.3576510Z adding 'torch/include/c10/util/Bitset.h' 2025-09-07T06:14:10.3577630Z adding 'torch/include/c10/util/C++17.h' 2025-09-07T06:14:10.3578720Z adding 'torch/include/c10/util/CallOnce.h' 2025-09-07T06:14:10.3581310Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-09-07T06:14:10.3582180Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-09-07T06:14:10.3583390Z adding 'torch/include/c10/util/Deprecated.h' 2025-09-07T06:14:10.3584270Z adding 'torch/include/c10/util/DimVector.h' 2025-09-07T06:14:10.3585330Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-09-07T06:14:10.3586670Z adding 'torch/include/c10/util/Enumerate.h' 2025-09-07T06:14:10.3592700Z adding 'torch/include/c10/util/Exception.h' 2025-09-07T06:14:10.3593980Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-09-07T06:14:10.3595250Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-09-07T06:14:10.3596080Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-09-07T06:14:10.3598710Z adding 'torch/include/c10/util/Flags.h' 2025-09-07T06:14:10.3599180Z adding 'torch/include/c10/util/Float4_e2m1fn_x2.h' 2025-09-07T06:14:10.3600010Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-09-07T06:14:10.3600690Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-09-07T06:14:10.3601420Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-09-07T06:14:10.3602120Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-09-07T06:14:10.3602900Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-09-07T06:14:10.3603610Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-09-07T06:14:10.3604340Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-09-07T06:14:10.3605010Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-09-07T06:14:10.3605810Z adding 'torch/include/c10/util/Float8_e8m0fnu-inl.h' 2025-09-07T06:14:10.3606510Z adding 'torch/include/c10/util/Float8_e8m0fnu.h' 2025-09-07T06:14:10.3607650Z adding 'torch/include/c10/util/FunctionRef.h' 2025-09-07T06:14:10.3608590Z adding 'torch/include/c10/util/Gauge.h' 2025-09-07T06:14:10.3609410Z adding 'torch/include/c10/util/Half-inl.h' 2025-09-07T06:14:10.3610230Z adding 'torch/include/c10/util/Half.h' 2025-09-07T06:14:10.3611360Z adding 'torch/include/c10/util/IdWrapper.h' 2025-09-07T06:14:10.3612810Z adding 'torch/include/c10/util/IntrusiveList.h' 2025-09-07T06:14:10.3614070Z adding 'torch/include/c10/util/Lazy.h' 2025-09-07T06:14:10.3616260Z adding 'torch/include/c10/util/LeftRight.h' 2025-09-07T06:14:10.3616900Z adding 'torch/include/c10/util/Load.h' 2025-09-07T06:14:10.3619880Z adding 'torch/include/c10/util/Logging.h' 2025-09-07T06:14:10.3620840Z adding 'torch/include/c10/util/MathConstants.h' 2025-09-07T06:14:10.3622920Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-09-07T06:14:10.3624680Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-09-07T06:14:10.3625430Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-09-07T06:14:10.3626500Z adding 'torch/include/c10/util/Optional.h' 2025-09-07T06:14:10.3628510Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-09-07T06:14:10.3628970Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-09-07T06:14:10.3631730Z adding 'torch/include/c10/util/Registry.h' 2025-09-07T06:14:10.3632540Z adding 'torch/include/c10/util/ScopeExit.h' 2025-09-07T06:14:10.3633540Z adding 'torch/include/c10/util/Semaphore.h' 2025-09-07T06:14:10.3634540Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-09-07T06:14:10.3644870Z adding 'torch/include/c10/util/SmallVector.h' 2025-09-07T06:14:10.3647120Z adding 'torch/include/c10/util/StringUtil.h' 2025-09-07T06:14:10.3647960Z adding 'torch/include/c10/util/Synchronized.h' 2025-09-07T06:14:10.3649290Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-09-07T06:14:10.3650570Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-09-07T06:14:10.3651430Z adding 'torch/include/c10/util/Type.h' 2025-09-07T06:14:10.3653400Z adding 'torch/include/c10/util/TypeCast.h' 2025-09-07T06:14:10.3654380Z adding 'torch/include/c10/util/TypeIndex.h' 2025-09-07T06:14:10.3657710Z adding 'torch/include/c10/util/TypeList.h' 2025-09-07T06:14:10.3658250Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-09-07T06:14:10.3659860Z adding 'torch/include/c10/util/TypeTraits.h' 2025-09-07T06:14:10.3660540Z adding 'torch/include/c10/util/Unicode.h' 2025-09-07T06:14:10.3662520Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-09-07T06:14:10.3663050Z adding 'torch/include/c10/util/Unroll.h' 2025-09-07T06:14:10.3664230Z adding 'torch/include/c10/util/WaitCounter.h' 2025-09-07T06:14:10.3665150Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-09-07T06:14:10.3666390Z adding 'torch/include/c10/util/accumulate.h' 2025-09-07T06:14:10.3667140Z adding 'torch/include/c10/util/bit_cast.h' 2025-09-07T06:14:10.3667890Z adding 'torch/include/c10/util/bits.h' 2025-09-07T06:14:10.3669000Z adding 'torch/include/c10/util/complex.h' 2025-09-07T06:14:10.3671290Z adding 'torch/include/c10/util/complex_math.h' 2025-09-07T06:14:10.3672010Z adding 'torch/include/c10/util/complex_utils.h' 2025-09-07T06:14:10.3672920Z adding 'torch/include/c10/util/copysign.h' 2025-09-07T06:14:10.3673800Z adding 'torch/include/c10/util/env.h' 2025-09-07T06:14:10.3674750Z adding 'torch/include/c10/util/error.h' 2025-09-07T06:14:10.3685310Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-09-07T06:14:10.3686470Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-09-07T06:14:10.3688110Z adding 'torch/include/c10/util/generic_math.h' 2025-09-07T06:14:10.3690950Z adding 'torch/include/c10/util/hash.h' 2025-09-07T06:14:10.3693820Z adding 'torch/include/c10/util/int128.h' 2025-09-07T06:14:10.3701240Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-09-07T06:14:10.3702530Z adding 'torch/include/c10/util/irange.h' 2025-09-07T06:14:10.3708410Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-09-07T06:14:10.3709640Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-09-07T06:14:10.3711960Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-09-07T06:14:10.3712600Z adding 'torch/include/c10/util/numa.h' 2025-09-07T06:14:10.3724140Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-09-07T06:14:10.3725480Z adding 'torch/include/c10/util/overflows.h' 2025-09-07T06:14:10.3726430Z adding 'torch/include/c10/util/overloaded.h' 2025-09-07T06:14:10.3727240Z adding 'torch/include/c10/util/python_stub.h' 2025-09-07T06:14:10.3727990Z adding 'torch/include/c10/util/qint32.h' 2025-09-07T06:14:10.3728720Z adding 'torch/include/c10/util/qint8.h' 2025-09-07T06:14:10.3729450Z adding 'torch/include/c10/util/quint2x4.h' 2025-09-07T06:14:10.3730170Z adding 'torch/include/c10/util/quint4x2.h' 2025-09-07T06:14:10.3730890Z adding 'torch/include/c10/util/quint8.h' 2025-09-07T06:14:10.3732070Z adding 'torch/include/c10/util/safe_numerics.h' 2025-09-07T06:14:10.3733720Z adding 'torch/include/c10/util/signal_handler.h' 2025-09-07T06:14:10.3738830Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-09-07T06:14:10.3739720Z adding 'torch/include/c10/util/ssize.h' 2025-09-07T06:14:10.3740690Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-09-07T06:14:10.3742810Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-09-07T06:14:10.3743410Z adding 'torch/include/c10/util/strides.h' 2025-09-07T06:14:10.3744240Z adding 'torch/include/c10/util/string_utils.h' 2025-09-07T06:14:10.3747900Z adding 'torch/include/c10/util/string_view.h' 2025-09-07T06:14:10.3752830Z adding 'torch/include/c10/util/strong_type.h' 2025-09-07T06:14:10.3754380Z adding 'torch/include/c10/util/tempfile.h' 2025-09-07T06:14:10.3755230Z adding 'torch/include/c10/util/thread_name.h' 2025-09-07T06:14:10.3760390Z adding 'torch/include/c10/util/typeid.h' 2025-09-07T06:14:10.3761170Z adding 'torch/include/c10/util/win32-headers.h' 2025-09-07T06:14:10.3762500Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-09-07T06:14:10.3765050Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-09-07T06:14:10.3765690Z adding 'torch/include/c10/xpu/XPUException.h' 2025-09-07T06:14:10.3766650Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-09-07T06:14:10.3767530Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-09-07T06:14:10.3769810Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-09-07T06:14:10.3772010Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-09-07T06:14:10.3782240Z adding 'torch/include/c10/xpu/test/impl/XPUTest.h' 2025-09-07T06:14:10.3782320Z adding 'torch/include/caffe2/core/common.h' 2025-09-07T06:14:10.3782390Z adding 'torch/include/caffe2/core/macros.h' 2025-09-07T06:14:10.3782460Z adding 'torch/include/caffe2/core/timer.h' 2025-09-07T06:14:10.3782580Z adding 'torch/include/caffe2/perfkernels/batch_box_cox_vec.h' 2025-09-07T06:14:10.3782670Z adding 'torch/include/caffe2/perfkernels/common.h' 2025-09-07T06:14:10.3782800Z adding 'torch/include/caffe2/perfkernels/embedding_lookup_idx.h' 2025-09-07T06:14:10.3806800Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-09-07T06:14:10.3807930Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-09-07T06:14:10.3808990Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-09-07T06:14:10.3811970Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-09-07T06:14:10.3812540Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-09-07T06:14:10.3813490Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-09-07T06:14:10.3815720Z adding 'torch/include/caffe2/serialize/versions.h' 2025-09-07T06:14:10.3817050Z adding 'torch/include/caffe2/utils/fixed_divisor.h' 2025-09-07T06:14:10.3818020Z adding 'torch/include/caffe2/utils/proto_wrap.h' 2025-09-07T06:14:10.3818980Z adding 'torch/include/caffe2/utils/string_utils.h' 2025-09-07T06:14:10.3820670Z adding 'torch/include/caffe2/utils/threadpool/ThreadPool.h' 2025-09-07T06:14:10.3821600Z adding 'torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h' 2025-09-07T06:14:10.3824790Z adding 'torch/include/caffe2/utils/threadpool/WorkersPool.h' 2025-09-07T06:14:10.3825560Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h' 2025-09-07T06:14:10.3827550Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool.h' 2025-09-07T06:14:10.3828070Z adding 'torch/include/caffe2/utils/threadpool/thread_pool_guard.h' 2025-09-07T06:14:10.3830580Z adding 'torch/include/fmt/args.h' 2025-09-07T06:14:10.3853510Z adding 'torch/include/fmt/base.h' 2025-09-07T06:14:10.3868800Z adding 'torch/include/fmt/chrono.h' 2025-09-07T06:14:10.3874490Z adding 'torch/include/fmt/color.h' 2025-09-07T06:14:10.3878320Z adding 'torch/include/fmt/compile.h' 2025-09-07T06:14:10.3878990Z adding 'torch/include/fmt/core.h' 2025-09-07T06:14:10.3898520Z adding 'torch/include/fmt/format-inl.h' 2025-09-07T06:14:10.3934630Z adding 'torch/include/fmt/format.h' 2025-09-07T06:14:10.3939280Z adding 'torch/include/fmt/os.h' 2025-09-07T06:14:10.3940730Z adding 'torch/include/fmt/ostream.h' 2025-09-07T06:14:10.3945410Z adding 'torch/include/fmt/printf.h' 2025-09-07T06:14:10.3950520Z adding 'torch/include/fmt/ranges.h' 2025-09-07T06:14:10.3954800Z adding 'torch/include/fmt/std.h' 2025-09-07T06:14:10.3957370Z adding 'torch/include/fmt/xchar.h' 2025-09-07T06:14:10.3958590Z adding 'torch/include/fp16/bitcasts.h' 2025-09-07T06:14:10.3962120Z adding 'torch/include/fp16/fp16.h' 2025-09-07T06:14:10.3963440Z adding 'torch/include/fp16/psimd.h' 2025-09-07T06:14:10.3966440Z adding 'torch/include/google/protobuf/any.h' 2025-09-07T06:14:10.3969080Z adding 'torch/include/google/protobuf/any.pb.h' 2025-09-07T06:14:10.3975530Z adding 'torch/include/google/protobuf/api.pb.h' 2025-09-07T06:14:10.3982510Z adding 'torch/include/google/protobuf/arena.h' 2025-09-07T06:14:10.3986210Z adding 'torch/include/google/protobuf/arena_impl.h' 2025-09-07T06:14:10.3989350Z adding 'torch/include/google/protobuf/arenastring.h' 2025-09-07T06:14:10.4009380Z adding 'torch/include/google/protobuf/descriptor.h' 2025-09-07T06:14:10.4059620Z adding 'torch/include/google/protobuf/descriptor.pb.h' 2025-09-07T06:14:10.4065920Z adding 'torch/include/google/protobuf/descriptor_database.h' 2025-09-07T06:14:10.4068120Z adding 'torch/include/google/protobuf/duration.pb.h' 2025-09-07T06:14:10.4070630Z adding 'torch/include/google/protobuf/dynamic_message.h' 2025-09-07T06:14:10.4072380Z adding 'torch/include/google/protobuf/empty.pb.h' 2025-09-07T06:14:10.4086310Z adding 'torch/include/google/protobuf/extension_set.h' 2025-09-07T06:14:10.4089020Z adding 'torch/include/google/protobuf/extension_set_inl.h' 2025-09-07T06:14:10.4091300Z adding 'torch/include/google/protobuf/field_mask.pb.h' 2025-09-07T06:14:10.4092630Z adding 'torch/include/google/protobuf/generated_enum_reflection.h' 2025-09-07T06:14:10.4093990Z adding 'torch/include/google/protobuf/generated_enum_util.h' 2025-09-07T06:14:10.4097330Z adding 'torch/include/google/protobuf/generated_message_reflection.h' 2025-09-07T06:14:10.4100250Z adding 'torch/include/google/protobuf/generated_message_table_driven.h' 2025-09-07T06:14:10.4102550Z adding 'torch/include/google/protobuf/generated_message_util.h' 2025-09-07T06:14:10.4103550Z adding 'torch/include/google/protobuf/has_bits.h' 2025-09-07T06:14:10.4105760Z adding 'torch/include/google/protobuf/implicit_weak_message.h' 2025-09-07T06:14:10.4107510Z adding 'torch/include/google/protobuf/inlined_string_field.h' 2025-09-07T06:14:10.4117700Z adding 'torch/include/google/protobuf/map.h' 2025-09-07T06:14:10.4119910Z adding 'torch/include/google/protobuf/map_entry.h' 2025-09-07T06:14:10.4125450Z adding 'torch/include/google/protobuf/map_entry_lite.h' 2025-09-07T06:14:10.4131410Z adding 'torch/include/google/protobuf/map_field.h' 2025-09-07T06:14:10.4134390Z adding 'torch/include/google/protobuf/map_field_inl.h' 2025-09-07T06:14:10.4136560Z adding 'torch/include/google/protobuf/map_field_lite.h' 2025-09-07T06:14:10.4141520Z adding 'torch/include/google/protobuf/map_type_handler.h' 2025-09-07T06:14:10.4155040Z adding 'torch/include/google/protobuf/message.h' 2025-09-07T06:14:10.4161670Z adding 'torch/include/google/protobuf/message_lite.h' 2025-09-07T06:14:10.4162640Z adding 'torch/include/google/protobuf/metadata.h' 2025-09-07T06:14:10.4165060Z adding 'torch/include/google/protobuf/metadata_lite.h' 2025-09-07T06:14:10.4171300Z adding 'torch/include/google/protobuf/parse_context.h' 2025-09-07T06:14:10.4172270Z adding 'torch/include/google/protobuf/port.h' 2025-09-07T06:14:10.4176560Z adding 'torch/include/google/protobuf/reflection.h' 2025-09-07T06:14:10.4177850Z adding 'torch/include/google/protobuf/reflection_ops.h' 2025-09-07T06:14:10.4198670Z adding 'torch/include/google/protobuf/repeated_field.h' 2025-09-07T06:14:10.4202610Z adding 'torch/include/google/protobuf/service.h' 2025-09-07T06:14:10.4204940Z adding 'torch/include/google/protobuf/source_context.pb.h' 2025-09-07T06:14:10.4210890Z adding 'torch/include/google/protobuf/struct.pb.h' 2025-09-07T06:14:10.4217190Z adding 'torch/include/google/protobuf/text_format.h' 2025-09-07T06:14:10.4219380Z adding 'torch/include/google/protobuf/timestamp.pb.h' 2025-09-07T06:14:10.4230550Z adding 'torch/include/google/protobuf/type.pb.h' 2025-09-07T06:14:10.4234170Z adding 'torch/include/google/protobuf/unknown_field_set.h' 2025-09-07T06:14:10.4237750Z adding 'torch/include/google/protobuf/wire_format.h' 2025-09-07T06:14:10.4250610Z adding 'torch/include/google/protobuf/wire_format_lite.h' 2025-09-07T06:14:10.4256560Z adding 'torch/include/google/protobuf/wrappers.pb.h' 2025-09-07T06:14:10.4259670Z adding 'torch/include/google/protobuf/compiler/code_generator.h' 2025-09-07T06:14:10.4264770Z adding 'torch/include/google/protobuf/compiler/command_line_interface.h' 2025-09-07T06:14:10.4268350Z adding 'torch/include/google/protobuf/compiler/importer.h' 2025-09-07T06:14:10.4274650Z adding 'torch/include/google/protobuf/compiler/parser.h' 2025-09-07T06:14:10.4276060Z adding 'torch/include/google/protobuf/compiler/plugin.h' 2025-09-07T06:14:10.4284820Z adding 'torch/include/google/protobuf/compiler/plugin.pb.h' 2025-09-07T06:14:10.4287230Z adding 'torch/include/google/protobuf/compiler/cpp/cpp_generator.h' 2025-09-07T06:14:10.4288530Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_generator.h' 2025-09-07T06:14:10.4289980Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_names.h' 2025-09-07T06:14:10.4291460Z adding 'torch/include/google/protobuf/compiler/java/java_generator.h' 2025-09-07T06:14:10.4292730Z adding 'torch/include/google/protobuf/compiler/java/java_names.h' 2025-09-07T06:14:10.4296010Z adding 'torch/include/google/protobuf/compiler/js/js_generator.h' 2025-09-07T06:14:10.4296940Z adding 'torch/include/google/protobuf/compiler/js/well_known_types_embed.h' 2025-09-07T06:14:10.4298960Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h' 2025-09-07T06:14:10.4301640Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h' 2025-09-07T06:14:10.4302840Z adding 'torch/include/google/protobuf/compiler/php/php_generator.h' 2025-09-07T06:14:10.4305100Z adding 'torch/include/google/protobuf/compiler/python/python_generator.h' 2025-09-07T06:14:10.4306180Z adding 'torch/include/google/protobuf/compiler/ruby/ruby_generator.h' 2025-09-07T06:14:10.4323120Z adding 'torch/include/google/protobuf/io/coded_stream.h' 2025-09-07T06:14:10.4325380Z adding 'torch/include/google/protobuf/io/gzip_stream.h' 2025-09-07T06:14:10.4326850Z adding 'torch/include/google/protobuf/io/io_win32.h' 2025-09-07T06:14:10.4330850Z adding 'torch/include/google/protobuf/io/printer.h' 2025-09-07T06:14:10.4331970Z adding 'torch/include/google/protobuf/io/strtod.h' 2025-09-07T06:14:10.4336550Z adding 'torch/include/google/protobuf/io/tokenizer.h' 2025-09-07T06:14:10.4339170Z adding 'torch/include/google/protobuf/io/zero_copy_stream.h' 2025-09-07T06:14:10.4341740Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl.h' 2025-09-07T06:14:10.4345340Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h' 2025-09-07T06:14:10.4348500Z adding 'torch/include/google/protobuf/stubs/bytestream.h' 2025-09-07T06:14:10.4351170Z adding 'torch/include/google/protobuf/stubs/callback.h' 2025-09-07T06:14:10.4352950Z adding 'torch/include/google/protobuf/stubs/casts.h' 2025-09-07T06:14:10.4355130Z adding 'torch/include/google/protobuf/stubs/common.h' 2025-09-07T06:14:10.4356690Z adding 'torch/include/google/protobuf/stubs/fastmem.h' 2025-09-07T06:14:10.4358050Z adding 'torch/include/google/protobuf/stubs/hash.h' 2025-09-07T06:14:10.4360500Z adding 'torch/include/google/protobuf/stubs/logging.h' 2025-09-07T06:14:10.4361850Z adding 'torch/include/google/protobuf/stubs/macros.h' 2025-09-07T06:14:10.4367550Z adding 'torch/include/google/protobuf/stubs/map_util.h' 2025-09-07T06:14:10.4369310Z adding 'torch/include/google/protobuf/stubs/mutex.h' 2025-09-07T06:14:10.4370310Z adding 'torch/include/google/protobuf/stubs/once.h' 2025-09-07T06:14:10.4371810Z adding 'torch/include/google/protobuf/stubs/platform_macros.h' 2025-09-07T06:14:10.4374760Z adding 'torch/include/google/protobuf/stubs/port.h' 2025-09-07T06:14:10.4375900Z adding 'torch/include/google/protobuf/stubs/status.h' 2025-09-07T06:14:10.4377290Z adding 'torch/include/google/protobuf/stubs/stl_util.h' 2025-09-07T06:14:10.4381600Z adding 'torch/include/google/protobuf/stubs/stringpiece.h' 2025-09-07T06:14:10.4389270Z adding 'torch/include/google/protobuf/stubs/strutil.h' 2025-09-07T06:14:10.4391070Z adding 'torch/include/google/protobuf/stubs/template_util.h' 2025-09-07T06:14:10.4393270Z adding 'torch/include/google/protobuf/util/delimited_message_util.h' 2025-09-07T06:14:10.4395790Z adding 'torch/include/google/protobuf/util/field_comparator.h' 2025-09-07T06:14:10.4398560Z adding 'torch/include/google/protobuf/util/field_mask_util.h' 2025-09-07T06:14:10.4400700Z adding 'torch/include/google/protobuf/util/json_util.h' 2025-09-07T06:14:10.4411330Z adding 'torch/include/google/protobuf/util/message_differencer.h' 2025-09-07T06:14:10.4414270Z adding 'torch/include/google/protobuf/util/time_util.h' 2025-09-07T06:14:10.4415310Z adding 'torch/include/google/protobuf/util/type_resolver.h' 2025-09-07T06:14:10.4416490Z adding 'torch/include/google/protobuf/util/type_resolver_util.h' 2025-09-07T06:14:10.4418790Z adding 'torch/include/kai/kai_common.h' 2025-09-07T06:14:10.4421810Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-09-07T06:14:10.4422560Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p_f16p_interface.h' 2025-09-07T06:14:10.4424160Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa.h' 2025-09-07T06:14:10.4425160Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p_f32p_interface.h' 2025-09-07T06:14:10.4426780Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h' 2025-09-07T06:14:10.4427790Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p_qsi8cxp_interface.h' 2025-09-07T06:14:10.4429440Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h' 2025-09-07T06:14:10.4430400Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p_bf16p_interface.h' 2025-09-07T06:14:10.4432250Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p16x1biasf16_6x16x8_neon_mla.h' 2025-09-07T06:14:10.4433420Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot.h' 2025-09-07T06:14:10.4434450Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p_interface.h' 2025-09-07T06:14:10.4436160Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-09-07T06:14:10.4437130Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p_f16p_interface.h' 2025-09-07T06:14:10.4439410Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h' 2025-09-07T06:14:10.4440610Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod.h' 2025-09-07T06:14:10.4442120Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod.h' 2025-09-07T06:14:10.4443610Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm.h' 2025-09-07T06:14:10.4444660Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp_qsi4cxp_interface.h' 2025-09-07T06:14:10.4446780Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h' 2025-09-07T06:14:10.4447820Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h' 2025-09-07T06:14:10.4449350Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h' 2025-09-07T06:14:10.4450730Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h' 2025-09-07T06:14:10.4451770Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp_qsi8cxp_interface.h' 2025-09-07T06:14:10.4453950Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h' 2025-09-07T06:14:10.4455130Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h' 2025-09-07T06:14:10.4456230Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p_qai4c32p_interface.h' 2025-09-07T06:14:10.4457820Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p1x4_bf16p12x4b_1x36_neon_dot.h' 2025-09-07T06:14:10.4463140Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h' 2025-09-07T06:14:10.4463630Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h' 2025-09-07T06:14:10.4463920Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla.h' 2025-09-07T06:14:10.4464210Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla.h' 2025-09-07T06:14:10.4464510Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla.h' 2025-09-07T06:14:10.4465250Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p_interface.h' 2025-09-07T06:14:10.4466860Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa.h' 2025-09-07T06:14:10.4467850Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p_f32p_interface.h' 2025-09-07T06:14:10.4470120Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod.h' 2025-09-07T06:14:10.4472380Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod.h' 2025-09-07T06:14:10.4474160Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h' 2025-09-07T06:14:10.4476300Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod.h' 2025-09-07T06:14:10.4477550Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod.h' 2025-09-07T06:14:10.4479160Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod.h' 2025-09-07T06:14:10.4480970Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod.h' 2025-09-07T06:14:10.4482410Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm.h' 2025-09-07T06:14:10.4483940Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h' 2025-09-07T06:14:10.4485410Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm.h' 2025-09-07T06:14:10.4486940Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm.h' 2025-09-07T06:14:10.4488000Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp_qsi4c32p_interface.h' 2025-09-07T06:14:10.4490230Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1vlx8_qsi4cxp4vlx8_1vlx4vl_sme2_mopa.h' 2025-09-07T06:14:10.4491440Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4vlx4_1x4vl_sme2_sdot.h' 2025-09-07T06:14:10.4492980Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h' 2025-09-07T06:14:10.4494530Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp4x8_1x4x32_neon_dotprod.h' 2025-09-07T06:14:10.4496010Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp8x8_1x8x32_neon_dotprod.h' 2025-09-07T06:14:10.4497480Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi4cxp8x4_8x8x32_neon_dotprod.h' 2025-09-07T06:14:10.4499060Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x4_16x4x32_neon_dotprod.h' 2025-09-07T06:14:10.4500540Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_4x4x32_neon_i8mm.h' 2025-09-07T06:14:10.4502020Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_8x4x32_neon_i8mm.h' 2025-09-07T06:14:10.4503450Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_4x8x32_neon_i8mm.h' 2025-09-07T06:14:10.4505010Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_8x8x32_neon_i8mm.h' 2025-09-07T06:14:10.4506050Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp_qsi4cxp_interface.h' 2025-09-07T06:14:10.4508180Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h' 2025-09-07T06:14:10.4509380Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h' 2025-09-07T06:14:10.4510870Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h' 2025-09-07T06:14:10.4512220Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h' 2025-09-07T06:14:10.4513310Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp_qsi8cxp_interface.h' 2025-09-07T06:14:10.4515460Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h' 2025-09-07T06:14:10.4516690Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h' 2025-09-07T06:14:10.4517850Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p_qai4c32p_interface.h' 2025-09-07T06:14:10.4520000Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.h' 2025-09-07T06:14:10.4521080Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.h' 2025-09-07T06:14:10.4522620Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.h' 2025-09-07T06:14:10.4524100Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h' 2025-09-07T06:14:10.4525520Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.h' 2025-09-07T06:14:10.4526960Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.h' 2025-09-07T06:14:10.4528490Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h' 2025-09-07T06:14:10.4529520Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p_qsi4c32p_interface.h' 2025-09-07T06:14:10.4531130Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-09-07T06:14:10.4532630Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h' 2025-09-07T06:14:10.4534750Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot.h' 2025-09-07T06:14:10.4535340Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp_interface.h' 2025-09-07T06:14:10.4537000Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h' 2025-09-07T06:14:10.4538000Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p_qsi8cxpsb_interface.h' 2025-09-07T06:14:10.4540010Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.h' 2025-09-07T06:14:10.4540740Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.h' 2025-09-07T06:14:10.4541730Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.h' 2025-09-07T06:14:10.4542930Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.h' 2025-09-07T06:14:10.4544140Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.h' 2025-09-07T06:14:10.4545260Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.h' 2025-09-07T06:14:10.4546320Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.h' 2025-09-07T06:14:10.4547380Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.h' 2025-09-07T06:14:10.4548590Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.h' 2025-09-07T06:14:10.4549650Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.h' 2025-09-07T06:14:10.4550880Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.h' 2025-09-07T06:14:10.4552070Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.h' 2025-09-07T06:14:10.4553460Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.h' 2025-09-07T06:14:10.4554690Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.h' 2025-09-07T06:14:10.4555900Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.h' 2025-09-07T06:14:10.4557110Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.h' 2025-09-07T06:14:10.4558460Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h' 2025-09-07T06:14:10.4559590Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme.h' 2025-09-07T06:14:10.4560680Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme.h' 2025-09-07T06:14:10.4561870Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.h' 2025-09-07T06:14:10.4563100Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.h' 2025-09-07T06:14:10.4564310Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.h' 2025-09-07T06:14:10.4565440Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.h' 2025-09-07T06:14:10.4566610Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.h' 2025-09-07T06:14:10.4567980Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.h' 2025-09-07T06:14:10.4569060Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.h' 2025-09-07T06:14:10.4571140Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.h' 2025-09-07T06:14:10.4572340Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.h' 2025-09-07T06:14:10.4573700Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h' 2025-09-07T06:14:10.4575110Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.h' 2025-09-07T06:14:10.4576280Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.h' 2025-09-07T06:14:10.4577500Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.h' 2025-09-07T06:14:10.4579060Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32p_qau4c32s0s1_f32_f32_f32_neon.h' 2025-09-07T06:14:10.4580850Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.h' 2025-09-07T06:14:10.4582340Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.h' 2025-09-07T06:14:10.4584270Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.h' 2025-09-07T06:14:10.4585450Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.h' 2025-09-07T06:14:10.4586970Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.h' 2025-09-07T06:14:10.4588290Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.h' 2025-09-07T06:14:10.4589490Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.h' 2025-09-07T06:14:10.4590740Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.h' 2025-09-07T06:14:10.4592760Z adding 'torch/include/kineto/AbstractConfig.h' 2025-09-07T06:14:10.4593900Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-09-07T06:14:10.4594780Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-09-07T06:14:10.4595990Z adding 'torch/include/kineto/ActivityType.h' 2025-09-07T06:14:10.4596910Z adding 'torch/include/kineto/ClientInterface.h' 2025-09-07T06:14:10.4600630Z adding 'torch/include/kineto/Config.h' 2025-09-07T06:14:10.4601880Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-09-07T06:14:10.4603820Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-09-07T06:14:10.4604620Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-09-07T06:14:10.4605710Z adding 'torch/include/kineto/ITraceActivity.h' 2025-09-07T06:14:10.4606530Z adding 'torch/include/kineto/LoggingAPI.h' 2025-09-07T06:14:10.4607560Z adding 'torch/include/kineto/ThreadUtil.h' 2025-09-07T06:14:10.4608460Z adding 'torch/include/kineto/TraceSpan.h' 2025-09-07T06:14:10.4609840Z adding 'torch/include/kineto/libkineto.h' 2025-09-07T06:14:10.4610880Z adding 'torch/include/kineto/output_base.h' 2025-09-07T06:14:10.4611820Z adding 'torch/include/kineto/time_since_epoch.h' 2025-09-07T06:14:10.4617410Z adding 'torch/include/pybind11/attr.h' 2025-09-07T06:14:10.4619590Z adding 'torch/include/pybind11/buffer_info.h' 2025-09-07T06:14:10.4637480Z adding 'torch/include/pybind11/cast.h' 2025-09-07T06:14:10.4640220Z adding 'torch/include/pybind11/chrono.h' 2025-09-07T06:14:10.4640820Z adding 'torch/include/pybind11/common.h' 2025-09-07T06:14:10.4641980Z adding 'torch/include/pybind11/complex.h' 2025-09-07T06:14:10.4643100Z adding 'torch/include/pybind11/critical_section.h' 2025-09-07T06:14:10.4643940Z adding 'torch/include/pybind11/eigen.h' 2025-09-07T06:14:10.4646930Z adding 'torch/include/pybind11/embed.h' 2025-09-07T06:14:10.4648110Z adding 'torch/include/pybind11/eval.h' 2025-09-07T06:14:10.4650230Z adding 'torch/include/pybind11/functional.h' 2025-09-07T06:14:10.4651950Z adding 'torch/include/pybind11/gil.h' 2025-09-07T06:14:10.4653240Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-09-07T06:14:10.4654180Z adding 'torch/include/pybind11/gil_simple.h' 2025-09-07T06:14:10.4656690Z adding 'torch/include/pybind11/iostream.h' 2025-09-07T06:14:10.4657590Z adding 'torch/include/pybind11/native_enum.h' 2025-09-07T06:14:10.4675670Z adding 'torch/include/pybind11/numpy.h' 2025-09-07T06:14:10.4678140Z adding 'torch/include/pybind11/operators.h' 2025-09-07T06:14:10.4679180Z adding 'torch/include/pybind11/options.h' 2025-09-07T06:14:10.4710840Z adding 'torch/include/pybind11/pybind11.h' 2025-09-07T06:14:10.4730720Z adding 'torch/include/pybind11/pytypes.h' 2025-09-07T06:14:10.4735730Z adding 'torch/include/pybind11/stl.h' 2025-09-07T06:14:10.4741160Z adding 'torch/include/pybind11/stl_bind.h' 2025-09-07T06:14:10.4744070Z adding 'torch/include/pybind11/subinterpreter.h' 2025-09-07T06:14:10.4745200Z adding 'torch/include/pybind11/trampoline_self_life_support.h' 2025-09-07T06:14:10.4746390Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-09-07T06:14:10.4748470Z adding 'torch/include/pybind11/typing.h' 2025-09-07T06:14:10.4749340Z adding 'torch/include/pybind11/warnings.h' 2025-09-07T06:14:10.4751630Z adding 'torch/include/pybind11/conduit/pybind11_conduit_v1.h' 2025-09-07T06:14:10.4752790Z adding 'torch/include/pybind11/conduit/pybind11_platform_abi_id.h' 2025-09-07T06:14:10.4753930Z adding 'torch/include/pybind11/conduit/wrap_include_python_h.h' 2025-09-07T06:14:10.4760860Z adding 'torch/include/pybind11/detail/class.h' 2025-09-07T06:14:10.4772820Z adding 'torch/include/pybind11/detail/common.h' 2025-09-07T06:14:10.4774050Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-09-07T06:14:10.4776100Z adding 'torch/include/pybind11/detail/descr.h' 2025-09-07T06:14:10.4776940Z adding 'torch/include/pybind11/detail/dynamic_raw_ptr_cast_if_possible.h' 2025-09-07T06:14:10.4778160Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-09-07T06:14:10.4780310Z adding 'torch/include/pybind11/detail/function_record_pyobject.h' 2025-09-07T06:14:10.4784690Z adding 'torch/include/pybind11/detail/init.h' 2025-09-07T06:14:10.4791310Z adding 'torch/include/pybind11/detail/internals.h' 2025-09-07T06:14:10.4793490Z adding 'torch/include/pybind11/detail/native_enum_data.h' 2025-09-07T06:14:10.4794510Z adding 'torch/include/pybind11/detail/pybind11_namespace_macros.h' 2025-09-07T06:14:10.4797570Z adding 'torch/include/pybind11/detail/struct_smart_holder.h' 2025-09-07T06:14:10.4811280Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-09-07T06:14:10.4812520Z adding 'torch/include/pybind11/detail/typeid.h' 2025-09-07T06:14:10.4813450Z adding 'torch/include/pybind11/detail/using_smart_holder.h' 2025-09-07T06:14:10.4814810Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-09-07T06:14:10.4815950Z adding 'torch/include/pybind11/eigen/common.h' 2025-09-07T06:14:10.4822710Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-09-07T06:14:10.4825920Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-09-07T06:14:10.4827280Z adding 'torch/include/pybind11/stl/filesystem.h' 2025-09-07T06:14:10.4832020Z adding 'torch/include/torch/custom_class.h' 2025-09-07T06:14:10.4834240Z adding 'torch/include/torch/custom_class_detail.h' 2025-09-07T06:14:10.4834820Z adding 'torch/include/torch/extension.h' 2025-09-07T06:14:10.4844110Z adding 'torch/include/torch/library.h' 2025-09-07T06:14:10.4844930Z adding 'torch/include/torch/script.h' 2025-09-07T06:14:10.4847240Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-09-07T06:14:10.4847820Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-09-07T06:14:10.4848740Z adding 'torch/include/torch/csrc/Device.h' 2025-09-07T06:14:10.4849600Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-09-07T06:14:10.4850480Z adding 'torch/include/torch/csrc/Dtype.h' 2025-09-07T06:14:10.4851470Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-09-07T06:14:10.4852420Z adding 'torch/include/torch/csrc/Event.h' 2025-09-07T06:14:10.4855840Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-09-07T06:14:10.4856370Z adding 'torch/include/torch/csrc/Export.h' 2025-09-07T06:14:10.4857340Z adding 'torch/include/torch/csrc/Generator.h' 2025-09-07T06:14:10.4858260Z adding 'torch/include/torch/csrc/Layout.h' 2025-09-07T06:14:10.4859170Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-09-07T06:14:10.4859900Z adding 'torch/include/torch/csrc/Module.h' 2025-09-07T06:14:10.4860730Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-09-07T06:14:10.4861640Z adding 'torch/include/torch/csrc/PyInterpreterHooks.h' 2025-09-07T06:14:10.4862480Z adding 'torch/include/torch/csrc/QScheme.h' 2025-09-07T06:14:10.4863310Z adding 'torch/include/torch/csrc/Size.h' 2025-09-07T06:14:10.4864300Z adding 'torch/include/torch/csrc/Storage.h' 2025-09-07T06:14:10.4865160Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-09-07T06:14:10.4865930Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-09-07T06:14:10.4866790Z adding 'torch/include/torch/csrc/Stream.h' 2025-09-07T06:14:10.4867600Z adding 'torch/include/torch/csrc/THConcat.h' 2025-09-07T06:14:10.4868550Z adding 'torch/include/torch/csrc/THP.h' 2025-09-07T06:14:10.4869410Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-09-07T06:14:10.4870170Z adding 'torch/include/torch/csrc/Types.h' 2025-09-07T06:14:10.4871160Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-09-07T06:14:10.4872040Z adding 'torch/include/torch/csrc/itt.h' 2025-09-07T06:14:10.4872820Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-09-07T06:14:10.4873590Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-09-07T06:14:10.4874450Z adding 'torch/include/torch/csrc/python_headers.h' 2025-09-07T06:14:10.4875410Z adding 'torch/include/torch/csrc/serialization.h' 2025-09-07T06:14:10.4877580Z adding 'torch/include/torch/csrc/utils.h' 2025-09-07T06:14:10.4879950Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-09-07T06:14:10.4880630Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-09-07T06:14:10.4881520Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-09-07T06:14:10.4882410Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-09-07T06:14:10.4883210Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-09-07T06:14:10.4885220Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-09-07T06:14:10.4886650Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-09-07T06:14:10.4888740Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-09-07T06:14:10.4889540Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-09-07T06:14:10.4890490Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-09-07T06:14:10.4891540Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-09-07T06:14:10.4892720Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-09-07T06:14:10.4893540Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-09-07T06:14:10.4894350Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-09-07T06:14:10.4897850Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-09-07T06:14:10.4900080Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-09-07T06:14:10.4901230Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-09-07T06:14:10.4902000Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-09-07T06:14:10.4905830Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-09-07T06:14:10.4906550Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-09-07T06:14:10.4907660Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-09-07T06:14:10.4909070Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-09-07T06:14:10.4910050Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-09-07T06:14:10.4910920Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-09-07T06:14:10.4912940Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-09-07T06:14:10.4913750Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-09-07T06:14:10.4914550Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-09-07T06:14:10.4915510Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-09-07T06:14:10.4917480Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-09-07T06:14:10.4917920Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-09-07T06:14:10.4918750Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-09-07T06:14:10.4919730Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-09-07T06:14:10.4922800Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-09-07T06:14:10.4923890Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-09-07T06:14:10.4925150Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-09-07T06:14:10.4927150Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-09-07T06:14:10.4931760Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-09-07T06:14:10.4933100Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-09-07T06:14:10.4934130Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-09-07T06:14:10.4935420Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-09-07T06:14:10.4936530Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-09-07T06:14:10.4937600Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-09-07T06:14:10.4939610Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-09-07T06:14:10.4940410Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-09-07T06:14:10.4941930Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-09-07T06:14:10.4943390Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-09-07T06:14:10.4944320Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-09-07T06:14:10.4945540Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-09-07T06:14:10.4946590Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-09-07T06:14:10.4947630Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-09-07T06:14:10.4948530Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-09-07T06:14:10.4949600Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-09-07T06:14:10.4950870Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-09-07T06:14:10.4951920Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-09-07T06:14:10.4952890Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-09-07T06:14:10.4953840Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-09-07T06:14:10.4954950Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-09-07T06:14:10.4958460Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-09-07T06:14:10.4959340Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-09-07T06:14:10.4960580Z adding 'torch/include/torch/csrc/api/include/torch/nativert/ModelRunnerHandle.h' 2025-09-07T06:14:10.4962530Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-09-07T06:14:10.4963160Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-09-07T06:14:10.4964550Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-09-07T06:14:10.4969870Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-09-07T06:14:10.4970520Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-09-07T06:14:10.4971520Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-09-07T06:14:10.4972770Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-09-07T06:14:10.4974930Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-09-07T06:14:10.4975430Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-09-07T06:14:10.4980230Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-09-07T06:14:10.4981190Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-09-07T06:14:10.4982630Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-09-07T06:14:10.4983750Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-09-07T06:14:10.4985220Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-09-07T06:14:10.4987120Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-09-07T06:14:10.4987970Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-09-07T06:14:10.4988990Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-09-07T06:14:10.4989950Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-09-07T06:14:10.4993890Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-09-07T06:14:10.4995740Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-09-07T06:14:10.4996620Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-09-07T06:14:10.4997720Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-09-07T06:14:10.5001570Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-09-07T06:14:10.5003750Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-09-07T06:14:10.5004890Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-09-07T06:14:10.5006320Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-09-07T06:14:10.5009870Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-09-07T06:14:10.5011160Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-09-07T06:14:10.5013290Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-09-07T06:14:10.5014470Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-09-07T06:14:10.5017340Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-09-07T06:14:10.5018270Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-09-07T06:14:10.5019740Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-09-07T06:14:10.5021250Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-09-07T06:14:10.5022410Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-09-07T06:14:10.5023840Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-09-07T06:14:10.5025430Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-09-07T06:14:10.5029450Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-09-07T06:14:10.5030820Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-09-07T06:14:10.5033040Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-09-07T06:14:10.5034040Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-09-07T06:14:10.5037420Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-09-07T06:14:10.5039750Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-09-07T06:14:10.5042520Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-09-07T06:14:10.5043840Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-09-07T06:14:10.5045830Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-09-07T06:14:10.5046510Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-09-07T06:14:10.5047530Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-09-07T06:14:10.5051300Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-09-07T06:14:10.5052720Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-09-07T06:14:10.5054220Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-09-07T06:14:10.5055660Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-09-07T06:14:10.5058150Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-09-07T06:14:10.5060460Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-09-07T06:14:10.5061440Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-09-07T06:14:10.5062890Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-09-07T06:14:10.5064570Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-09-07T06:14:10.5067970Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-09-07T06:14:10.5071020Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-09-07T06:14:10.5071870Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-09-07T06:14:10.5073070Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-09-07T06:14:10.5075280Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-09-07T06:14:10.5076110Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-09-07T06:14:10.5077260Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-09-07T06:14:10.5079500Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-09-07T06:14:10.5080380Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-09-07T06:14:10.5081470Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-09-07T06:14:10.5082630Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-09-07T06:14:10.5086240Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-09-07T06:14:10.5087490Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-09-07T06:14:10.5089160Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-09-07T06:14:10.5090090Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-09-07T06:14:10.5092750Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-09-07T06:14:10.5094150Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-09-07T06:14:10.5095400Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-09-07T06:14:10.5096490Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-09-07T06:14:10.5097640Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-09-07T06:14:10.5099080Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-09-07T06:14:10.5100060Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-09-07T06:14:10.5103390Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-09-07T06:14:10.5104960Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-09-07T06:14:10.5106230Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-09-07T06:14:10.5109440Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-09-07T06:14:10.5110840Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-09-07T06:14:10.5112230Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-09-07T06:14:10.5113450Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-09-07T06:14:10.5114860Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-09-07T06:14:10.5117130Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-09-07T06:14:10.5118070Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-09-07T06:14:10.5120860Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-09-07T06:14:10.5121740Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-09-07T06:14:10.5123150Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-09-07T06:14:10.5124360Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-09-07T06:14:10.5125250Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-09-07T06:14:10.5126280Z adding 'torch/include/torch/csrc/api/include/torch/python/init.h' 2025-09-07T06:14:10.5127330Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-09-07T06:14:10.5128870Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-09-07T06:14:10.5129970Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-09-07T06:14:10.5130830Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-09-07T06:14:10.5136470Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-09-07T06:14:10.5137240Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-09-07T06:14:10.5140610Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-09-07T06:14:10.5141480Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-09-07T06:14:10.5143550Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-09-07T06:14:10.5144330Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-09-07T06:14:10.5145180Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-09-07T06:14:10.5150190Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-09-07T06:14:10.5151080Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-09-07T06:14:10.5154090Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-09-07T06:14:10.5156790Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-09-07T06:14:10.5164350Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-09-07T06:14:10.5165470Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-09-07T06:14:10.5166430Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-09-07T06:14:10.5169360Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-09-07T06:14:10.5170240Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-09-07T06:14:10.5171690Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-09-07T06:14:10.5172830Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-09-07T06:14:10.5173550Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-09-07T06:14:10.5175950Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-09-07T06:14:10.5178630Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-09-07T06:14:10.5179180Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-09-07T06:14:10.5180220Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-09-07T06:14:10.5181080Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-09-07T06:14:10.5183070Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-09-07T06:14:10.5183640Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-09-07T06:14:10.5184550Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-09-07T06:14:10.5185330Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-09-07T06:14:10.5187430Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-09-07T06:14:10.5188210Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-09-07T06:14:10.5189150Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-09-07T06:14:10.5190010Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-09-07T06:14:10.5190940Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-09-07T06:14:10.5191790Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-09-07T06:14:10.5192780Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-09-07T06:14:10.5193630Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-09-07T06:14:10.5194610Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-09-07T06:14:10.5195620Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-09-07T06:14:10.5196970Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-09-07T06:14:10.5198240Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-09-07T06:14:10.5199280Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-09-07T06:14:10.5201310Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-09-07T06:14:10.5201980Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-09-07T06:14:10.5202750Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-09-07T06:14:10.5212240Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-09-07T06:14:10.5213330Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-09-07T06:14:10.5217530Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-09-07T06:14:10.5218650Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-09-07T06:14:10.5219650Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-09-07T06:14:10.5220510Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-09-07T06:14:10.5223000Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-09-07T06:14:10.5224090Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-09-07T06:14:10.5257600Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-09-07T06:14:10.5261010Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-09-07T06:14:10.5264170Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-09-07T06:14:10.5265120Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-09-07T06:14:10.5266280Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-09-07T06:14:10.5270900Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-09-07T06:14:10.5272020Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-09-07T06:14:10.5273270Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-09-07T06:14:10.5274400Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-09-07T06:14:10.5275430Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-09-07T06:14:10.5276300Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-09-07T06:14:10.5277610Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-09-07T06:14:10.5278760Z adding 'torch/include/torch/csrc/cpu/Module.h' 2025-09-07T06:14:10.5281170Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-09-07T06:14:10.5281760Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-09-07T06:14:10.5282600Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-09-07T06:14:10.5283590Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-09-07T06:14:10.5284480Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-09-07T06:14:10.5285270Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-09-07T06:14:10.5286300Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-09-07T06:14:10.5287160Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-09-07T06:14:10.5288130Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-09-07T06:14:10.5290110Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-09-07T06:14:10.5290530Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-09-07T06:14:10.5291410Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-09-07T06:14:10.5292220Z adding 'torch/include/torch/csrc/cuda/utils.h' 2025-09-07T06:14:10.5294280Z adding 'torch/include/torch/csrc/distributed/autograd/autograd.h' 2025-09-07T06:14:10.5294890Z adding 'torch/include/torch/csrc/distributed/autograd/python_autograd.h' 2025-09-07T06:14:10.5296140Z adding 'torch/include/torch/csrc/distributed/autograd/utils.h' 2025-09-07T06:14:10.5298660Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-09-07T06:14:10.5300590Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-09-07T06:14:10.5302930Z adding 'torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h' 2025-09-07T06:14:10.5304050Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-09-07T06:14:10.5305040Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-09-07T06:14:10.5306240Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-09-07T06:14:10.5307280Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-09-07T06:14:10.5308250Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-09-07T06:14:10.5309220Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-09-07T06:14:10.5310150Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-09-07T06:14:10.5311490Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-09-07T06:14:10.5312730Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-09-07T06:14:10.5313890Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-09-07T06:14:10.5314850Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-09-07T06:14:10.5315730Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-09-07T06:14:10.5319350Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-09-07T06:14:10.5320090Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-09-07T06:14:10.5322100Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-09-07T06:14:10.5322730Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-09-07T06:14:10.5325550Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-09-07T06:14:10.5329390Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp' 2025-09-07T06:14:10.5330250Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-09-07T06:14:10.5331210Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-09-07T06:14:10.5332210Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-09-07T06:14:10.5333270Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-09-07T06:14:10.5336780Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-09-07T06:14:10.5337490Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-09-07T06:14:10.5339540Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-09-07T06:14:10.5340400Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-09-07T06:14:10.5346190Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-09-07T06:14:10.5349820Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-09-07T06:14:10.5354180Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp' 2025-09-07T06:14:10.5356390Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-09-07T06:14:10.5369410Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-09-07T06:14:10.5372330Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-09-07T06:14:10.5373620Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-09-07T06:14:10.5376100Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-09-07T06:14:10.5377020Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-09-07T06:14:10.5378490Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-09-07T06:14:10.5380340Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-09-07T06:14:10.5381330Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-09-07T06:14:10.5383910Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-09-07T06:14:10.5385210Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-09-07T06:14:10.5386510Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-09-07T06:14:10.5388540Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-09-07T06:14:10.5389180Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-09-07T06:14:10.5393930Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-09-07T06:14:10.5394720Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-09-07T06:14:10.5396810Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-09-07T06:14:10.5397350Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-09-07T06:14:10.5399000Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-09-07T06:14:10.5399880Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-09-07T06:14:10.5400980Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-09-07T06:14:10.5401930Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-09-07T06:14:10.5403000Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-09-07T06:14:10.5405350Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-09-07T06:14:10.5406100Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-09-07T06:14:10.5407120Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-09-07T06:14:10.5413660Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-09-07T06:14:10.5414770Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-09-07T06:14:10.5415860Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-09-07T06:14:10.5416980Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-09-07T06:14:10.5417940Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-09-07T06:14:10.5419730Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp' 2025-09-07T06:14:10.5420620Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp' 2025-09-07T06:14:10.5421970Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp' 2025-09-07T06:14:10.5422900Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp' 2025-09-07T06:14:10.5424110Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/CUDAEventCache.hpp' 2025-09-07T06:14:10.5425080Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp' 2025-09-07T06:14:10.5429730Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp' 2025-09-07T06:14:10.5430620Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization.h' 2025-09-07T06:14:10.5431540Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h' 2025-09-07T06:14:10.5432650Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h' 2025-09-07T06:14:10.5435650Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h' 2025-09-07T06:14:10.5436700Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp' 2025-09-07T06:14:10.5437750Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp' 2025-09-07T06:14:10.5439120Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp' 2025-09-07T06:14:10.5440080Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp' 2025-09-07T06:14:10.5442460Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp' 2025-09-07T06:14:10.5443480Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp' 2025-09-07T06:14:10.5444970Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-09-07T06:14:10.5447260Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-09-07T06:14:10.5448310Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-09-07T06:14:10.5449390Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-09-07T06:14:10.5450520Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-09-07T06:14:10.5451550Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-09-07T06:14:10.5452450Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-09-07T06:14:10.5454420Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-09-07T06:14:10.5455130Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-09-07T06:14:10.5456240Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-09-07T06:14:10.5457440Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-09-07T06:14:10.5458320Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-09-07T06:14:10.5461970Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-09-07T06:14:10.5462710Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-09-07T06:14:10.5467200Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-09-07T06:14:10.5471600Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-09-07T06:14:10.5472740Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-09-07T06:14:10.5473940Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-09-07T06:14:10.5475050Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-09-07T06:14:10.5476040Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-09-07T06:14:10.5480410Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-09-07T06:14:10.5481840Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-09-07T06:14:10.5482920Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-09-07T06:14:10.5484100Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-09-07T06:14:10.5485250Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-09-07T06:14:10.5486300Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-09-07T06:14:10.5487660Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-09-07T06:14:10.5489270Z adding 'torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h' 2025-09-07T06:14:10.5491290Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h' 2025-09-07T06:14:10.5492460Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h' 2025-09-07T06:14:10.5494470Z adding 'torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h' 2025-09-07T06:14:10.5495070Z adding 'torch/include/torch/csrc/distributed/rpc/testing/testing.h' 2025-09-07T06:14:10.5496990Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-09-07T06:14:10.5507230Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-09-07T06:14:10.5508000Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-09-07T06:14:10.5508950Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-09-07T06:14:10.5510110Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-09-07T06:14:10.5515130Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-09-07T06:14:10.5515350Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-09-07T06:14:10.5515470Z adding 'torch/include/torch/csrc/dynamo/eval_frame_cpp.h' 2025-09-07T06:14:10.5515610Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-09-07T06:14:10.5516610Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-09-07T06:14:10.5517810Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-09-07T06:14:10.5518670Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-09-07T06:14:10.5519660Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-09-07T06:14:10.5520520Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-09-07T06:14:10.5521690Z adding 'torch/include/torch/csrc/export/example_upgraders.h' 2025-09-07T06:14:10.5523140Z adding 'torch/include/torch/csrc/export/pt2_archive_constants.h' 2025-09-07T06:14:10.5524060Z adding 'torch/include/torch/csrc/export/pybind.h' 2025-09-07T06:14:10.5526020Z adding 'torch/include/torch/csrc/export/upgrader.h' 2025-09-07T06:14:10.5526820Z adding 'torch/include/torch/csrc/functorch/init.h' 2025-09-07T06:14:10.5527770Z adding 'torch/include/torch/csrc/fx/node.h' 2025-09-07T06:14:10.5529800Z adding 'torch/include/torch/csrc/inductor/array_ref_impl.h' 2025-09-07T06:14:10.5536990Z adding 'torch/include/torch/csrc/inductor/cpp_prefix.h' 2025-09-07T06:14:10.5537990Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-09-07T06:14:10.5538980Z adding 'torch/include/torch/csrc/inductor/static_cuda_launcher.h' 2025-09-07T06:14:10.5541060Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h' 2025-09-07T06:14:10.5542880Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h' 2025-09-07T06:14:10.5543910Z adding 'torch/include/torch/csrc/inductor/aoti_include/array_ref.h' 2025-09-07T06:14:10.5544840Z adding 'torch/include/torch/csrc/inductor/aoti_include/common.h' 2025-09-07T06:14:10.5545670Z adding 'torch/include/torch/csrc/inductor/aoti_include/cpu.h' 2025-09-07T06:14:10.5546590Z adding 'torch/include/torch/csrc/inductor/aoti_include/cuda.h' 2025-09-07T06:14:10.5547310Z adding 'torch/include/torch/csrc/inductor/aoti_include/mps.h' 2025-09-07T06:14:10.5548150Z adding 'torch/include/torch/csrc/inductor/aoti_include/xpu.h' 2025-09-07T06:14:10.5549590Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-09-07T06:14:10.5550400Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-09-07T06:14:10.5552480Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-09-07T06:14:10.5553290Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-09-07T06:14:10.5554240Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-09-07T06:14:10.5555130Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h' 2025-09-07T06:14:10.5556200Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-09-07T06:14:10.5557060Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-09-07T06:14:10.5559400Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-09-07T06:14:10.5560080Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h' 2025-09-07T06:14:10.5561240Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-09-07T06:14:10.5563630Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-09-07T06:14:10.5564940Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h' 2025-09-07T06:14:10.5566150Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-09-07T06:14:10.5572090Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_base.h' 2025-09-07T06:14:10.5577620Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-09-07T06:14:10.5578620Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-09-07T06:14:10.5580780Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-09-07T06:14:10.5582030Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-09-07T06:14:10.5584830Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-09-07T06:14:10.5585770Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-09-07T06:14:10.5586790Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-09-07T06:14:10.5588020Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-09-07T06:14:10.5590030Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-09-07T06:14:10.5590700Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-09-07T06:14:10.5591650Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-09-07T06:14:10.5593650Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-09-07T06:14:10.5594970Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/macros.h' 2025-09-07T06:14:10.5599330Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-09-07T06:14:10.5600540Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h' 2025-09-07T06:14:10.5601900Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_deprecated.h' 2025-09-07T06:14:10.5602920Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h' 2025-09-07T06:14:10.5604250Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-09-07T06:14:10.5605570Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_aten.h' 2025-09-07T06:14:10.5609250Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-09-07T06:14:10.5613180Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-09-07T06:14:10.5616180Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h' 2025-09-07T06:14:10.5618140Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-09-07T06:14:10.5619130Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h' 2025-09-07T06:14:10.5620260Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/common.h' 2025-09-07T06:14:10.5621050Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h' 2025-09-07T06:14:10.5621830Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h' 2025-09-07T06:14:10.5622770Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/mps.h' 2025-09-07T06:14:10.5623510Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h' 2025-09-07T06:14:10.5624600Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h' 2025-09-07T06:14:10.5625380Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h' 2025-09-07T06:14:10.5626230Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h' 2025-09-07T06:14:10.5627020Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h' 2025-09-07T06:14:10.5628030Z adding 'torch/include/torch/csrc/instruction_counter/Module.h' 2025-09-07T06:14:10.5630100Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-09-07T06:14:10.5630990Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-09-07T06:14:10.5631940Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-09-07T06:14:10.5635650Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-09-07T06:14:10.5637410Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-09-07T06:14:10.5638490Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-09-07T06:14:10.5644140Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-09-07T06:14:10.5645860Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-09-07T06:14:10.5647650Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-09-07T06:14:10.5649860Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-09-07T06:14:10.5650770Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-09-07T06:14:10.5651780Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-09-07T06:14:10.5653000Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-09-07T06:14:10.5653960Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-09-07T06:14:10.5654940Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-09-07T06:14:10.5655800Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-09-07T06:14:10.5656620Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-09-07T06:14:10.5658250Z adding 'torch/include/torch/csrc/jit/backends/coreml/cpp/context.h' 2025-09-07T06:14:10.5659320Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h' 2025-09-07T06:14:10.5660220Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h' 2025-09-07T06:14:10.5661180Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h' 2025-09-07T06:14:10.5662220Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h' 2025-09-07T06:14:10.5663140Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h' 2025-09-07T06:14:10.5664950Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h' 2025-09-07T06:14:10.5665880Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h' 2025-09-07T06:14:10.5667220Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h' 2025-09-07T06:14:10.5668700Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h' 2025-09-07T06:14:10.5670480Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-09-07T06:14:10.5671680Z adding 'torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h' 2025-09-07T06:14:10.5672630Z adding 'torch/include/torch/csrc/jit/codegen/fuser/codegen.h' 2025-09-07T06:14:10.5673720Z adding 'torch/include/torch/csrc/jit/codegen/fuser/compiler.h' 2025-09-07T06:14:10.5674580Z adding 'torch/include/torch/csrc/jit/codegen/fuser/executor.h' 2025-09-07T06:14:10.5675390Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fallback.h' 2025-09-07T06:14:10.5676720Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h' 2025-09-07T06:14:10.5677780Z adding 'torch/include/torch/csrc/jit/codegen/fuser/interface.h' 2025-09-07T06:14:10.5678730Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h' 2025-09-07T06:14:10.5680370Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h' 2025-09-07T06:14:10.5681370Z adding 'torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h' 2025-09-07T06:14:10.5682600Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h' 2025-09-07T06:14:10.5683480Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h' 2025-09-07T06:14:10.5684770Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h' 2025-09-07T06:14:10.5685990Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h' 2025-09-07T06:14:10.5687250Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h' 2025-09-07T06:14:10.5688540Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h' 2025-09-07T06:14:10.5691290Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h' 2025-09-07T06:14:10.5693830Z adding 'torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h' 2025-09-07T06:14:10.5694430Z adding 'torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h' 2025-09-07T06:14:10.5695200Z adding 'torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h' 2025-09-07T06:14:10.5696210Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h' 2025-09-07T06:14:10.5697440Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h' 2025-09-07T06:14:10.5698250Z adding 'torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h' 2025-09-07T06:14:10.5699260Z adding 'torch/include/torch/csrc/jit/codegen/onednn/interface.h' 2025-09-07T06:14:10.5700470Z adding 'torch/include/torch/csrc/jit/codegen/onednn/kernel.h' 2025-09-07T06:14:10.5701410Z adding 'torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h' 2025-09-07T06:14:10.5702800Z adding 'torch/include/torch/csrc/jit/codegen/onednn/operator.h' 2025-09-07T06:14:10.5703720Z adding 'torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h' 2025-09-07T06:14:10.5705710Z adding 'torch/include/torch/csrc/jit/cuda/cuda.h' 2025-09-07T06:14:10.5706810Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-09-07T06:14:10.5707680Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-09-07T06:14:10.5710370Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-09-07T06:14:10.5710980Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-09-07T06:14:10.5711840Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-09-07T06:14:10.5712990Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-09-07T06:14:10.5713810Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-09-07T06:14:10.5714820Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-09-07T06:14:10.5715690Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-09-07T06:14:10.5716520Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-09-07T06:14:10.5721370Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-09-07T06:14:10.5722220Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-09-07T06:14:10.5723270Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-09-07T06:14:10.5724480Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-09-07T06:14:10.5725350Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-09-07T06:14:10.5726190Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-09-07T06:14:10.5727380Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-09-07T06:14:10.5728550Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-09-07T06:14:10.5729600Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-09-07T06:14:10.5730680Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-09-07T06:14:10.5734920Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-09-07T06:14:10.5735690Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-09-07T06:14:10.5736520Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-09-07T06:14:10.5742250Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-09-07T06:14:10.5745040Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-09-07T06:14:10.5747150Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-09-07T06:14:10.5753530Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-09-07T06:14:10.5754350Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-09-07T06:14:10.5758400Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-09-07T06:14:10.5759730Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-09-07T06:14:10.5760840Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-09-07T06:14:10.5762850Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-09-07T06:14:10.5763370Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-09-07T06:14:10.5775970Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-09-07T06:14:10.5777760Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-09-07T06:14:10.5778620Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-09-07T06:14:10.5779960Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-09-07T06:14:10.5780820Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-09-07T06:14:10.5782970Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-09-07T06:14:10.5784130Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-09-07T06:14:10.5785110Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-09-07T06:14:10.5786550Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-09-07T06:14:10.5787620Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-09-07T06:14:10.5789770Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-09-07T06:14:10.5791120Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-09-07T06:14:10.5792170Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-09-07T06:14:10.5793460Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-09-07T06:14:10.5794860Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-09-07T06:14:10.5795890Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-09-07T06:14:10.5797200Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-09-07T06:14:10.5798090Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-09-07T06:14:10.5799030Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-09-07T06:14:10.5801060Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-09-07T06:14:10.5802540Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-09-07T06:14:10.5803700Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-09-07T06:14:10.5804740Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-09-07T06:14:10.5805690Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-09-07T06:14:10.5807660Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-09-07T06:14:10.5808210Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-09-07T06:14:10.5809210Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-09-07T06:14:10.5810320Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-09-07T06:14:10.5811330Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-09-07T06:14:10.5812260Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-09-07T06:14:10.5813580Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport.h' 2025-09-07T06:14:10.5814610Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h' 2025-09-07T06:14:10.5815830Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h' 2025-09-07T06:14:10.5816830Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h' 2025-09-07T06:14:10.5818060Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h' 2025-09-07T06:14:10.5819010Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h' 2025-09-07T06:14:10.5820010Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h' 2025-09-07T06:14:10.5822030Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h' 2025-09-07T06:14:10.5822590Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h' 2025-09-07T06:14:10.5823460Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h' 2025-09-07T06:14:10.5824400Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h' 2025-09-07T06:14:10.5825520Z adding 'torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h' 2025-09-07T06:14:10.5827580Z adding 'torch/include/torch/csrc/jit/mobile/nnc/context.h' 2025-09-07T06:14:10.5828220Z adding 'torch/include/torch/csrc/jit/mobile/nnc/registry.h' 2025-09-07T06:14:10.5829530Z adding 'torch/include/torch/csrc/jit/mobile/train/export_data.h' 2025-09-07T06:14:10.5830540Z adding 'torch/include/torch/csrc/jit/mobile/train/random.h' 2025-09-07T06:14:10.5831510Z adding 'torch/include/torch/csrc/jit/mobile/train/sequential.h' 2025-09-07T06:14:10.5833600Z adding 'torch/include/torch/csrc/jit/mobile/train/optim/sgd.h' 2025-09-07T06:14:10.5834480Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders.h' 2025-09-07T06:14:10.5835570Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h' 2025-09-07T06:14:10.5836570Z adding 'torch/include/torch/csrc/jit/operator_upgraders/utils.h' 2025-09-07T06:14:10.5837670Z adding 'torch/include/torch/csrc/jit/operator_upgraders/version_map.h' 2025-09-07T06:14:10.5839810Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-09-07T06:14:10.5840360Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-09-07T06:14:10.5841270Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-09-07T06:14:10.5842250Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-09-07T06:14:10.5843030Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-09-07T06:14:10.5843900Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-09-07T06:14:10.5844800Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-09-07T06:14:10.5845640Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-09-07T06:14:10.5846520Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-09-07T06:14:10.5847470Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-09-07T06:14:10.5848380Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-09-07T06:14:10.5849260Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-09-07T06:14:10.5850020Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-09-07T06:14:10.5851040Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-09-07T06:14:10.5851930Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-09-07T06:14:10.5852900Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-09-07T06:14:10.5853980Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-09-07T06:14:10.5854870Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-09-07T06:14:10.5855710Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-09-07T06:14:10.5856600Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-09-07T06:14:10.5857480Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-09-07T06:14:10.5858650Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-09-07T06:14:10.5859720Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-09-07T06:14:10.5860670Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-09-07T06:14:10.5861610Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-09-07T06:14:10.5862650Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-09-07T06:14:10.5863490Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-09-07T06:14:10.5864340Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-09-07T06:14:10.5865200Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-09-07T06:14:10.5866060Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-09-07T06:14:10.5866910Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-09-07T06:14:10.5867740Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-09-07T06:14:10.5868590Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-09-07T06:14:10.5869510Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-09-07T06:14:10.5870320Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-09-07T06:14:10.5871300Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-09-07T06:14:10.5872380Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-09-07T06:14:10.5873200Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-09-07T06:14:10.5874060Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-09-07T06:14:10.5874860Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-09-07T06:14:10.5875680Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-09-07T06:14:10.5876510Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-09-07T06:14:10.5877280Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-09-07T06:14:10.5878080Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-09-07T06:14:10.5878920Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-09-07T06:14:10.5879750Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-09-07T06:14:10.5880510Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-09-07T06:14:10.5881390Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-09-07T06:14:10.5882330Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-09-07T06:14:10.5883150Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-09-07T06:14:10.5884030Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-09-07T06:14:10.5884920Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-09-07T06:14:10.5885770Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-09-07T06:14:10.5886660Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-09-07T06:14:10.5887520Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-09-07T06:14:10.5888340Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-09-07T06:14:10.5889360Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-09-07T06:14:10.5890200Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-09-07T06:14:10.5892290Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-09-07T06:14:10.5892700Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-09-07T06:14:10.5893560Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-09-07T06:14:10.5894460Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-09-07T06:14:10.5895550Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-09-07T06:14:10.5896360Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-09-07T06:14:10.5897170Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-09-07T06:14:10.5897990Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-09-07T06:14:10.5898780Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-09-07T06:14:10.5899730Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-09-07T06:14:10.5900500Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-09-07T06:14:10.5901370Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-09-07T06:14:10.5902560Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-09-07T06:14:10.5903430Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-09-07T06:14:10.5904270Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-09-07T06:14:10.5905070Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-09-07T06:14:10.5906090Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-09-07T06:14:10.5907030Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-09-07T06:14:10.5907940Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-09-07T06:14:10.5909420Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-09-07T06:14:10.5910620Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-09-07T06:14:10.5911590Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-09-07T06:14:10.5912820Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-09-07T06:14:10.5913990Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-09-07T06:14:10.5915030Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-09-07T06:14:10.5916060Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-09-07T06:14:10.5916910Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-09-07T06:14:10.5917790Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-09-07T06:14:10.5918670Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-09-07T06:14:10.5920020Z adding 'torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h' 2025-09-07T06:14:10.5921230Z adding 'torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h' 2025-09-07T06:14:10.5922100Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_fold.h' 2025-09-07T06:14:10.5923550Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_map.h' 2025-09-07T06:14:10.5924430Z adding 'torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h' 2025-09-07T06:14:10.5925310Z adding 'torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h' 2025-09-07T06:14:10.5926090Z adding 'torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h' 2025-09-07T06:14:10.5926920Z adding 'torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h' 2025-09-07T06:14:10.5928090Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_extraction.h' 2025-09-07T06:14:10.5928940Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_substitution.h' 2025-09-07T06:14:10.5929980Z adding 'torch/include/torch/csrc/jit/passes/onnx/helper.h' 2025-09-07T06:14:10.5930850Z adding 'torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h' 2025-09-07T06:14:10.5931680Z adding 'torch/include/torch/csrc/jit/passes/onnx/naming.h' 2025-09-07T06:14:10.5932570Z adding 'torch/include/torch/csrc/jit/passes/onnx/onnx_log.h' 2025-09-07T06:14:10.5933380Z adding 'torch/include/torch/csrc/jit/passes/onnx/peephole.h' 2025-09-07T06:14:10.5934280Z adding 'torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h' 2025-09-07T06:14:10.5935060Z adding 'torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h' 2025-09-07T06:14:10.5935900Z adding 'torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h' 2025-09-07T06:14:10.5936690Z adding 'torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h' 2025-09-07T06:14:10.5938200Z adding 'torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h' 2025-09-07T06:14:10.5939050Z adding 'torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h' 2025-09-07T06:14:10.5940180Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h' 2025-09-07T06:14:10.5940980Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h' 2025-09-07T06:14:10.5942150Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h' 2025-09-07T06:14:10.5943230Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h' 2025-09-07T06:14:10.5944410Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-09-07T06:14:10.5945520Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-09-07T06:14:10.5946360Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-09-07T06:14:10.5948480Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-09-07T06:14:10.5950620Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-09-07T06:14:10.5953030Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-09-07T06:14:10.5959100Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-09-07T06:14:10.5959870Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-09-07T06:14:10.5960750Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-09-07T06:14:10.5961960Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-09-07T06:14:10.5964040Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-09-07T06:14:10.5964710Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-09-07T06:14:10.5965580Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-09-07T06:14:10.5966710Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-09-07T06:14:10.5967870Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-09-07T06:14:10.5968960Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-09-07T06:14:10.5971130Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-09-07T06:14:10.5980720Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-09-07T06:14:10.5982080Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-09-07T06:14:10.5983020Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-09-07T06:14:10.5984320Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-09-07T06:14:10.5985360Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-09-07T06:14:10.5986990Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-09-07T06:14:10.5988780Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-09-07T06:14:10.5991050Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-09-07T06:14:10.5991720Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-09-07T06:14:10.5992580Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-09-07T06:14:10.5993330Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-09-07T06:14:10.5994200Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-09-07T06:14:10.5994960Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-09-07T06:14:10.5999490Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-09-07T06:14:10.6000730Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-09-07T06:14:10.6001980Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-09-07T06:14:10.6003030Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-09-07T06:14:10.6003960Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-09-07T06:14:10.6004920Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-09-07T06:14:10.6005800Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-09-07T06:14:10.6007800Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-09-07T06:14:10.6008750Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-09-07T06:14:10.6010730Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-09-07T06:14:10.6012920Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-09-07T06:14:10.6015140Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-09-07T06:14:10.6016030Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-09-07T06:14:10.6017030Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-09-07T06:14:10.6018290Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-09-07T06:14:10.6021270Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-09-07T06:14:10.6021880Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-09-07T06:14:10.6022750Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-09-07T06:14:10.6024090Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-09-07T06:14:10.6026690Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-09-07T06:14:10.6032240Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-09-07T06:14:10.6033360Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-09-07T06:14:10.6034320Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-09-07T06:14:10.6035180Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-09-07T06:14:10.6036070Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-09-07T06:14:10.6037000Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-09-07T06:14:10.6037920Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-09-07T06:14:10.6039360Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-09-07T06:14:10.6040250Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-09-07T06:14:10.6041190Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-09-07T06:14:10.6042110Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-09-07T06:14:10.6044370Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h' 2025-09-07T06:14:10.6051070Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h' 2025-09-07T06:14:10.6052040Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/frame.h' 2025-09-07T06:14:10.6053130Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h' 2025-09-07T06:14:10.6055600Z adding 'torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h' 2025-09-07T06:14:10.6056210Z adding 'torch/include/torch/csrc/jit/runtime/static/fusion.h' 2025-09-07T06:14:10.6064350Z adding 'torch/include/torch/csrc/jit/runtime/static/impl.h' 2025-09-07T06:14:10.6065100Z adding 'torch/include/torch/csrc/jit/runtime/static/init.h' 2025-09-07T06:14:10.6068040Z adding 'torch/include/torch/csrc/jit/runtime/static/memory_planner.h' 2025-09-07T06:14:10.6069420Z adding 'torch/include/torch/csrc/jit/runtime/static/ops.h' 2025-09-07T06:14:10.6070810Z adding 'torch/include/torch/csrc/jit/runtime/static/passes.h' 2025-09-07T06:14:10.6072750Z adding 'torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h' 2025-09-07T06:14:10.6073530Z adding 'torch/include/torch/csrc/jit/runtime/static/static_method.h' 2025-09-07T06:14:10.6074500Z adding 'torch/include/torch/csrc/jit/runtime/static/te_wrapper.h' 2025-09-07T06:14:10.6076540Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-09-07T06:14:10.6078920Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-09-07T06:14:10.6079690Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-09-07T06:14:10.6081060Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-09-07T06:14:10.6081960Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-09-07T06:14:10.6083180Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-09-07T06:14:10.6084110Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-09-07T06:14:10.6085390Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-09-07T06:14:10.6086330Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-09-07T06:14:10.6087240Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-09-07T06:14:10.6088500Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-09-07T06:14:10.6100850Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-09-07T06:14:10.6102050Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-09-07T06:14:10.6103990Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-09-07T06:14:10.6105770Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-09-07T06:14:10.6107970Z adding 'torch/include/torch/csrc/jit/serialization/pickler_helper.h' 2025-09-07T06:14:10.6108740Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-09-07T06:14:10.6109880Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-09-07T06:14:10.6110790Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-09-07T06:14:10.6112020Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-09-07T06:14:10.6112890Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-09-07T06:14:10.6115230Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-09-07T06:14:10.6117740Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-09-07T06:14:10.6119110Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-09-07T06:14:10.6120220Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-09-07T06:14:10.6122130Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-09-07T06:14:10.6124160Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-09-07T06:14:10.6125260Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-09-07T06:14:10.6126240Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-09-07T06:14:10.6128500Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-09-07T06:14:10.6129440Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-09-07T06:14:10.6131970Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-09-07T06:14:10.6132860Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-09-07T06:14:10.6135950Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-09-07T06:14:10.6137090Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-09-07T06:14:10.6138130Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-09-07T06:14:10.6139330Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-09-07T06:14:10.6140560Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-09-07T06:14:10.6142190Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-09-07T06:14:10.6143960Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-09-07T06:14:10.6146050Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-09-07T06:14:10.6146610Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-09-07T06:14:10.6150990Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-09-07T06:14:10.6151950Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-09-07T06:14:10.6152960Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-09-07T06:14:10.6154230Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-09-07T06:14:10.6157590Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-09-07T06:14:10.6158330Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-09-07T06:14:10.6159360Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-09-07T06:14:10.6162690Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-09-07T06:14:10.6163800Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-09-07T06:14:10.6164950Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-09-07T06:14:10.6170400Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-09-07T06:14:10.6171080Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-09-07T06:14:10.6172010Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-09-07T06:14:10.6175380Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-09-07T06:14:10.6177370Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-09-07T06:14:10.6180490Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-09-07T06:14:10.6185010Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-09-07T06:14:10.6187190Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-09-07T06:14:10.6187870Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-09-07T06:14:10.6189780Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-09-07T06:14:10.6190500Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-09-07T06:14:10.6191700Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-09-07T06:14:10.6193270Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-09-07T06:14:10.6194020Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-09-07T06:14:10.6195100Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-09-07T06:14:10.6196050Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-09-07T06:14:10.6196940Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-09-07T06:14:10.6198070Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-09-07T06:14:10.6199280Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-09-07T06:14:10.6200310Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-09-07T06:14:10.6201230Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-09-07T06:14:10.6202450Z adding 'torch/include/torch/csrc/jit/testing/catch_utils.hpp' 2025-09-07T06:14:10.6203670Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-09-07T06:14:10.6204700Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-09-07T06:14:10.6206870Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-09-07T06:14:10.6207900Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-09-07T06:14:10.6209950Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-09-07T06:14:10.6210910Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-09-07T06:14:10.6212940Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-09-07T06:14:10.6213580Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-09-07T06:14:10.6214590Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-09-07T06:14:10.6215730Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-09-07T06:14:10.6217880Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-09-07T06:14:10.6219070Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-09-07T06:14:10.6221650Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-09-07T06:14:10.6222890Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-09-07T06:14:10.6223850Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-09-07T06:14:10.6224930Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-09-07T06:14:10.6225900Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-09-07T06:14:10.6229580Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-09-07T06:14:10.6231970Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-09-07T06:14:10.6232920Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-09-07T06:14:10.6233890Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-09-07T06:14:10.6235060Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-09-07T06:14:10.6237530Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-09-07T06:14:10.6240180Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-09-07T06:14:10.6241020Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-09-07T06:14:10.6242730Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-09-07T06:14:10.6243850Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-09-07T06:14:10.6245110Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-09-07T06:14:10.6246230Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-09-07T06:14:10.6248180Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-09-07T06:14:10.6249320Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-09-07T06:14:10.6250540Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-09-07T06:14:10.6251480Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-09-07T06:14:10.6274530Z adding 'torch/include/torch/csrc/lazy/generated/LazyIr.h' 2025-09-07T06:14:10.6278890Z adding 'torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h' 2025-09-07T06:14:10.6280150Z adding 'torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h' 2025-09-07T06:14:10.6281310Z adding 'torch/include/torch/csrc/lazy/python/init.h' 2025-09-07T06:14:10.6282300Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-09-07T06:14:10.6283500Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-09-07T06:14:10.6284710Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-09-07T06:14:10.6285910Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-09-07T06:14:10.6286920Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-09-07T06:14:10.6287870Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-09-07T06:14:10.6288860Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-09-07T06:14:10.6289830Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-09-07T06:14:10.6291890Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-09-07T06:14:10.6292910Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-09-07T06:14:10.6293860Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-09-07T06:14:10.6295180Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h' 2025-09-07T06:14:10.6296300Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/generic.h' 2025-09-07T06:14:10.6297780Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h' 2025-09-07T06:14:10.6300390Z adding 'torch/include/torch/csrc/monitor/counters.h' 2025-09-07T06:14:10.6301350Z adding 'torch/include/torch/csrc/monitor/events.h' 2025-09-07T06:14:10.6302300Z adding 'torch/include/torch/csrc/monitor/python_init.h' 2025-09-07T06:14:10.6303370Z adding 'torch/include/torch/csrc/mps/Module.h' 2025-09-07T06:14:10.6304400Z adding 'torch/include/torch/csrc/mtia/Module.h' 2025-09-07T06:14:10.6305680Z adding 'torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h' 2025-09-07T06:14:10.6306740Z adding 'torch/include/torch/csrc/multiprocessing/init.h' 2025-09-07T06:14:10.6307970Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-09-07T06:14:10.6308800Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-09-07T06:14:10.6309720Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-09-07T06:14:10.6311090Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-09-07T06:14:10.6315780Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-09-07T06:14:10.6316800Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-09-07T06:14:10.6318920Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-09-07T06:14:10.6320210Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-09-07T06:14:10.6321210Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-09-07T06:14:10.6322150Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-09-07T06:14:10.6323450Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-09-07T06:14:10.6324530Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-09-07T06:14:10.6325790Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-09-07T06:14:10.6327830Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-09-07T06:14:10.6330170Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-09-07T06:14:10.6331320Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-09-07T06:14:10.6332310Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-09-07T06:14:10.6333600Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-09-07T06:14:10.6334570Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-09-07T06:14:10.6335600Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-09-07T06:14:10.6340560Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-09-07T06:14:10.6340850Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-09-07T06:14:10.6341000Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-09-07T06:14:10.6341220Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-09-07T06:14:10.6341330Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-09-07T06:14:10.6341900Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-09-07T06:14:10.6343110Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-09-07T06:14:10.6345430Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-09-07T06:14:10.6346160Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-09-07T06:14:10.6347680Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-09-07T06:14:10.6348870Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-09-07T06:14:10.6350210Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-09-07T06:14:10.6353030Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-09-07T06:14:10.6354150Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-09-07T06:14:10.6357590Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-09-07T06:14:10.6358840Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-09-07T06:14:10.6359940Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-09-07T06:14:10.6361300Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-09-07T06:14:10.6362310Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-09-07T06:14:10.6363350Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-09-07T06:14:10.6364470Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-09-07T06:14:10.6366150Z adding 'torch/include/torch/csrc/stable/accelerator.h' 2025-09-07T06:14:10.6367770Z adding 'torch/include/torch/csrc/stable/library.h' 2025-09-07T06:14:10.6369720Z adding 'torch/include/torch/csrc/stable/ops.h' 2025-09-07T06:14:10.6372520Z adding 'torch/include/torch/csrc/stable/stableivalue_conversions.h' 2025-09-07T06:14:10.6372900Z adding 'torch/include/torch/csrc/stable/tensor.h' 2025-09-07T06:14:10.6373920Z adding 'torch/include/torch/csrc/stable/tensor_inl.h' 2025-09-07T06:14:10.6375930Z adding 'torch/include/torch/csrc/stable/tensor_struct.h' 2025-09-07T06:14:10.6376860Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-09-07T06:14:10.6378820Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-09-07T06:14:10.6379490Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-09-07T06:14:10.6380270Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-09-07T06:14:10.6381450Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-09-07T06:14:10.6382490Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-09-07T06:14:10.6396810Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-09-07T06:14:10.6398390Z adding 'torch/include/torch/csrc/utils/init.h' 2025-09-07T06:14:10.6398900Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-09-07T06:14:10.6399720Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-09-07T06:14:10.6400690Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-09-07T06:14:10.6401850Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-09-07T06:14:10.6402690Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-09-07T06:14:10.6405360Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-09-07T06:14:10.6406260Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-09-07T06:14:10.6407140Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-09-07T06:14:10.6415140Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-09-07T06:14:10.6416000Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-09-07T06:14:10.6416880Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-09-07T06:14:10.6418970Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-09-07T06:14:10.6419700Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-09-07T06:14:10.6421320Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-09-07T06:14:10.6422700Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-09-07T06:14:10.6423580Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-09-07T06:14:10.6425650Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-09-07T06:14:10.6426290Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-09-07T06:14:10.6427200Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-09-07T06:14:10.6434710Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-09-07T06:14:10.6436200Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-09-07T06:14:10.6437250Z adding 'torch/include/torch/csrc/utils/six.h' 2025-09-07T06:14:10.6438210Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-09-07T06:14:10.6439110Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-09-07T06:14:10.6439990Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-09-07T06:14:10.6716370Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-09-07T06:14:10.6717320Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-09-07T06:14:10.6718280Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-09-07T06:14:10.6719410Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-09-07T06:14:10.6720750Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-09-07T06:14:10.6721820Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-09-07T06:14:10.7228770Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-09-07T06:14:10.7230260Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-09-07T06:14:10.7240130Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-09-07T06:14:10.7240680Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-09-07T06:14:10.7241070Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-09-07T06:14:10.7241410Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-09-07T06:14:10.7241710Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-09-07T06:14:10.7242950Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-09-07T06:14:10.7244070Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-09-07T06:14:10.7245350Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-09-07T06:14:10.7248300Z adding 'torch/include/torch/headeronly/core/ScalarType.h' 2025-09-07T06:14:10.7250140Z adding 'torch/include/torch/headeronly/cpu/vec/intrinsics.h' 2025-09-07T06:14:10.7251600Z adding 'torch/include/torch/headeronly/cpu/vec/vec_half.h' 2025-09-07T06:14:10.7254150Z adding 'torch/include/torch/headeronly/cpu/vec/vec256/missing_vld1_neon.h' 2025-09-07T06:14:10.7255730Z adding 'torch/include/torch/headeronly/cpu/vec/vec256/missing_vst1_neon.h' 2025-09-07T06:14:10.7258540Z adding 'torch/include/torch/headeronly/macros/Export.h' 2025-09-07T06:14:10.7263860Z adding 'torch/include/torch/headeronly/macros/Macros.h' 2025-09-07T06:14:10.7264990Z adding 'torch/include/torch/headeronly/macros/cmake_macros.h' 2025-09-07T06:14:10.7269310Z adding 'torch/include/torch/headeronly/util/BFloat16.h' 2025-09-07T06:14:10.7271310Z adding 'torch/include/torch/headeronly/util/Exception.h' 2025-09-07T06:14:10.7272370Z adding 'torch/include/torch/headeronly/util/Float4_e2m1fn_x2.h' 2025-09-07T06:14:10.7276480Z adding 'torch/include/torch/headeronly/util/Float8_e4m3fn.h' 2025-09-07T06:14:10.7279600Z adding 'torch/include/torch/headeronly/util/Float8_e4m3fnuz.h' 2025-09-07T06:14:10.7282750Z adding 'torch/include/torch/headeronly/util/Float8_e5m2.h' 2025-09-07T06:14:10.7285780Z adding 'torch/include/torch/headeronly/util/Float8_e5m2fnuz.h' 2025-09-07T06:14:10.7288100Z adding 'torch/include/torch/headeronly/util/Float8_e8m0fnu.h' 2025-09-07T06:14:10.7289510Z adding 'torch/include/torch/headeronly/util/Float8_fnuz_cvt.h' 2025-09-07T06:14:10.7295850Z adding 'torch/include/torch/headeronly/util/Half.h' 2025-09-07T06:14:10.7297550Z adding 'torch/include/torch/headeronly/util/TypeSafeSignMath.h' 2025-09-07T06:14:10.7298840Z adding 'torch/include/torch/headeronly/util/bit_cast.h' 2025-09-07T06:14:10.7300040Z adding 'torch/include/torch/headeronly/util/bits.h' 2025-09-07T06:14:10.7304580Z adding 'torch/include/torch/headeronly/util/complex.h' 2025-09-07T06:14:10.7305760Z adding 'torch/include/torch/headeronly/util/floating_point_utils.h' 2025-09-07T06:14:10.7306760Z adding 'torch/include/torch/headeronly/util/qint32.h' 2025-09-07T06:14:10.7307940Z adding 'torch/include/torch/headeronly/util/qint8.h' 2025-09-07T06:14:10.7309090Z adding 'torch/include/torch/headeronly/util/quint2x4.h' 2025-09-07T06:14:10.7310080Z adding 'torch/include/torch/headeronly/util/quint4x2.h' 2025-09-07T06:14:10.7311150Z adding 'torch/include/torch/headeronly/util/quint8.h' 2025-09-07T06:14:10.7312390Z adding 'torch/include/torch/headeronly/util/shim_utils.h' 2025-09-07T06:14:10.7316200Z adding 'torch/jit/__init__.py' 2025-09-07T06:14:10.7317810Z adding 'torch/jit/_async.py' 2025-09-07T06:14:10.7318960Z adding 'torch/jit/_await.py' 2025-09-07T06:14:10.7321570Z adding 'torch/jit/_builtins.py' 2025-09-07T06:14:10.7324500Z adding 'torch/jit/_check.py' 2025-09-07T06:14:10.7326920Z adding 'torch/jit/_dataclass_impls.py' 2025-09-07T06:14:10.7327850Z adding 'torch/jit/_decomposition_utils.py' 2025-09-07T06:14:10.7329990Z adding 'torch/jit/_decompositions.py' 2025-09-07T06:14:10.7332980Z adding 'torch/jit/_freeze.py' 2025-09-07T06:14:10.7335210Z adding 'torch/jit/_fuser.py' 2025-09-07T06:14:10.7336380Z adding 'torch/jit/_ir_utils.py' 2025-09-07T06:14:10.7337630Z adding 'torch/jit/_logging.py' 2025-09-07T06:14:10.7340350Z adding 'torch/jit/_monkeytype_config.py' 2025-09-07T06:14:10.7341440Z adding 'torch/jit/_pickle.py' 2025-09-07T06:14:10.7354140Z adding 'torch/jit/_recursive.py' 2025-09-07T06:14:10.7373940Z adding 'torch/jit/_script.py' 2025-09-07T06:14:10.7377080Z adding 'torch/jit/_script.pyi' 2025-09-07T06:14:10.7380140Z adding 'torch/jit/_serialization.py' 2025-09-07T06:14:10.7392120Z adding 'torch/jit/_shape_functions.py' 2025-09-07T06:14:10.7394050Z adding 'torch/jit/_state.py' 2025-09-07T06:14:10.7409460Z adding 'torch/jit/_trace.py' 2025-09-07T06:14:10.7415620Z adding 'torch/jit/annotations.py' 2025-09-07T06:14:10.7428070Z adding 'torch/jit/frontend.py' 2025-09-07T06:14:10.7429700Z adding 'torch/jit/generate_bytecode.py' 2025-09-07T06:14:10.7431130Z adding 'torch/jit/quantized.py' 2025-09-07T06:14:10.7434390Z adding 'torch/jit/supported_ops.py' 2025-09-07T06:14:10.7435870Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-09-07T06:14:10.7437320Z adding 'torch/jit/_passes/__init__.py' 2025-09-07T06:14:10.7438650Z adding 'torch/jit/_passes/_property_propagation.py' 2025-09-07T06:14:10.7441270Z adding 'torch/jit/mobile/__init__.py' 2025-09-07T06:14:10.7741540Z adding 'torch/lib/libc10.dylib' 2025-09-07T06:14:10.7960130Z adding 'torch/lib/libomp.dylib' 2025-09-07T06:14:10.7972650Z adding 'torch/lib/libshm.dylib' 2025-09-07T06:14:10.7975230Z adding 'torch/lib/libtorch.dylib' 2025-09-07T06:14:14.4753540Z adding 'torch/lib/libtorch_cpu.dylib' 2025-09-07T06:14:14.5566660Z adding 'torch/lib/libtorch_global_deps.dylib' 2025-09-07T06:14:15.1680750Z adding 'torch/lib/libtorch_python.dylib' 2025-09-07T06:14:15.1804640Z adding 'torch/lib/libshm/alloc_info.h' 2025-09-07T06:14:15.1805210Z adding 'torch/lib/libshm/err.h' 2025-09-07T06:14:15.1808220Z adding 'torch/lib/libshm/libshm.h' 2025-09-07T06:14:15.1809560Z adding 'torch/lib/libshm/socket.h' 2025-09-07T06:14:15.1810750Z adding 'torch/lib/libshm_windows/libshm.h' 2025-09-07T06:14:15.1832330Z adding 'torch/linalg/__init__.py' 2025-09-07T06:14:15.1834730Z adding 'torch/masked/__init__.py' 2025-09-07T06:14:15.1838820Z adding 'torch/masked/_docs.py' 2025-09-07T06:14:15.1851760Z adding 'torch/masked/_ops.py' 2025-09-07T06:14:15.1853160Z adding 'torch/masked/maskedtensor/__init__.py' 2025-09-07T06:14:15.1856840Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-09-07T06:14:15.1858340Z adding 'torch/masked/maskedtensor/binary.py' 2025-09-07T06:14:15.1861630Z adding 'torch/masked/maskedtensor/core.py' 2025-09-07T06:14:15.1862360Z adding 'torch/masked/maskedtensor/creation.py' 2025-09-07T06:14:15.1863940Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-09-07T06:14:15.1865460Z adding 'torch/masked/maskedtensor/reductions.py' 2025-09-07T06:14:15.1866890Z adding 'torch/masked/maskedtensor/unary.py' 2025-09-07T06:14:15.1868160Z adding 'torch/monitor/__init__.py' 2025-09-07T06:14:15.1870930Z adding 'torch/mps/__init__.py' 2025-09-07T06:14:15.1871730Z adding 'torch/mps/event.py' 2025-09-07T06:14:15.1872950Z adding 'torch/mps/profiler.py' 2025-09-07T06:14:15.1876580Z adding 'torch/mtia/__init__.py' 2025-09-07T06:14:15.1877740Z adding 'torch/mtia/_utils.py' 2025-09-07T06:14:15.1878800Z adding 'torch/mtia/memory.py' 2025-09-07T06:14:15.1880810Z adding 'torch/multiprocessing/__init__.py' 2025-09-07T06:14:15.1881360Z adding 'torch/multiprocessing/_atfork.py' 2025-09-07T06:14:15.1882900Z adding 'torch/multiprocessing/pool.py' 2025-09-07T06:14:15.1883910Z adding 'torch/multiprocessing/queue.py' 2025-09-07T06:14:15.1889090Z adding 'torch/multiprocessing/reductions.py' 2025-09-07T06:14:15.1892700Z adding 'torch/multiprocessing/spawn.py' 2025-09-07T06:14:15.1897910Z adding 'torch/nested/__init__.py' 2025-09-07T06:14:15.1898940Z adding 'torch/nested/_internal/__init__.py' 2025-09-07T06:14:15.1900200Z adding 'torch/nested/_internal/nested_int.py' 2025-09-07T06:14:15.1905700Z adding 'torch/nested/_internal/nested_tensor.py' 2025-09-07T06:14:15.1923690Z adding 'torch/nested/_internal/ops.py' 2025-09-07T06:14:15.1931440Z adding 'torch/nested/_internal/sdpa.py' 2025-09-07T06:14:15.1933110Z adding 'torch/nn/__init__.py' 2025-09-07T06:14:15.1934520Z adding 'torch/nn/_reduction.py' 2025-09-07T06:14:15.1935680Z adding 'torch/nn/common_types.py' 2025-09-07T06:14:15.1936960Z adding 'torch/nn/cpp.py' 2025-09-07T06:14:15.1980700Z adding 'torch/nn/functional.py' 2025-09-07T06:14:15.1985750Z adding 'torch/nn/functional.pyi' 2025-09-07T06:14:15.1987350Z adding 'torch/nn/grad.py' 2025-09-07T06:14:15.1992250Z adding 'torch/nn/init.py' 2025-09-07T06:14:15.1995390Z adding 'torch/nn/parameter.py' 2025-09-07T06:14:15.1996120Z adding 'torch/nn/parameter.pyi' 2025-09-07T06:14:15.1998740Z adding 'torch/nn/attention/__init__.py' 2025-09-07T06:14:15.1999580Z adding 'torch/nn/attention/_utils.py' 2025-09-07T06:14:15.2003080Z adding 'torch/nn/attention/bias.py' 2025-09-07T06:14:15.2017320Z adding 'torch/nn/attention/flex_attention.py' 2025-09-07T06:14:15.2018480Z adding 'torch/nn/attention/experimental/__init__.py' 2025-09-07T06:14:15.2021900Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-09-07T06:14:15.2022620Z adding 'torch/nn/backends/__init__.py' 2025-09-07T06:14:15.2023410Z adding 'torch/nn/backends/thnn.py' 2025-09-07T06:14:15.2024610Z adding 'torch/nn/intrinsic/__init__.py' 2025-09-07T06:14:15.2026660Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-09-07T06:14:15.2027160Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-09-07T06:14:15.2028100Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-09-07T06:14:15.2029250Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-09-07T06:14:15.2030650Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-09-07T06:14:15.2031500Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-09-07T06:14:15.2032320Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-09-07T06:14:15.2033370Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-09-07T06:14:15.2034840Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-09-07T06:14:15.2035960Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-09-07T06:14:15.2036740Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-09-07T06:14:15.2037730Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-09-07T06:14:15.2038940Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-09-07T06:14:15.2039730Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-09-07T06:14:15.2040490Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-09-07T06:14:15.2042940Z adding 'torch/nn/modules/__init__.py' 2025-09-07T06:14:15.2046130Z adding 'torch/nn/modules/_functions.py' 2025-09-07T06:14:15.2056220Z adding 'torch/nn/modules/activation.py' 2025-09-07T06:14:15.2059390Z adding 'torch/nn/modules/adaptive.py' 2025-09-07T06:14:15.2065010Z adding 'torch/nn/modules/batchnorm.py' 2025-09-07T06:14:15.2066390Z adding 'torch/nn/modules/channelshuffle.py' 2025-09-07T06:14:15.2073470Z adding 'torch/nn/modules/container.py' 2025-09-07T06:14:15.2083680Z adding 'torch/nn/modules/conv.py' 2025-09-07T06:14:15.2085080Z adding 'torch/nn/modules/distance.py' 2025-09-07T06:14:15.2087910Z adding 'torch/nn/modules/dropout.py' 2025-09-07T06:14:15.2089320Z adding 'torch/nn/modules/flatten.py' 2025-09-07T06:14:15.2092160Z adding 'torch/nn/modules/fold.py' 2025-09-07T06:14:15.2094980Z adding 'torch/nn/modules/instancenorm.py' 2025-09-07T06:14:15.2098300Z adding 'torch/nn/modules/lazy.py' 2025-09-07T06:14:15.2100770Z adding 'torch/nn/modules/linear.py' 2025-09-07T06:14:15.2116880Z adding 'torch/nn/modules/loss.py' 2025-09-07T06:14:15.2141900Z adding 'torch/nn/modules/module.py' 2025-09-07T06:14:15.2145870Z adding 'torch/nn/modules/normalization.py' 2025-09-07T06:14:15.2149100Z adding 'torch/nn/modules/padding.py' 2025-09-07T06:14:15.2150310Z adding 'torch/nn/modules/pixelshuffle.py' 2025-09-07T06:14:15.2157950Z adding 'torch/nn/modules/pooling.py' 2025-09-07T06:14:15.2169850Z adding 'torch/nn/modules/rnn.py' 2025-09-07T06:14:15.2174260Z adding 'torch/nn/modules/sparse.py' 2025-09-07T06:14:15.2182580Z adding 'torch/nn/modules/transformer.py' 2025-09-07T06:14:15.2185710Z adding 'torch/nn/modules/upsampling.py' 2025-09-07T06:14:15.2186870Z adding 'torch/nn/modules/utils.py' 2025-09-07T06:14:15.2188120Z adding 'torch/nn/parallel/__init__.py' 2025-09-07T06:14:15.2189910Z adding 'torch/nn/parallel/_functions.py' 2025-09-07T06:14:15.2192770Z adding 'torch/nn/parallel/comm.py' 2025-09-07T06:14:15.2195700Z adding 'torch/nn/parallel/data_parallel.py' 2025-09-07T06:14:15.2221620Z adding 'torch/nn/parallel/distributed.py' 2025-09-07T06:14:15.2223920Z adding 'torch/nn/parallel/parallel_apply.py' 2025-09-07T06:14:15.2226240Z adding 'torch/nn/parallel/replicate.py' 2025-09-07T06:14:15.2228090Z adding 'torch/nn/parallel/scatter_gather.py' 2025-09-07T06:14:15.2229120Z adding 'torch/nn/qat/__init__.py' 2025-09-07T06:14:15.2230250Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-09-07T06:14:15.2231700Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-09-07T06:14:15.2232610Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-09-07T06:14:15.2233840Z adding 'torch/nn/qat/modules/__init__.py' 2025-09-07T06:14:15.2234680Z adding 'torch/nn/qat/modules/conv.py' 2025-09-07T06:14:15.2235980Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-09-07T06:14:15.2236820Z adding 'torch/nn/qat/modules/linear.py' 2025-09-07T06:14:15.2237850Z adding 'torch/nn/quantizable/__init__.py' 2025-09-07T06:14:15.2238900Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-09-07T06:14:15.2240140Z adding 'torch/nn/quantizable/modules/activation.py' 2025-09-07T06:14:15.2240980Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-09-07T06:14:15.2242140Z adding 'torch/nn/quantized/__init__.py' 2025-09-07T06:14:15.2242970Z adding 'torch/nn/quantized/functional.py' 2025-09-07T06:14:15.2244470Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-09-07T06:14:15.2245750Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-09-07T06:14:15.2246690Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-09-07T06:14:15.2247530Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-09-07T06:14:15.2248750Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-09-07T06:14:15.2249700Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-09-07T06:14:15.2250510Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-09-07T06:14:15.2251480Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-09-07T06:14:15.2256350Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-09-07T06:14:15.2256620Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-09-07T06:14:15.2256930Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-09-07T06:14:15.2257190Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-09-07T06:14:15.2258000Z adding 'torch/nn/quantized/modules/__init__.py' 2025-09-07T06:14:15.2259280Z adding 'torch/nn/quantized/modules/activation.py' 2025-09-07T06:14:15.2260370Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-09-07T06:14:15.2261380Z adding 'torch/nn/quantized/modules/conv.py' 2025-09-07T06:14:15.2262300Z adding 'torch/nn/quantized/modules/dropout.py' 2025-09-07T06:14:15.2263240Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-09-07T06:14:15.2264170Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-09-07T06:14:15.2265090Z adding 'torch/nn/quantized/modules/linear.py' 2025-09-07T06:14:15.2265970Z adding 'torch/nn/quantized/modules/normalization.py' 2025-09-07T06:14:15.2266840Z adding 'torch/nn/quantized/modules/rnn.py' 2025-09-07T06:14:15.2267820Z adding 'torch/nn/quantized/modules/utils.py' 2025-09-07T06:14:15.2269300Z adding 'torch/nn/utils/__init__.py' 2025-09-07T06:14:15.2270440Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-09-07T06:14:15.2273380Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-09-07T06:14:15.2275190Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-09-07T06:14:15.2277720Z adding 'torch/nn/utils/clip_grad.py' 2025-09-07T06:14:15.2278940Z adding 'torch/nn/utils/convert_parameters.py' 2025-09-07T06:14:15.2280820Z adding 'torch/nn/utils/fusion.py' 2025-09-07T06:14:15.2281950Z adding 'torch/nn/utils/init.py' 2025-09-07T06:14:15.2283820Z adding 'torch/nn/utils/memory_format.py' 2025-09-07T06:14:15.2289680Z adding 'torch/nn/utils/parametrizations.py' 2025-09-07T06:14:15.2297530Z adding 'torch/nn/utils/parametrize.py' 2025-09-07T06:14:15.2308060Z adding 'torch/nn/utils/prune.py' 2025-09-07T06:14:15.2313090Z adding 'torch/nn/utils/rnn.py' 2025-09-07T06:14:15.2316690Z adding 'torch/nn/utils/spectral_norm.py' 2025-09-07T06:14:15.2319520Z adding 'torch/nn/utils/stateless.py' 2025-09-07T06:14:15.2321360Z adding 'torch/nn/utils/weight_norm.py' 2025-09-07T06:14:15.2322560Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-09-07T06:14:15.2323860Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-09-07T06:14:15.2326810Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-09-07T06:14:15.2327950Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-09-07T06:14:15.2330140Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-09-07T06:14:15.2331790Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-09-07T06:14:15.2333180Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-09-07T06:14:15.2334530Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-09-07T06:14:15.2335770Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-09-07T06:14:15.2336890Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-09-07T06:14:15.2337910Z adding 'torch/numa/__init__.py' 2025-09-07T06:14:15.2341860Z adding 'torch/numa/binding.py' 2025-09-07T06:14:15.2346060Z adding 'torch/onnx/__init__.py' 2025-09-07T06:14:15.2346770Z adding 'torch/onnx/_constants.py' 2025-09-07T06:14:15.2347770Z adding 'torch/onnx/_flags.py' 2025-09-07T06:14:15.2349790Z adding 'torch/onnx/errors.py' 2025-09-07T06:14:15.2350460Z adding 'torch/onnx/operators.py' 2025-09-07T06:14:15.2351330Z adding 'torch/onnx/symbolic_helper.py' 2025-09-07T06:14:15.2352150Z adding 'torch/onnx/symbolic_opset10.py' 2025-09-07T06:14:15.2352930Z adding 'torch/onnx/symbolic_opset11.py' 2025-09-07T06:14:15.2353710Z adding 'torch/onnx/symbolic_opset12.py' 2025-09-07T06:14:15.2354450Z adding 'torch/onnx/symbolic_opset13.py' 2025-09-07T06:14:15.2355190Z adding 'torch/onnx/symbolic_opset14.py' 2025-09-07T06:14:15.2355960Z adding 'torch/onnx/symbolic_opset15.py' 2025-09-07T06:14:15.2356680Z adding 'torch/onnx/symbolic_opset16.py' 2025-09-07T06:14:15.2357410Z adding 'torch/onnx/symbolic_opset17.py' 2025-09-07T06:14:15.2358190Z adding 'torch/onnx/symbolic_opset18.py' 2025-09-07T06:14:15.2358880Z adding 'torch/onnx/symbolic_opset19.py' 2025-09-07T06:14:15.2359650Z adding 'torch/onnx/symbolic_opset20.py' 2025-09-07T06:14:15.2360440Z adding 'torch/onnx/symbolic_opset7.py' 2025-09-07T06:14:15.2361160Z adding 'torch/onnx/symbolic_opset8.py' 2025-09-07T06:14:15.2361950Z adding 'torch/onnx/symbolic_opset9.py' 2025-09-07T06:14:15.2362710Z adding 'torch/onnx/utils.py' 2025-09-07T06:14:15.2363520Z adding 'torch/onnx/verification.py' 2025-09-07T06:14:15.2364580Z adding 'torch/onnx/_internal/__init__.py' 2025-09-07T06:14:15.2365610Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-09-07T06:14:15.2366840Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-09-07T06:14:15.2369570Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-09-07T06:14:15.2375950Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-09-07T06:14:15.2378240Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-09-07T06:14:15.2380540Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-09-07T06:14:15.2381170Z adding 'torch/onnx/_internal/exporter/_constants.py' 2025-09-07T06:14:15.2396440Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-09-07T06:14:15.2397850Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-09-07T06:14:15.2401390Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-09-07T06:14:15.2404560Z adding 'torch/onnx/_internal/exporter/_dynamic_shapes.py' 2025-09-07T06:14:15.2405320Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-09-07T06:14:15.2406170Z adding 'torch/onnx/_internal/exporter/_flags.py' 2025-09-07T06:14:15.2407270Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-09-07T06:14:15.2409370Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-09-07T06:14:15.2410150Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-09-07T06:14:15.2414500Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-09-07T06:14:15.2417410Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-09-07T06:14:15.2419020Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-09-07T06:14:15.2423800Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-09-07T06:14:15.2424750Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-09-07T06:14:15.2426240Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-09-07T06:14:15.2427250Z adding 'torch/onnx/_internal/exporter/_type_casting.py' 2025-09-07T06:14:15.2430480Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-09-07T06:14:15.2431430Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-09-07T06:14:15.2432530Z adding 'torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py' 2025-09-07T06:14:15.2433830Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-09-07T06:14:15.2434960Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-09-07T06:14:15.2436000Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/core.py' 2025-09-07T06:14:15.2438120Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-09-07T06:14:15.2440590Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/nn.py' 2025-09-07T06:14:15.2441810Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py' 2025-09-07T06:14:15.2442850Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symops.py' 2025-09-07T06:14:15.2443750Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-09-07T06:14:15.2446390Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-09-07T06:14:15.2447840Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-09-07T06:14:15.2448910Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-09-07T06:14:15.2458330Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-09-07T06:14:15.2459490Z adding 'torch/onnx/_internal/torchscript_exporter/__init__.py' 2025-09-07T06:14:15.2460460Z adding 'torch/onnx/_internal/torchscript_exporter/_experimental.py' 2025-09-07T06:14:15.2461650Z adding 'torch/onnx/_internal/torchscript_exporter/_globals.py' 2025-09-07T06:14:15.2464830Z adding 'torch/onnx/_internal/torchscript_exporter/_type_utils.py' 2025-09-07T06:14:15.2467880Z adding 'torch/onnx/_internal/torchscript_exporter/jit_utils.py' 2025-09-07T06:14:15.2470240Z adding 'torch/onnx/_internal/torchscript_exporter/onnx_proto_utils.py' 2025-09-07T06:14:15.2472920Z adding 'torch/onnx/_internal/torchscript_exporter/registration.py' 2025-09-07T06:14:15.2490280Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_helper.py' 2025-09-07T06:14:15.2496510Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset10.py' 2025-09-07T06:14:15.2506540Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset11.py' 2025-09-07T06:14:15.2509800Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset12.py' 2025-09-07T06:14:15.2516920Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset13.py' 2025-09-07T06:14:15.2519590Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset14.py' 2025-09-07T06:14:15.2520630Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset15.py' 2025-09-07T06:14:15.2522810Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset16.py' 2025-09-07T06:14:15.2525050Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset17.py' 2025-09-07T06:14:15.2526750Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset18.py' 2025-09-07T06:14:15.2527690Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset19.py' 2025-09-07T06:14:15.2528890Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset20.py' 2025-09-07T06:14:15.2529930Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset7.py' 2025-09-07T06:14:15.2533240Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset8.py' 2025-09-07T06:14:15.2576430Z adding 'torch/onnx/_internal/torchscript_exporter/symbolic_opset9.py' 2025-09-07T06:14:15.2595290Z adding 'torch/onnx/_internal/torchscript_exporter/utils.py' 2025-09-07T06:14:15.2599710Z adding 'torch/onnx/_internal/torchscript_exporter/verification.py' 2025-09-07T06:14:15.2604200Z adding 'torch/onnx/ops/__init__.py' 2025-09-07T06:14:15.2605050Z adding 'torch/onnx/ops/_dtype_mappings.py' 2025-09-07T06:14:15.2608370Z adding 'torch/onnx/ops/_impl.py' 2025-09-07T06:14:15.2610680Z adding 'torch/onnx/ops/_symbolic_impl.py' 2025-09-07T06:14:15.2611920Z adding 'torch/optim/__init__.py' 2025-09-07T06:14:15.2617460Z adding 'torch/optim/_adafactor.py' 2025-09-07T06:14:15.2618580Z adding 'torch/optim/_functional.py' 2025-09-07T06:14:15.2621920Z adding 'torch/optim/_muon.py' 2025-09-07T06:14:15.2625290Z adding 'torch/optim/adadelta.py' 2025-09-07T06:14:15.2629500Z adding 'torch/optim/adagrad.py' 2025-09-07T06:14:15.2636660Z adding 'torch/optim/adam.py' 2025-09-07T06:14:15.2640240Z adding 'torch/optim/adamax.py' 2025-09-07T06:14:15.2642040Z adding 'torch/optim/adamw.py' 2025-09-07T06:14:15.2645460Z adding 'torch/optim/asgd.py' 2025-09-07T06:14:15.2649440Z adding 'torch/optim/lbfgs.py' 2025-09-07T06:14:15.2664050Z adding 'torch/optim/lr_scheduler.py' 2025-09-07T06:14:15.2669230Z adding 'torch/optim/nadam.py' 2025-09-07T06:14:15.2679750Z adding 'torch/optim/optimizer.py' 2025-09-07T06:14:15.2684540Z adding 'torch/optim/radam.py' 2025-09-07T06:14:15.2688560Z adding 'torch/optim/rmsprop.py' 2025-09-07T06:14:15.2692180Z adding 'torch/optim/rprop.py' 2025-09-07T06:14:15.2696150Z adding 'torch/optim/sgd.py' 2025-09-07T06:14:15.2698450Z adding 'torch/optim/sparse_adam.py' 2025-09-07T06:14:15.2702530Z adding 'torch/optim/swa_utils.py' 2025-09-07T06:14:15.2703620Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-09-07T06:14:15.2704490Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-09-07T06:14:15.2705700Z adding 'torch/package/__init__.py' 2025-09-07T06:14:15.2707700Z adding 'torch/package/_digraph.py' 2025-09-07T06:14:15.2708510Z adding 'torch/package/_directory_reader.py' 2025-09-07T06:14:15.2709760Z adding 'torch/package/_importlib.py' 2025-09-07T06:14:15.2710870Z adding 'torch/package/_mangling.py' 2025-09-07T06:14:15.2712110Z adding 'torch/package/_mock.py' 2025-09-07T06:14:15.2714210Z adding 'torch/package/_package_pickler.py' 2025-09-07T06:14:15.2714630Z adding 'torch/package/_package_unpickler.py' 2025-09-07T06:14:15.2716170Z adding 'torch/package/_stdlib.py' 2025-09-07T06:14:15.2718230Z adding 'torch/package/file_structure_representation.py' 2025-09-07T06:14:15.2719110Z adding 'torch/package/find_file_dependencies.py' 2025-09-07T06:14:15.2720490Z adding 'torch/package/glob_group.py' 2025-09-07T06:14:15.2723290Z adding 'torch/package/importer.py' 2025-09-07T06:14:15.2733750Z adding 'torch/package/package_exporter.py' 2025-09-07T06:14:15.2741160Z adding 'torch/package/package_importer.py' 2025-09-07T06:14:15.2742210Z adding 'torch/package/analyze/__init__.py' 2025-09-07T06:14:15.2743320Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-09-07T06:14:15.2744140Z adding 'torch/package/analyze/is_from_package.py' 2025-09-07T06:14:15.2745320Z adding 'torch/package/analyze/trace_dependencies.py' 2025-09-07T06:14:15.2746610Z adding 'torch/profiler/__init__.py' 2025-09-07T06:14:15.2757130Z adding 'torch/profiler/_memory_profiler.py' 2025-09-07T06:14:15.2761890Z adding 'torch/profiler/_pattern_matcher.py' 2025-09-07T06:14:15.2765180Z adding 'torch/profiler/_utils.py' 2025-09-07T06:14:15.2766040Z adding 'torch/profiler/itt.py' 2025-09-07T06:14:15.2775070Z adding 'torch/profiler/profiler.py' 2025-09-07T06:14:15.2775920Z adding 'torch/profiler/python_tracer.py' 2025-09-07T06:14:15.2777780Z adding 'torch/quantization/__init__.py' 2025-09-07T06:14:15.2778520Z adding 'torch/quantization/_numeric_suite.py' 2025-09-07T06:14:15.2779440Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-09-07T06:14:15.2780970Z adding 'torch/quantization/_quantized_conversions.py' 2025-09-07T06:14:15.2781890Z adding 'torch/quantization/fake_quantize.py' 2025-09-07T06:14:15.2782770Z adding 'torch/quantization/fuse_modules.py' 2025-09-07T06:14:15.2783670Z adding 'torch/quantization/fuser_method_mappings.py' 2025-09-07T06:14:15.2784620Z adding 'torch/quantization/observer.py' 2025-09-07T06:14:15.2785520Z adding 'torch/quantization/qconfig.py' 2025-09-07T06:14:15.2786360Z adding 'torch/quantization/quant_type.py' 2025-09-07T06:14:15.2787310Z adding 'torch/quantization/quantization_mappings.py' 2025-09-07T06:14:15.2788150Z adding 'torch/quantization/quantize.py' 2025-09-07T06:14:15.2789000Z adding 'torch/quantization/quantize_fx.py' 2025-09-07T06:14:15.2789860Z adding 'torch/quantization/quantize_jit.py' 2025-09-07T06:14:15.2790660Z adding 'torch/quantization/stubs.py' 2025-09-07T06:14:15.2791530Z adding 'torch/quantization/utils.py' 2025-09-07T06:14:15.2792710Z adding 'torch/quantization/fx/__init__.py' 2025-09-07T06:14:15.2793660Z adding 'torch/quantization/fx/_equalize.py' 2025-09-07T06:14:15.2794470Z adding 'torch/quantization/fx/convert.py' 2025-09-07T06:14:15.2795280Z adding 'torch/quantization/fx/fuse.py' 2025-09-07T06:14:15.2796110Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-09-07T06:14:15.2796930Z adding 'torch/quantization/fx/graph_module.py' 2025-09-07T06:14:15.2797740Z adding 'torch/quantization/fx/match_utils.py' 2025-09-07T06:14:15.2798650Z adding 'torch/quantization/fx/pattern_utils.py' 2025-09-07T06:14:15.2799440Z adding 'torch/quantization/fx/prepare.py' 2025-09-07T06:14:15.2800390Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-09-07T06:14:15.2801180Z adding 'torch/quantization/fx/quantization_types.py' 2025-09-07T06:14:15.2801990Z adding 'torch/quantization/fx/utils.py' 2025-09-07T06:14:15.2804020Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-09-07T06:14:15.2805590Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-09-07T06:14:15.2806590Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-09-07T06:14:15.2808170Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-09-07T06:14:15.2815740Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-09-07T06:14:15.2816890Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-09-07T06:14:15.2818130Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-09-07T06:14:15.2819730Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-09-07T06:14:15.2820980Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-09-07T06:14:15.2822200Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-09-07T06:14:15.2823650Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-09-07T06:14:15.2842540Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-09-07T06:14:15.2843740Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-09-07T06:14:15.2845550Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-09-07T06:14:15.2846900Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-09-07T06:14:15.2849780Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-09-07T06:14:15.2852280Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-09-07T06:14:15.2854780Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-09-07T06:14:15.2857720Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-09-07T06:14:15.2858650Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-09-07T06:14:15.2859810Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-09-07T06:14:15.2860810Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-09-07T06:14:15.2861690Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-09-07T06:14:15.2862920Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-09-07T06:14:15.2867450Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-09-07T06:14:15.2868210Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-09-07T06:14:15.2870280Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-09-07T06:14:15.2870810Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-09-07T06:14:15.2871760Z adding 'torch/signal/__init__.py' 2025-09-07T06:14:15.2872840Z adding 'torch/signal/windows/__init__.py' 2025-09-07T06:14:15.2876580Z adding 'torch/signal/windows/windows.py' 2025-09-07T06:14:15.2882050Z adding 'torch/sparse/__init__.py' 2025-09-07T06:14:15.2885400Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-09-07T06:14:15.2886850Z adding 'torch/sparse/_semi_structured_ops.py' 2025-09-07T06:14:15.2902510Z adding 'torch/sparse/_triton_ops.py' 2025-09-07T06:14:15.2982600Z adding 'torch/sparse/_triton_ops_meta.py' 2025-09-07T06:14:15.2990030Z adding 'torch/sparse/semi_structured.py' 2025-09-07T06:14:15.2994890Z adding 'torch/special/__init__.py' 2025-09-07T06:14:15.2995870Z adding 'torch/testing/__init__.py' 2025-09-07T06:14:15.3009210Z adding 'torch/testing/_comparison.py' 2025-09-07T06:14:15.3012460Z adding 'torch/testing/_creation.py' 2025-09-07T06:14:15.3013420Z adding 'torch/testing/_utils.py' 2025-09-07T06:14:15.3014900Z adding 'torch/testing/_internal/__init__.py' 2025-09-07T06:14:15.3019230Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-09-07T06:14:15.3022120Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-09-07T06:14:15.3024300Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-09-07T06:14:15.3027200Z adding 'torch/testing/_internal/common_cuda.py' 2025-09-07T06:14:15.3043430Z adding 'torch/testing/_internal/common_device_type.py' 2025-09-07T06:14:15.3044850Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-09-07T06:14:15.3059750Z adding 'torch/testing/_internal/common_distributed.py' 2025-09-07T06:14:15.3061290Z adding 'torch/testing/_internal/common_dtype.py' 2025-09-07T06:14:15.3072700Z adding 'torch/testing/_internal/common_fsdp.py' 2025-09-07T06:14:15.3076120Z adding 'torch/testing/_internal/common_jit.py' 2025-09-07T06:14:15.3230980Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-09-07T06:14:15.3238200Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-09-07T06:14:15.3259630Z adding 'torch/testing/_internal/common_modules.py' 2025-09-07T06:14:15.3265140Z adding 'torch/testing/_internal/common_mps.py' 2025-09-07T06:14:15.3286770Z adding 'torch/testing/_internal/common_nn.py' 2025-09-07T06:14:15.3297970Z adding 'torch/testing/_internal/common_optimizers.py' 2025-09-07T06:14:15.3300630Z adding 'torch/testing/_internal/common_pruning.py' 2025-09-07T06:14:15.3319970Z adding 'torch/testing/_internal/common_quantization.py' 2025-09-07T06:14:15.3325580Z adding 'torch/testing/_internal/common_quantized.py' 2025-09-07T06:14:15.3328320Z adding 'torch/testing/_internal/common_subclass.py' 2025-09-07T06:14:15.3383370Z adding 'torch/testing/_internal/common_utils.py' 2025-09-07T06:14:15.3389600Z adding 'torch/testing/_internal/composite_compliance.py' 2025-09-07T06:14:15.3393230Z adding 'torch/testing/_internal/custom_op_db.py' 2025-09-07T06:14:15.3394590Z adding 'torch/testing/_internal/custom_tensor.py' 2025-09-07T06:14:15.3396940Z adding 'torch/testing/_internal/dist_utils.py' 2025-09-07T06:14:15.3399110Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-09-07T06:14:15.3399830Z adding 'torch/testing/_internal/fake_config_module.py' 2025-09-07T06:14:15.3400690Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-09-07T06:14:15.3401540Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-09-07T06:14:15.3404030Z adding 'torch/testing/_internal/hop_db.py' 2025-09-07T06:14:15.3407280Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-09-07T06:14:15.3410150Z adding 'torch/testing/_internal/inductor_utils.py' 2025-09-07T06:14:15.3416440Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-09-07T06:14:15.3423200Z adding 'torch/testing/_internal/jit_utils.py' 2025-09-07T06:14:15.3425370Z adding 'torch/testing/_internal/logging_tensor.py' 2025-09-07T06:14:15.3427180Z adding 'torch/testing/_internal/logging_utils.py' 2025-09-07T06:14:15.3428020Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-09-07T06:14:15.3428840Z adding 'torch/testing/_internal/static_module.py' 2025-09-07T06:14:15.3429970Z adding 'torch/testing/_internal/subclasses.py' 2025-09-07T06:14:15.3432030Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-09-07T06:14:15.3440700Z adding 'torch/testing/_internal/triton_utils.py' 2025-09-07T06:14:15.3441050Z adding 'torch/testing/_internal/two_tensor.py' 2025-09-07T06:14:15.3441300Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-09-07T06:14:15.3441540Z adding 'torch/testing/_internal/data/__init__.py' 2025-09-07T06:14:15.3441770Z adding 'torch/testing/_internal/data/network1.py' 2025-09-07T06:14:15.3442010Z adding 'torch/testing/_internal/data/network2.py' 2025-09-07T06:14:15.3442270Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-09-07T06:14:15.3444020Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-09-07T06:14:15.3445850Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-09-07T06:14:15.3450920Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-09-07T06:14:15.3516190Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-09-07T06:14:15.3519450Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-09-07T06:14:15.3520210Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-09-07T06:14:15.3524350Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-09-07T06:14:15.3526610Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-09-07T06:14:15.3527510Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-09-07T06:14:15.3528510Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-09-07T06:14:15.3530130Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-09-07T06:14:15.3531540Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-09-07T06:14:15.3532620Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-09-07T06:14:15.3533500Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-09-07T06:14:15.3538890Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-09-07T06:14:15.3539620Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-09-07T06:14:15.3540670Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-09-07T06:14:15.3544830Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-09-07T06:14:15.3545660Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-09-07T06:14:15.3563110Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-09-07T06:14:15.3565690Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-09-07T06:14:15.3568240Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-09-07T06:14:15.3569270Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-09-07T06:14:15.3570390Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-09-07T06:14:15.3607550Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-09-07T06:14:15.3609920Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-09-07T06:14:15.3610550Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-09-07T06:14:15.3612140Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-09-07T06:14:15.3614970Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-09-07T06:14:15.3615610Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-09-07T06:14:15.3617020Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-09-07T06:14:15.3625330Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-09-07T06:14:15.3627520Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-09-07T06:14:15.3628120Z adding 'torch/testing/_internal/generated/__init__.py' 2025-09-07T06:14:15.3660930Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-09-07T06:14:15.3664350Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-09-07T06:14:15.3690660Z adding 'torch/testing/_internal/opinfo/core.py' 2025-09-07T06:14:15.3693080Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-09-07T06:14:15.3695600Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-09-07T06:14:15.3696670Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-09-07T06:14:15.3702210Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-09-07T06:14:15.3705420Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-09-07T06:14:15.3717630Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-09-07T06:14:15.3727950Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-09-07T06:14:15.3730860Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-09-07T06:14:15.3735940Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-09-07T06:14:15.3739120Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-09-07T06:14:15.3740100Z adding 'torch/testing/_internal/optests/__init__.py' 2025-09-07T06:14:15.3742240Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-09-07T06:14:15.3743840Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-09-07T06:14:15.3744670Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-09-07T06:14:15.3751740Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-09-07T06:14:15.3752940Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-09-07T06:14:15.3753930Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-09-07T06:14:15.3754750Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-09-07T06:14:15.3755560Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-09-07T06:14:15.3757870Z adding 'torch/utils/__init__.py' 2025-09-07T06:14:15.3758970Z adding 'torch/utils/_appending_byte_serializer.py' 2025-09-07T06:14:15.3760610Z adding 'torch/utils/_backport_slots.py' 2025-09-07T06:14:15.3767170Z adding 'torch/utils/_config_module.py' 2025-09-07T06:14:15.3768090Z adding 'torch/utils/_config_typing.pyi' 2025-09-07T06:14:15.3770880Z adding 'torch/utils/_content_store.py' 2025-09-07T06:14:15.3772670Z adding 'torch/utils/_contextlib.py' 2025-09-07T06:14:15.3773540Z adding 'torch/utils/_cpp_embed_headers.py' 2025-09-07T06:14:15.3774610Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-09-07T06:14:15.3781130Z adding 'torch/utils/_cxx_pytree.py' 2025-09-07T06:14:15.3782340Z adding 'torch/utils/_device.py' 2025-09-07T06:14:15.3783200Z adding 'torch/utils/_dtype_abbrs.py' 2025-09-07T06:14:15.3784080Z adding 'torch/utils/_exposed_in.py' 2025-09-07T06:14:15.3785090Z adding 'torch/utils/_filelock.py' 2025-09-07T06:14:15.3786250Z adding 'torch/utils/_foreach_utils.py' 2025-09-07T06:14:15.3787240Z adding 'torch/utils/_functools.py' 2025-09-07T06:14:15.3789420Z adding 'torch/utils/_get_clean_triton.py' 2025-09-07T06:14:15.3789940Z adding 'torch/utils/_helion.py' 2025-09-07T06:14:15.3790940Z adding 'torch/utils/_import_utils.py' 2025-09-07T06:14:15.3791740Z adding 'torch/utils/_mode_utils.py' 2025-09-07T06:14:15.3793730Z adding 'torch/utils/_ordered_set.py' 2025-09-07T06:14:15.3800910Z adding 'torch/utils/_python_dispatch.py' 2025-09-07T06:14:15.3814830Z adding 'torch/utils/_pytree.py' 2025-09-07T06:14:15.3815920Z adding 'torch/utils/_stats.py' 2025-09-07T06:14:15.3816790Z adding 'torch/utils/_thunk.py' 2025-09-07T06:14:15.3819800Z adding 'torch/utils/_traceback.py' 2025-09-07T06:14:15.3820980Z adding 'torch/utils/_triton.py' 2025-09-07T06:14:15.3821870Z adding 'torch/utils/_typing_utils.py' 2025-09-07T06:14:15.3823070Z adding 'torch/utils/_zip.py' 2025-09-07T06:14:15.3827390Z adding 'torch/utils/backend_registration.py' 2025-09-07T06:14:15.3831850Z adding 'torch/utils/bundled_inputs.py' 2025-09-07T06:14:15.3848390Z adding 'torch/utils/checkpoint.py' 2025-09-07T06:14:15.3855060Z adding 'torch/utils/collect_env.py' 2025-09-07T06:14:15.3855850Z adding 'torch/utils/cpp_backtrace.py' 2025-09-07T06:14:15.3884580Z adding 'torch/utils/cpp_extension.py' 2025-09-07T06:14:15.3885840Z adding 'torch/utils/deterministic.py' 2025-09-07T06:14:15.3888170Z adding 'torch/utils/dlpack.py' 2025-09-07T06:14:15.3889020Z adding 'torch/utils/file_baton.py' 2025-09-07T06:14:15.3895780Z adding 'torch/utils/flop_counter.py' 2025-09-07T06:14:15.3898350Z adding 'torch/utils/hooks.py' 2025-09-07T06:14:15.3899700Z adding 'torch/utils/mkldnn.py' 2025-09-07T06:14:15.3901690Z adding 'torch/utils/mobile_optimizer.py' 2025-09-07T06:14:15.3902200Z adding 'torch/utils/model_zoo.py' 2025-09-07T06:14:15.3904190Z adding 'torch/utils/module_tracker.py' 2025-09-07T06:14:15.3905420Z adding 'torch/utils/show_pickle.py' 2025-09-07T06:14:15.3907610Z adding 'torch/utils/throughput_benchmark.py' 2025-09-07T06:14:15.3910350Z adding 'torch/utils/weak.py' 2025-09-07T06:14:15.3911470Z adding 'torch/utils/_strobelight/__init__.py' 2025-09-07T06:14:15.3914160Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-09-07T06:14:15.3914890Z adding 'torch/utils/_sympy/__init__.py' 2025-09-07T06:14:15.3926160Z adding 'torch/utils/_sympy/functions.py' 2025-09-07T06:14:15.3928530Z adding 'torch/utils/_sympy/interp.py' 2025-09-07T06:14:15.3930660Z adding 'torch/utils/_sympy/numbers.py' 2025-09-07T06:14:15.3933880Z adding 'torch/utils/_sympy/printers.py' 2025-09-07T06:14:15.3936340Z adding 'torch/utils/_sympy/reference.py' 2025-09-07T06:14:15.3937300Z adding 'torch/utils/_sympy/singleton_int.py' 2025-09-07T06:14:15.3939430Z adding 'torch/utils/_sympy/solve.py' 2025-09-07T06:14:15.3940600Z adding 'torch/utils/_sympy/symbol.py' 2025-09-07T06:14:15.3947990Z adding 'torch/utils/_sympy/value_ranges.py' 2025-09-07T06:14:15.3949070Z adding 'torch/utils/backcompat/__init__.py' 2025-09-07T06:14:15.3950140Z adding 'torch/utils/benchmark/__init__.py' 2025-09-07T06:14:15.3951220Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-09-07T06:14:15.3952510Z adding 'torch/utils/benchmark/examples/compare.py' 2025-09-07T06:14:15.3953800Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-09-07T06:14:15.3955320Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-09-07T06:14:15.3956190Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-09-07T06:14:15.3957750Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-09-07T06:14:15.3958690Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-09-07T06:14:15.3959980Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-09-07T06:14:15.3961290Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-09-07T06:14:15.3962460Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-09-07T06:14:15.3963720Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-09-07T06:14:15.3964870Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-09-07T06:14:15.3965880Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-09-07T06:14:15.3966820Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-09-07T06:14:15.3970320Z adding 'torch/utils/benchmark/utils/common.py' 2025-09-07T06:14:15.3973410Z adding 'torch/utils/benchmark/utils/compare.py' 2025-09-07T06:14:15.3975220Z adding 'torch/utils/benchmark/utils/compile.py' 2025-09-07T06:14:15.3977400Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-09-07T06:14:15.3981330Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-09-07T06:14:15.3982810Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-09-07T06:14:15.3983820Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-09-07T06:14:15.3988740Z adding 'torch/utils/benchmark/utils/timer.py' 2025-09-07T06:14:15.3989640Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-09-07T06:14:15.3991780Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-09-07T06:14:15.3992450Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-09-07T06:14:15.3993540Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-09-07T06:14:15.4001570Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-09-07T06:14:15.4036120Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-09-07T06:14:15.4038970Z adding 'torch/utils/bottleneck/__init__.py' 2025-09-07T06:14:15.4041120Z adding 'torch/utils/bottleneck/__main__.py' 2025-09-07T06:14:15.4042230Z adding 'torch/utils/data/__init__.py' 2025-09-07T06:14:15.4043130Z adding 'torch/utils/data/backward_compatibility.py' 2025-09-07T06:14:15.4062050Z adding 'torch/utils/data/dataloader.py' 2025-09-07T06:14:15.4066390Z adding 'torch/utils/data/dataset.py' 2025-09-07T06:14:15.4068200Z adding 'torch/utils/data/distributed.py' 2025-09-07T06:14:15.4074180Z adding 'torch/utils/data/graph.py' 2025-09-07T06:14:15.4074400Z adding 'torch/utils/data/graph_settings.py' 2025-09-07T06:14:15.4074630Z adding 'torch/utils/data/sampler.py' 2025-09-07T06:14:15.4076020Z adding 'torch/utils/data/_utils/__init__.py' 2025-09-07T06:14:15.4079480Z adding 'torch/utils/data/_utils/collate.py' 2025-09-07T06:14:15.4080300Z adding 'torch/utils/data/_utils/fetch.py' 2025-09-07T06:14:15.4081710Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-09-07T06:14:15.4083060Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-09-07T06:14:15.4086610Z adding 'torch/utils/data/_utils/worker.py' 2025-09-07T06:14:15.4087530Z adding 'torch/utils/data/datapipes/__init__.py' 2025-09-07T06:14:15.4089660Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-09-07T06:14:15.4092500Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-09-07T06:14:15.4096280Z adding 'torch/utils/data/datapipes/_typing.py' 2025-09-07T06:14:15.4099670Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-09-07T06:14:15.4105460Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-09-07T06:14:15.4108350Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-09-07T06:14:15.4109340Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-09-07T06:14:15.4110540Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-09-07T06:14:15.4113590Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-09-07T06:14:15.4114580Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-09-07T06:14:15.4115480Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-09-07T06:14:15.4116760Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-09-07T06:14:15.4119430Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-09-07T06:14:15.4121050Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-09-07T06:14:15.4126050Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-09-07T06:14:15.4127110Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-09-07T06:14:15.4128480Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-09-07T06:14:15.4131380Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-09-07T06:14:15.4132360Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-09-07T06:14:15.4133780Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-09-07T06:14:15.4135050Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-09-07T06:14:15.4136110Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-09-07T06:14:15.4137230Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-09-07T06:14:15.4138370Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-09-07T06:14:15.4139490Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-09-07T06:14:15.4140960Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-09-07T06:14:15.4142210Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-09-07T06:14:15.4143410Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-09-07T06:14:15.4144460Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-09-07T06:14:15.4145420Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-09-07T06:14:15.4148790Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-09-07T06:14:15.4151600Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-09-07T06:14:15.4152730Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-09-07T06:14:15.4153710Z adding 'torch/utils/hipify/__init__.py' 2025-09-07T06:14:15.4154740Z adding 'torch/utils/hipify/constants.py' 2025-09-07T06:14:15.4196240Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-09-07T06:14:15.4208230Z adding 'torch/utils/hipify/hipify_python.py' 2025-09-07T06:14:15.4208930Z adding 'torch/utils/hipify/version.py' 2025-09-07T06:14:15.4209950Z adding 'torch/utils/jit/__init__.py' 2025-09-07T06:14:15.4211450Z adding 'torch/utils/jit/log_extract.py' 2025-09-07T06:14:15.4215700Z adding 'torch/utils/model_dump/__init__.py' 2025-09-07T06:14:15.4216270Z adding 'torch/utils/model_dump/__main__.py' 2025-09-07T06:14:15.4220590Z adding 'torch/utils/model_dump/code.js' 2025-09-07T06:14:15.4221210Z adding 'torch/utils/model_dump/htm.mjs' 2025-09-07T06:14:15.4224190Z adding 'torch/utils/model_dump/preact.mjs' 2025-09-07T06:14:15.4224790Z adding 'torch/utils/model_dump/skeleton.html' 2025-09-07T06:14:15.4226190Z adding 'torch/utils/serialization/__init__.py' 2025-09-07T06:14:15.4227090Z adding 'torch/utils/serialization/config.py' 2025-09-07T06:14:15.4228190Z adding 'torch/utils/tensorboard/__init__.py' 2025-09-07T06:14:15.4229090Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-09-07T06:14:15.4230380Z adding 'torch/utils/tensorboard/_embedding.py' 2025-09-07T06:14:15.4231470Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-09-07T06:14:15.4232550Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-09-07T06:14:15.4236080Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-09-07T06:14:15.4238130Z adding 'torch/utils/tensorboard/_utils.py' 2025-09-07T06:14:15.4245260Z adding 'torch/utils/tensorboard/summary.py' 2025-09-07T06:14:15.4253480Z adding 'torch/utils/tensorboard/writer.py' 2025-09-07T06:14:15.4254390Z adding 'torch/utils/viz/__init__.py' 2025-09-07T06:14:15.4258460Z adding 'torch/utils/viz/_cycles.py' 2025-09-07T06:14:15.4262540Z adding 'torch/xpu/__init__.py' 2025-09-07T06:14:15.4263360Z adding 'torch/xpu/_gpu_trace.py' 2025-09-07T06:14:15.4264400Z adding 'torch/xpu/_utils.py' 2025-09-07T06:14:15.4266470Z adding 'torch/xpu/memory.py' 2025-09-07T06:14:15.4267600Z adding 'torch/xpu/random.py' 2025-09-07T06:14:15.4269620Z adding 'torch/xpu/streams.py' 2025-09-07T06:14:15.4272440Z adding 'torchgen/__init__.py' 2025-09-07T06:14:15.4273500Z adding 'torchgen/code_template.py' 2025-09-07T06:14:15.4274880Z adding 'torchgen/context.py' 2025-09-07T06:14:15.4297830Z adding 'torchgen/gen.py' 2025-09-07T06:14:15.4303830Z adding 'torchgen/gen_aoti_c_shim.py' 2025-09-07T06:14:15.4308420Z adding 'torchgen/gen_backend_stubs.py' 2025-09-07T06:14:15.4316230Z adding 'torchgen/gen_functionalization_type.py' 2025-09-07T06:14:15.4321200Z adding 'torchgen/gen_lazy_tensor.py' 2025-09-07T06:14:15.4322300Z adding 'torchgen/gen_schema_utils.py' 2025-09-07T06:14:15.4324680Z adding 'torchgen/gen_vmap_plumbing.py' 2025-09-07T06:14:15.4325500Z adding 'torchgen/local.py' 2025-09-07T06:14:15.4352010Z adding 'torchgen/model.py' 2025-09-07T06:14:15.4359160Z adding 'torchgen/native_function_generation.py' 2025-09-07T06:14:15.4363570Z adding 'torchgen/utils.py' 2025-09-07T06:14:15.4364520Z adding 'torchgen/yaml_utils.py' 2025-09-07T06:14:15.4365740Z adding 'torchgen/aoti/__init__.py' 2025-09-07T06:14:15.4367770Z adding 'torchgen/aoti/fallback_ops.py' 2025-09-07T06:14:15.4368540Z adding 'torchgen/api/__init__.py' 2025-09-07T06:14:15.4377210Z adding 'torchgen/api/autograd.py' 2025-09-07T06:14:15.4381040Z adding 'torchgen/api/cpp.py' 2025-09-07T06:14:15.4382230Z adding 'torchgen/api/dispatcher.py' 2025-09-07T06:14:15.4384580Z adding 'torchgen/api/functionalization.py' 2025-09-07T06:14:15.4388520Z adding 'torchgen/api/lazy.py' 2025-09-07T06:14:15.4389190Z adding 'torchgen/api/meta.py' 2025-09-07T06:14:15.4391180Z adding 'torchgen/api/native.py' 2025-09-07T06:14:15.4403810Z adding 'torchgen/api/python.py' 2025-09-07T06:14:15.4405950Z adding 'torchgen/api/structured.py' 2025-09-07T06:14:15.4409600Z adding 'torchgen/api/translate.py' 2025-09-07T06:14:15.4411400Z adding 'torchgen/api/ufunc.py' 2025-09-07T06:14:15.4413820Z adding 'torchgen/api/unboxing.py' 2025-09-07T06:14:15.4414670Z adding 'torchgen/api/types/__init__.py' 2025-09-07T06:14:15.4418250Z adding 'torchgen/api/types/signatures.py' 2025-09-07T06:14:15.4419800Z adding 'torchgen/api/types/types.py' 2025-09-07T06:14:15.4422130Z adding 'torchgen/api/types/types_base.py' 2025-09-07T06:14:15.4423030Z adding 'torchgen/dest/__init__.py' 2025-09-07T06:14:15.4428990Z adding 'torchgen/dest/lazy_ir.py' 2025-09-07T06:14:15.4429980Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-09-07T06:14:15.4431270Z adding 'torchgen/dest/native_functions.py' 2025-09-07T06:14:15.4439610Z adding 'torchgen/dest/register_dispatch_key.py' 2025-09-07T06:14:15.4443620Z adding 'torchgen/dest/ufunc.py' 2025-09-07T06:14:15.4444300Z adding 'torchgen/operator_versions/__init__.py' 2025-09-07T06:14:15.4447210Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-09-07T06:14:15.4447860Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-09-07T06:14:15.4523300Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-09-07T06:14:15.4527620Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-09-07T06:14:15.4529140Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-09-07T06:14:15.4530390Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-09-07T06:14:15.4531350Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-09-07T06:14:15.4532510Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-09-07T06:14:15.4533470Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-09-07T06:14:15.4534310Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-09-07T06:14:15.4535170Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-09-07T06:14:15.4536010Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-09-07T06:14:15.4537070Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-09-07T06:14:15.4538430Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-09-07T06:14:15.4539890Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-09-07T06:14:15.4540760Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-09-07T06:14:15.4545790Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-09-07T06:14:15.4546100Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-09-07T06:14:15.4546390Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-09-07T06:14:15.4546670Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-09-07T06:14:15.4546970Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-09-07T06:14:15.4547290Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-09-07T06:14:15.4547620Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-09-07T06:14:15.4547890Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-09-07T06:14:15.4548740Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-09-07T06:14:15.4549620Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-09-07T06:14:15.4550480Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-09-07T06:14:15.4551400Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-09-07T06:14:15.4552380Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-09-07T06:14:15.4553200Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-09-07T06:14:15.4554150Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-09-07T06:14:15.4555450Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-09-07T06:14:15.4556260Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-09-07T06:14:15.4557070Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-09-07T06:14:15.4563950Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-09-07T06:14:15.4564980Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-09-07T06:14:15.4565780Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-09-07T06:14:15.4566610Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-09-07T06:14:15.4567440Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-09-07T06:14:15.4568330Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-09-07T06:14:15.4569250Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-09-07T06:14:15.4570180Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-09-07T06:14:15.4570980Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-09-07T06:14:15.4572270Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-09-07T06:14:15.4572980Z adding 'torchgen/packaged/autograd/README.md' 2025-09-07T06:14:15.4573710Z adding 'torchgen/packaged/autograd/__init__.py' 2025-09-07T06:14:15.4574560Z adding 'torchgen/packaged/autograd/build.bzl' 2025-09-07T06:14:15.4575440Z adding 'torchgen/packaged/autograd/context.py' 2025-09-07T06:14:15.4576720Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-09-07T06:14:15.4606660Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-09-07T06:14:15.4609190Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-09-07T06:14:15.4610380Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-09-07T06:14:15.4617050Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-09-07T06:14:15.4622060Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-09-07T06:14:15.4631660Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-09-07T06:14:15.4636020Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-09-07T06:14:15.4637510Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-09-07T06:14:15.4654120Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-09-07T06:14:15.4657130Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-09-07T06:14:15.4665710Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-09-07T06:14:15.4667180Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-09-07T06:14:15.4668300Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-09-07T06:14:15.4669410Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-09-07T06:14:15.4670380Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-09-07T06:14:15.4671460Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-09-07T06:14:15.4672450Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-09-07T06:14:15.4673250Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-09-07T06:14:15.4674110Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-09-07T06:14:15.4674970Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-09-07T06:14:15.4675810Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-09-07T06:14:15.4676890Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-09-07T06:14:15.4677870Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-09-07T06:14:15.4678710Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-09-07T06:14:15.4679850Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-09-07T06:14:15.4680950Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-09-07T06:14:15.4682220Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-09-07T06:14:15.4683170Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-09-07T06:14:15.4683970Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-09-07T06:14:15.4684960Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-09-07T06:14:15.4685980Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-09-07T06:14:15.4687120Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-09-07T06:14:15.4694380Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-09-07T06:14:15.4695760Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-09-07T06:14:15.4696680Z adding 'torchgen/selective_build/__init__.py' 2025-09-07T06:14:15.4698830Z adding 'torchgen/selective_build/operator.py' 2025-09-07T06:14:15.4701520Z adding 'torchgen/selective_build/selector.py' 2025-09-07T06:14:15.4702230Z adding 'torchgen/static_runtime/__init__.py' 2025-09-07T06:14:15.4704590Z adding 'torchgen/static_runtime/config.py' 2025-09-07T06:14:15.4706490Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-09-07T06:14:15.4711310Z adding 'torchgen/static_runtime/generator.py' 2025-09-07T06:14:15.4785630Z adding 'torch-2.9.0a0+git93fb23d.dist-info/LICENSE' 2025-09-07T06:14:15.4794380Z adding 'torch-2.9.0a0+git93fb23d.dist-info/METADATA' 2025-09-07T06:14:15.4799680Z adding 'torch-2.9.0a0+git93fb23d.dist-info/NOTICE' 2025-09-07T06:14:15.4800150Z adding 'torch-2.9.0a0+git93fb23d.dist-info/WHEEL' 2025-09-07T06:14:15.4800800Z adding 'torch-2.9.0a0+git93fb23d.dist-info/entry_points.txt' 2025-09-07T06:14:15.4801310Z adding 'torch-2.9.0a0+git93fb23d.dist-info/top_level.txt' 2025-09-07T06:14:15.5197080Z adding 'torch-2.9.0a0+git93fb23d.dist-info/RECORD' 2025-09-07T06:14:15.5584090Z removing build/bdist.macosx-14.0-arm64/wheel 2025-09-07T06:14:16.0615880Z + which sccache 2025-09-07T06:14:16.0647530Z + print_sccache_stats 2025-09-07T06:14:16.0647730Z + echo 'PyTorch Build Statistics' 2025-09-07T06:14:16.0647920Z + sccache --show-stats 2025-09-07T06:14:16.0648090Z PyTorch Build Statistics 2025-09-07T06:14:16.0680460Z Compile requests 5377 2025-09-07T06:14:16.0680690Z Compile requests executed 5002 2025-09-07T06:14:16.0680890Z Cache hits 4979 2025-09-07T06:14:16.0681070Z Cache hits (C/C++) 4979 2025-09-07T06:14:16.0681250Z Cache misses 1 2025-09-07T06:14:16.0681440Z Cache misses (C/C++) 1 2025-09-07T06:14:16.0681730Z Cache timeouts 0 2025-09-07T06:14:16.0681930Z Cache read errors 0 2025-09-07T06:14:16.0682120Z Forced recaches 0 2025-09-07T06:14:16.0682310Z Cache write errors 0 2025-09-07T06:14:16.0682500Z Compilation failures 2 2025-09-07T06:14:16.0682690Z Cache errors 20 2025-09-07T06:14:16.0682870Z Cache errors (C/C++) 20 2025-09-07T06:14:16.0683060Z Non-cacheable compilations 0 2025-09-07T06:14:16.0683260Z Non-cacheable calls 283 2025-09-07T06:14:16.0683450Z Non-compilation calls 92 2025-09-07T06:14:16.0683650Z Unsupported compiler calls 0 2025-09-07T06:14:16.0684070Z Average cache write 0.029 s 2025-09-07T06:14:16.0684270Z Average compiler 0.945 s 2025-09-07T06:14:16.0684480Z Average cache read hit 0.000 s 2025-09-07T06:14:16.0684680Z Failed distributed compilations 0 2025-09-07T06:14:16.0684810Z 2025-09-07T06:14:16.0684870Z Non-cacheable reasons: 2025-09-07T06:14:16.0685040Z unknown source language 271 2025-09-07T06:14:16.0685230Z multiple input files 6 2025-09-07T06:14:16.0685410Z @ 6 2025-09-07T06:14:16.0685530Z 2025-09-07T06:14:16.0685690Z Cache location s3, name: ossci-compiler-cache-circleci-v2, prefix: /trunk/ 2025-09-07T06:14:16.0685990Z Version (client) 0.4.1 2025-09-07T06:14:16.0686170Z + [[ -n 49773695232 ]] 2025-09-07T06:14:16.0686340Z + sccache --show-stats --stats-format json 2025-09-07T06:14:16.0686730Z + jq .stats 2025-09-07T06:14:16.1204270Z + python tools/stats/export_test_times.py 2025-09-07T06:14:16.3977100Z Exporting test times from test-infra 2025-09-07T06:14:16.3977800Z Downloading https://raw.githubusercontent.com/pytorch/test-infra/generated-stats/stats/test-times.json to /Users/ec2-user/runner/_work/pytorch/pytorch/.additional_ci_files/test-times.json 2025-09-07T06:14:16.3978810Z Downloading https://raw.githubusercontent.com/pytorch/test-infra/generated-stats/stats/test-class-times.json to /Users/ec2-user/runner/_work/pytorch/pytorch/.additional_ci_files/test-class-times.json 2025-09-07T06:14:16.4040520Z + assert_git_not_dirty 2025-09-07T06:14:16.4040710Z + [[ macos-py3-arm64 != *rocm* ]] 2025-09-07T06:14:16.4040900Z + [[ macos-py3-arm64 != *xla* ]] 2025-09-07T06:14:16.4047030Z ++ git status --porcelain 2025-09-07T06:14:16.4047720Z ++ grep -v '?? third_party' 2025-09-07T06:14:17.5626960Z ++ true 2025-09-07T06:14:17.5628020Z + git_status= 2025-09-07T06:14:17.5628180Z + [[ -n '' ]] 2025-09-07T06:14:17.5628850Z + rm -rfv /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR 2025-09-07T06:14:17.5672610Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang 2025-09-07T06:14:17.5673030Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR/clang++ 2025-09-07T06:14:17.5673410Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.QcEjJ4onJR 2025-09-07T06:14:17.5699120Z ##[group]Run zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2025-09-07T06:14:17.5699630Z zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2025-09-07T06:14:17.6318490Z shell: /bin/bash -e {0} 2025-09-07T06:14:17.6318650Z env: 2025-09-07T06:14:17.6318780Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:14:17.6318950Z SCCACHE_USE_GHA: false 2025-09-07T06:14:17.6319160Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:14:17.6319430Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-09-07T06:14:17.6319630Z SCCACHE_S3_KEY_PREFIX: trunk 2025-09-07T06:14:17.6319790Z ##[endgroup] 2025-09-07T06:14:17.6732470Z adding: dist/ (stored 0%) 2025-09-07T06:14:19.1450280Z adding: dist/torch-2.9.0a0+git93fb23d-cp312-cp312-macosx_11_0_arm64.whl (deflated 3%) 2025-09-07T06:14:19.1577490Z adding: build/.ninja_log (deflated 89%) 2025-09-07T06:14:19.2079800Z adding: build/compile_commands.json (deflated 97%) 2025-09-07T06:14:19.2080140Z adding: .additional_ci_files/ (stored 0%) 2025-09-07T06:14:19.2194820Z adding: .additional_ci_files/test-times.json (deflated 66%) 2025-09-07T06:14:19.2647020Z adding: .additional_ci_files/test-class-times.json (deflated 65%) 2025-09-07T06:14:19.2821510Z ##[group]Run actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 2025-09-07T06:14:19.2821810Z with: 2025-09-07T06:14:19.2821960Z name: macos-py3-arm64 2025-09-07T06:14:19.2822120Z retention-days: 14 2025-09-07T06:14:19.2822300Z if-no-files-found: error 2025-09-07T06:14:19.2822460Z path: artifacts.zip 2025-09-07T06:14:19.2822630Z compression-level: 6 2025-09-07T06:14:19.2822940Z overwrite: false 2025-09-07T06:14:19.2823100Z include-hidden-files: false 2025-09-07T06:14:19.2823270Z env: 2025-09-07T06:14:19.2823420Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:14:19.2823620Z SCCACHE_USE_GHA: false 2025-09-07T06:14:19.2823850Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:14:19.2824160Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-09-07T06:14:19.2824380Z SCCACHE_S3_KEY_PREFIX: trunk 2025-09-07T06:14:19.2824550Z ##[endgroup] 2025-09-07T06:14:19.4383530Z With the provided path, there will be 1 file uploaded 2025-09-07T06:14:19.4386020Z Artifact name is valid! 2025-09-07T06:14:19.4386280Z Root directory input is valid! 2025-09-07T06:14:19.5247510Z Beginning upload of artifact content to blob storage 2025-09-07T06:14:19.8966580Z Uploaded bytes 8388608 2025-09-07T06:14:20.1396690Z Uploaded bytes 16777216 2025-09-07T06:14:20.1651350Z Uploaded bytes 25165824 2025-09-07T06:14:20.3209750Z Uploaded bytes 33554432 2025-09-07T06:14:20.4631180Z Uploaded bytes 41943040 2025-09-07T06:14:20.5818210Z Uploaded bytes 50331648 2025-09-07T06:14:20.8685310Z Uploaded bytes 58720256 2025-09-07T06:14:20.9471250Z Uploaded bytes 67108864 2025-09-07T06:14:21.0938860Z Uploaded bytes 71771883 2025-09-07T06:14:21.1182450Z Finished uploading artifact content to blob storage! 2025-09-07T06:14:21.1188130Z SHA256 digest of uploaded artifact zip is 050603c2cbb29a5a7810ae03b7998007a9706e82394b51e98750c0679235789a 2025-09-07T06:14:21.1191360Z Finalizing artifact upload 2025-09-07T06:14:21.2080420Z Artifact macos-py3-arm64.zip successfully finalized. Artifact ID 3946318124 2025-09-07T06:14:21.2083220Z Artifact macos-py3-arm64 has been successfully uploaded! Final size is 71771883 bytes. Artifact ID is 3946318124 2025-09-07T06:14:21.2121800Z Artifact download URL: https://github.com/pytorch/pytorch/actions/runs/17524754564/artifacts/3946318124 2025-09-07T06:14:21.2399500Z ##[group]Run actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 2025-09-07T06:14:21.2400410Z with: 2025-09-07T06:14:21.2401010Z name: sccache-stats-macos-py3-arm64-runattempt1-49773695232 2025-09-07T06:14:21.2401880Z retention-days: 14 2025-09-07T06:14:21.2402370Z if-no-files-found: warn 2025-09-07T06:14:21.2402890Z path: sccache-stats-*.json 2025-09-07T06:14:21.2403440Z compression-level: 6 2025-09-07T06:14:21.2403910Z overwrite: false 2025-09-07T06:14:21.2404390Z include-hidden-files: false 2025-09-07T06:14:21.2404880Z env: 2025-09-07T06:14:21.2405290Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:14:21.2405880Z SCCACHE_USE_GHA: false 2025-09-07T06:14:21.2406550Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:14:21.2407420Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-09-07T06:14:21.2408170Z SCCACHE_S3_KEY_PREFIX: trunk 2025-09-07T06:14:21.2408670Z ##[endgroup] 2025-09-07T06:14:21.4040820Z With the provided path, there will be 1 file uploaded 2025-09-07T06:14:21.4042800Z Artifact name is valid! 2025-09-07T06:14:21.4043310Z Root directory input is valid! 2025-09-07T06:14:21.4686630Z Beginning upload of artifact content to blob storage 2025-09-07T06:14:21.5185470Z Uploaded bytes 528 2025-09-07T06:14:21.5348870Z Finished uploading artifact content to blob storage! 2025-09-07T06:14:21.5350430Z SHA256 digest of uploaded artifact zip is d49a00993e4d1b569f9ab9690a1a73c739bf65bbfa66e03248a98cd60bf5886d 2025-09-07T06:14:21.5350990Z Finalizing artifact upload 2025-09-07T06:14:21.6038270Z Artifact sccache-stats-macos-py3-arm64-runattempt1-49773695232.zip successfully finalized. Artifact ID 3946318139 2025-09-07T06:14:21.6039560Z Artifact sccache-stats-macos-py3-arm64-runattempt1-49773695232 has been successfully uploaded! Final size is 528 bytes. Artifact ID is 3946318139 2025-09-07T06:14:21.6058330Z Artifact download URL: https://github.com/pytorch/pytorch/actions/runs/17524754564/artifacts/3946318139 2025-09-07T06:14:21.6180360Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2025-09-07T06:14:21.6180840Z with: 2025-09-07T06:14:21.6181060Z minimum-available-space-in-gb: 6 2025-09-07T06:14:21.6181350Z env: 2025-09-07T06:14:21.6181590Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:14:21.6181870Z SCCACHE_USE_GHA: false 2025-09-07T06:14:21.6182220Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:14:21.6182670Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-09-07T06:14:21.6183000Z SCCACHE_S3_KEY_PREFIX: trunk 2025-09-07T06:14:21.6183230Z ##[endgroup] 2025-09-07T06:14:21.6199090Z ##[group]Run echo "Print the available disk space for manual inspection" 2025-09-07T06:14:21.6199670Z echo "Print the available disk space for manual inspection" 2025-09-07T06:14:21.6200070Z df -h 2025-09-07T06:14:21.6200270Z  2025-09-07T06:14:21.6200510Z function check_disk_space() { 2025-09-07T06:14:21.6200830Z  set +e 2025-09-07T06:14:21.6201060Z  2025-09-07T06:14:21.6201290Z  # Set the minimum requirement space to 6GB 2025-09-07T06:14:21.6201770Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2025-09-07T06:14:21.6202170Z  2025-09-07T06:14:21.6202430Z  # Use KB to avoid floating point warning like 3.1GB 2025-09-07T06:14:21.6202850Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2025-09-07T06:14:21.6203260Z  do 2025-09-07T06:14:21.6203500Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2025-09-07T06:14:21.6203830Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2025-09-07T06:14:21.6204120Z  2025-09-07T06:14:21.6204350Z  if [ "${MOUNT}" = "/" ]; then 2025-09-07T06:14:21.6204730Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2025-09-07T06:14:21.6205510Z  echo "Failure: There is only ${AVAIL}KB free space left in ${MOUNT}, which is less than the minimum requirement of ${MINIMUM_AVAILABLE_SPACE_IN_KB}KB for ${RUNNER_OS}" 2025-09-07T06:14:21.6206160Z  else 2025-09-07T06:14:21.6206600Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2025-09-07T06:14:21.6207030Z  fi 2025-09-07T06:14:21.6207240Z  fi 2025-09-07T06:14:21.6207440Z  done 2025-09-07T06:14:21.6207630Z  2025-09-07T06:14:21.6207800Z  set -e 2025-09-07T06:14:21.6208010Z } 2025-09-07T06:14:21.6208190Z  2025-09-07T06:14:21.6208410Z RESULT=$(check_disk_space) 2025-09-07T06:14:21.6208680Z echo "${RESULT}" 2025-09-07T06:14:21.6208920Z  2025-09-07T06:14:21.6209200Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2025-09-07T06:14:21.6209910Z  # We can clean up /System/Library/Caches/com.apple.coresymbolicationd on MacOS to free up the space and this should free up enough space 2025-09-07T06:14:21.6210630Z  # https://github.com/pytorch/pytorch/issues/85440 2025-09-07T06:14:21.6211150Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2025-09-07T06:14:21.6211900Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2025-09-07T06:14:21.6212570Z  sudo launchctl stop com.apple.coresymbolicationd || true 2025-09-07T06:14:21.6212960Z  2025-09-07T06:14:21.6213200Z  # Clean up crash reports on the runner 2025-09-07T06:14:21.6213670Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2025-09-07T06:14:21.6214080Z  2025-09-07T06:14:21.6214380Z  # Also try to clean up torch.hub caching directory 2025-09-07T06:14:21.6214780Z  rm -rf "${HOME}/.cache/torch/hub" || true 2025-09-07T06:14:21.6215080Z  2025-09-07T06:14:21.6215610Z  # Purge conda 2025-09-07T06:14:21.6215890Z  conda clean -p -t -y || true 2025-09-07T06:14:21.6216240Z  # and pip cache 2025-09-07T06:14:21.6216500Z  pip cache purge || true 2025-09-07T06:14:21.6216760Z  2025-09-07T06:14:21.6217090Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2025-09-07T06:14:21.6217490Z  # Re-run the check 2025-09-07T06:14:21.6217790Z  RESULT=$(check_disk_space) 2025-09-07T06:14:21.6218100Z  echo "${RESULT}" 2025-09-07T06:14:21.6218360Z fi 2025-09-07T06:14:21.6218550Z  2025-09-07T06:14:21.6218770Z if [[ "${RESULT}" == *Failure* ]]; then 2025-09-07T06:14:21.6219080Z  df -h 2025-09-07T06:14:21.6219290Z  2025-09-07T06:14:21.6219910Z  echo "Please help create an issue to PyTorch Release Engineering via https://github.com/pytorch/test-infra/issues and provide the link to the workflow run." 2025-09-07T06:14:21.6220580Z  exit 1 2025-09-07T06:14:21.6220790Z fi 2025-09-07T06:14:21.6243480Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-09-07T06:14:21.6243850Z env: 2025-09-07T06:14:21.6244060Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-09-07T06:14:21.6244400Z SCCACHE_USE_GHA: false 2025-09-07T06:14:21.6244740Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:14:21.6245200Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-09-07T06:14:21.6245490Z SCCACHE_S3_KEY_PREFIX: trunk 2025-09-07T06:14:21.6245760Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2025-09-07T06:14:21.6246010Z ##[endgroup] 2025-09-07T06:14:21.6551480Z Print the available disk space for manual inspection 2025-09-07T06:14:21.6579700Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-09-07T06:14:21.6580100Z /dev/disk5s2s1 256Gi 9.5Gi 184Gi 5% 404k 1.9G 0% / 2025-09-07T06:14:21.6580500Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-09-07T06:14:21.6580850Z /dev/disk5s5 256Gi 1.0Gi 184Gi 1% 1 1.9G 0% /System/Volumes/VM 2025-09-07T06:14:21.6581240Z /dev/disk5s3 256Gi 5.7Gi 184Gi 4% 1.0k 1.9G 0% /System/Volumes/Preboot 2025-09-07T06:14:21.6581650Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-09-07T06:14:21.6582040Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-09-07T06:14:21.6582510Z /dev/disk1s3 500Mi 848Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-09-07T06:14:21.6582930Z /dev/disk5s1 256Gi 54Gi 184Gi 23% 1.8M 1.9G 0% /System/Volumes/Data 2025-09-07T06:14:21.6583320Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-09-07T06:14:21.6583710Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-20PTox 2025-09-07T06:14:21.6971910Z Success: There is 193144140KB free space left in / for macOS, continue 2025-09-07T06:14:21.7021990Z Post job cleanup. 2025-09-07T06:14:21.7479040Z Removing virtual environment at /Users/ec2-user/runner/_work/_temp/venv-3.12-1757225404 2025-09-07T06:14:24.1221430Z Post job cleanup. 2025-09-07T06:14:24.1253370Z Post job cleanup. 2025-09-07T06:14:24.2048260Z [command]/usr/bin/git version 2025-09-07T06:14:24.2115870Z git version 2.39.3 (Apple Git-146) 2025-09-07T06:14:24.2134680Z Copying '/Users/ec2-user/.gitconfig' to '/Users/ec2-user/runner/_work/_temp/b1581215-6766-4fe3-a47c-f8cd9f52a114/.gitconfig' 2025-09-07T06:14:24.2140650Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/b1581215-6766-4fe3-a47c-f8cd9f52a114' before making global git config changes 2025-09-07T06:14:24.2141270Z Adding repository directory to the temporary git global config as a safe directory 2025-09-07T06:14:24.2144500Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2025-09-07T06:14:24.2214680Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-09-07T06:14:24.2275980Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2025-09-07T06:14:24.2854340Z Entering 'android/libs/fbjni' 2025-09-07T06:14:24.2960790Z Entering 'third_party/FP16' 2025-09-07T06:14:24.3063390Z Entering 'third_party/FXdiv' 2025-09-07T06:14:24.3165480Z Entering 'third_party/NNPACK' 2025-09-07T06:14:24.3267620Z Entering 'third_party/NVTX' 2025-09-07T06:14:24.3370060Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:14:24.3471460Z Entering 'third_party/XNNPACK' 2025-09-07T06:14:24.3726110Z Entering 'third_party/aiter' 2025-09-07T06:14:24.3828750Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:14:24.3933450Z Entering 'third_party/benchmark' 2025-09-07T06:14:24.4035370Z Entering 'third_party/composable_kernel' 2025-09-07T06:14:24.4138400Z Entering 'third_party/cpp-httplib' 2025-09-07T06:14:24.4240310Z Entering 'third_party/cpuinfo' 2025-09-07T06:14:24.4341910Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:14:24.4443220Z Entering 'third_party/cutlass' 2025-09-07T06:14:24.4547620Z Entering 'third_party/fbgemm' 2025-09-07T06:14:24.4684570Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:14:24.4814080Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:14:24.5037410Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:14:24.5172060Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:14:24.5412110Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:14:24.5564120Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:14:24.5690410Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:14:24.5801400Z Entering 'third_party/flash-attention' 2025-09-07T06:14:24.5902700Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:14:24.6005970Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:14:24.6112010Z Entering 'third_party/flatbuffers' 2025-09-07T06:14:24.6217150Z Entering 'third_party/fmt' 2025-09-07T06:14:24.6319930Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:14:24.6421920Z Entering 'third_party/gloo' 2025-09-07T06:14:24.6524040Z Entering 'third_party/googletest' 2025-09-07T06:14:24.6624400Z Entering 'third_party/ideep' 2025-09-07T06:14:24.6741220Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:14:24.6940890Z Entering 'third_party/ittapi' 2025-09-07T06:14:24.7043830Z Entering 'third_party/kineto' 2025-09-07T06:14:24.7154820Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:14:24.7250160Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:14:24.7360420Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:14:24.7466990Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:14:24.7571240Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:14:24.7672300Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:14:24.7779140Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:14:24.7881880Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:14:24.7985430Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:14:24.8089190Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:14:24.8196520Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:14:24.8297980Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:14:24.8399430Z Entering 'third_party/kleidiai' 2025-09-07T06:14:24.8499400Z Entering 'third_party/mimalloc' 2025-09-07T06:14:24.8599220Z Entering 'third_party/nlohmann' 2025-09-07T06:14:24.8699010Z Entering 'third_party/onnx' 2025-09-07T06:14:24.8963440Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:14:24.9075220Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:14:24.9176190Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:14:24.9276990Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:14:24.9377360Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:14:24.9477920Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:14:24.9577590Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:14:24.9674750Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:14:24.9772640Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:14:24.9868920Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:14:24.9968430Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:14:25.0070420Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:14:25.0179750Z Entering 'third_party/pocketfft' 2025-09-07T06:14:25.0281370Z Entering 'third_party/protobuf' 2025-09-07T06:14:25.0405560Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:14:25.0525180Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:14:25.0633090Z Entering 'third_party/psimd' 2025-09-07T06:14:25.0732370Z Entering 'third_party/pthreadpool' 2025-09-07T06:14:25.0831150Z Entering 'third_party/pybind11' 2025-09-07T06:14:25.0929110Z Entering 'third_party/python-peachpy' 2025-09-07T06:14:25.1028570Z Entering 'third_party/sleef' 2025-09-07T06:14:25.1127400Z Entering 'third_party/tensorpipe' 2025-09-07T06:14:25.1240380Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:14:25.1362750Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:14:25.1489480Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:14:25.1618860Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:14:25.1738550Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:14:25.1858780Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-09-07T06:14:25.1914290Z http.https://github.com/.extraheader 2025-09-07T06:14:25.1921070Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2025-09-07T06:14:25.1982110Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2025-09-07T06:14:25.2484160Z Entering 'android/libs/fbjni' 2025-09-07T06:14:25.2554040Z http.https://github.com/.extraheader 2025-09-07T06:14:25.2626730Z Entering 'third_party/FP16' 2025-09-07T06:14:25.2692890Z http.https://github.com/.extraheader 2025-09-07T06:14:25.2758320Z Entering 'third_party/FXdiv' 2025-09-07T06:14:25.2823390Z http.https://github.com/.extraheader 2025-09-07T06:14:25.2888840Z Entering 'third_party/NNPACK' 2025-09-07T06:14:25.2953940Z http.https://github.com/.extraheader 2025-09-07T06:14:25.3018890Z Entering 'third_party/NVTX' 2025-09-07T06:14:25.3083950Z http.https://github.com/.extraheader 2025-09-07T06:14:25.3149340Z Entering 'third_party/VulkanMemoryAllocator' 2025-09-07T06:14:25.3214050Z http.https://github.com/.extraheader 2025-09-07T06:14:25.3278550Z Entering 'third_party/XNNPACK' 2025-09-07T06:14:25.3344050Z http.https://github.com/.extraheader 2025-09-07T06:14:25.3414920Z Entering 'third_party/aiter' 2025-09-07T06:14:25.3484020Z http.https://github.com/.extraheader 2025-09-07T06:14:25.3549700Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-09-07T06:14:25.3616950Z http.https://github.com/.extraheader 2025-09-07T06:14:25.3687820Z Entering 'third_party/benchmark' 2025-09-07T06:14:25.3757370Z http.https://github.com/.extraheader 2025-09-07T06:14:25.3824690Z Entering 'third_party/composable_kernel' 2025-09-07T06:14:25.3891980Z http.https://github.com/.extraheader 2025-09-07T06:14:25.3962040Z Entering 'third_party/cpp-httplib' 2025-09-07T06:14:25.4030480Z http.https://github.com/.extraheader 2025-09-07T06:14:25.4097560Z Entering 'third_party/cpuinfo' 2025-09-07T06:14:25.4164730Z http.https://github.com/.extraheader 2025-09-07T06:14:25.4231690Z Entering 'third_party/cudnn_frontend' 2025-09-07T06:14:25.4298510Z http.https://github.com/.extraheader 2025-09-07T06:14:25.4365770Z Entering 'third_party/cutlass' 2025-09-07T06:14:25.4432540Z http.https://github.com/.extraheader 2025-09-07T06:14:25.4501130Z Entering 'third_party/fbgemm' 2025-09-07T06:14:25.4565810Z http.https://github.com/.extraheader 2025-09-07T06:14:25.4630140Z Entering 'third_party/fbgemm/external/asmjit' 2025-09-07T06:14:25.4695010Z http.https://github.com/.extraheader 2025-09-07T06:14:25.4759890Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-09-07T06:14:25.4824420Z http.https://github.com/.extraheader 2025-09-07T06:14:25.4891750Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-09-07T06:14:25.4957440Z http.https://github.com/.extraheader 2025-09-07T06:14:25.5024100Z Entering 'third_party/fbgemm/external/cutlass' 2025-09-07T06:14:25.5089580Z http.https://github.com/.extraheader 2025-09-07T06:14:25.5157590Z Entering 'third_party/fbgemm/external/googletest' 2025-09-07T06:14:25.5223470Z http.https://github.com/.extraheader 2025-09-07T06:14:25.5288620Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-09-07T06:14:25.5356120Z http.https://github.com/.extraheader 2025-09-07T06:14:25.5425460Z Entering 'third_party/fbgemm/external/json' 2025-09-07T06:14:25.5492670Z http.https://github.com/.extraheader 2025-09-07T06:14:25.5562350Z Entering 'third_party/flash-attention' 2025-09-07T06:14:25.5630900Z http.https://github.com/.extraheader 2025-09-07T06:14:25.5696800Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-09-07T06:14:25.5763660Z http.https://github.com/.extraheader 2025-09-07T06:14:25.5831820Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-09-07T06:14:25.5898550Z http.https://github.com/.extraheader 2025-09-07T06:14:25.5969940Z Entering 'third_party/flatbuffers' 2025-09-07T06:14:25.6038510Z http.https://github.com/.extraheader 2025-09-07T06:14:25.6105780Z Entering 'third_party/fmt' 2025-09-07T06:14:25.6172820Z http.https://github.com/.extraheader 2025-09-07T06:14:25.6239850Z Entering 'third_party/gemmlowp/gemmlowp' 2025-09-07T06:14:25.6306710Z http.https://github.com/.extraheader 2025-09-07T06:14:25.6373460Z Entering 'third_party/gloo' 2025-09-07T06:14:25.6440280Z http.https://github.com/.extraheader 2025-09-07T06:14:25.6506560Z Entering 'third_party/googletest' 2025-09-07T06:14:25.6573330Z http.https://github.com/.extraheader 2025-09-07T06:14:25.6639970Z Entering 'third_party/ideep' 2025-09-07T06:14:25.6706970Z http.https://github.com/.extraheader 2025-09-07T06:14:25.6771870Z Entering 'third_party/ideep/mkl-dnn' 2025-09-07T06:14:25.6837840Z http.https://github.com/.extraheader 2025-09-07T06:14:25.6908650Z Entering 'third_party/ittapi' 2025-09-07T06:14:25.6978550Z http.https://github.com/.extraheader 2025-09-07T06:14:25.7044410Z Entering 'third_party/kineto' 2025-09-07T06:14:25.7110370Z http.https://github.com/.extraheader 2025-09-07T06:14:25.7174350Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-09-07T06:14:25.7239020Z http.https://github.com/.extraheader 2025-09-07T06:14:25.7303370Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-09-07T06:14:25.7371160Z http.https://github.com/.extraheader 2025-09-07T06:14:25.7438430Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-09-07T06:14:25.7504690Z http.https://github.com/.extraheader 2025-09-07T06:14:25.7572420Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-09-07T06:14:25.7639970Z http.https://github.com/.extraheader 2025-09-07T06:14:25.7707810Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-09-07T06:14:25.7774650Z http.https://github.com/.extraheader 2025-09-07T06:14:25.7840280Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-09-07T06:14:25.7906550Z http.https://github.com/.extraheader 2025-09-07T06:14:25.7976140Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-09-07T06:14:25.8043570Z http.https://github.com/.extraheader 2025-09-07T06:14:25.8110370Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-09-07T06:14:25.8175530Z http.https://github.com/.extraheader 2025-09-07T06:14:25.8241350Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-09-07T06:14:25.8306470Z http.https://github.com/.extraheader 2025-09-07T06:14:25.8373690Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-09-07T06:14:25.8438450Z http.https://github.com/.extraheader 2025-09-07T06:14:25.8506860Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-09-07T06:14:25.8571710Z http.https://github.com/.extraheader 2025-09-07T06:14:25.8637580Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-09-07T06:14:25.8703600Z http.https://github.com/.extraheader 2025-09-07T06:14:25.8771830Z Entering 'third_party/kleidiai' 2025-09-07T06:14:25.8838700Z http.https://github.com/.extraheader 2025-09-07T06:14:25.8905360Z Entering 'third_party/mimalloc' 2025-09-07T06:14:25.8971080Z http.https://github.com/.extraheader 2025-09-07T06:14:25.9037600Z Entering 'third_party/nlohmann' 2025-09-07T06:14:25.9103710Z http.https://github.com/.extraheader 2025-09-07T06:14:25.9170750Z Entering 'third_party/onnx' 2025-09-07T06:14:25.9236530Z http.https://github.com/.extraheader 2025-09-07T06:14:25.9307060Z Entering 'third_party/onnx/third_party/pybind11' 2025-09-07T06:14:25.9374740Z http.https://github.com/.extraheader 2025-09-07T06:14:25.9448220Z Entering 'third_party/opentelemetry-cpp' 2025-09-07T06:14:25.9514910Z http.https://github.com/.extraheader 2025-09-07T06:14:25.9579690Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-09-07T06:14:25.9645360Z http.https://github.com/.extraheader 2025-09-07T06:14:25.9711600Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-09-07T06:14:25.9777470Z http.https://github.com/.extraheader 2025-09-07T06:14:25.9843000Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-09-07T06:14:25.9909170Z http.https://github.com/.extraheader 2025-09-07T06:14:25.9975880Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-09-07T06:14:26.0040770Z http.https://github.com/.extraheader 2025-09-07T06:14:26.0107430Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-09-07T06:14:26.0173130Z http.https://github.com/.extraheader 2025-09-07T06:14:26.0239560Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-09-07T06:14:26.0305020Z http.https://github.com/.extraheader 2025-09-07T06:14:26.0370740Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-09-07T06:14:26.0437340Z http.https://github.com/.extraheader 2025-09-07T06:14:26.0502000Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-09-07T06:14:26.0567460Z http.https://github.com/.extraheader 2025-09-07T06:14:26.0634390Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-09-07T06:14:26.0701850Z http.https://github.com/.extraheader 2025-09-07T06:14:26.0770300Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-09-07T06:14:26.0837180Z http.https://github.com/.extraheader 2025-09-07T06:14:26.1191130Z Entering 'third_party/pocketfft' 2025-09-07T06:14:26.1266770Z http.https://github.com/.extraheader 2025-09-07T06:14:26.1337150Z Entering 'third_party/protobuf' 2025-09-07T06:14:26.1403890Z http.https://github.com/.extraheader 2025-09-07T06:14:26.1470510Z Entering 'third_party/protobuf/third_party/benchmark' 2025-09-07T06:14:26.1537570Z http.https://github.com/.extraheader 2025-09-07T06:14:26.1603590Z Entering 'third_party/protobuf/third_party/googletest' 2025-09-07T06:14:26.1669150Z http.https://github.com/.extraheader 2025-09-07T06:14:26.1737590Z Entering 'third_party/psimd' 2025-09-07T06:14:26.1804160Z http.https://github.com/.extraheader 2025-09-07T06:14:26.1870820Z Entering 'third_party/pthreadpool' 2025-09-07T06:14:26.1936650Z http.https://github.com/.extraheader 2025-09-07T06:14:26.2003030Z Entering 'third_party/pybind11' 2025-09-07T06:14:26.2068170Z http.https://github.com/.extraheader 2025-09-07T06:14:26.2135050Z Entering 'third_party/python-peachpy' 2025-09-07T06:14:26.2202750Z http.https://github.com/.extraheader 2025-09-07T06:14:26.2269530Z Entering 'third_party/sleef' 2025-09-07T06:14:26.2336710Z http.https://github.com/.extraheader 2025-09-07T06:14:26.2403720Z Entering 'third_party/tensorpipe' 2025-09-07T06:14:26.2470850Z http.https://github.com/.extraheader 2025-09-07T06:14:26.2535970Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-09-07T06:14:26.2602430Z http.https://github.com/.extraheader 2025-09-07T06:14:26.2668930Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-09-07T06:14:26.2735310Z http.https://github.com/.extraheader 2025-09-07T06:14:26.2802340Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-09-07T06:14:26.2868680Z http.https://github.com/.extraheader 2025-09-07T06:14:26.2934720Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-09-07T06:14:26.2998820Z http.https://github.com/.extraheader 2025-09-07T06:14:26.3062180Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-09-07T06:14:26.3127010Z http.https://github.com/.extraheader 2025-09-07T06:14:26.3256650Z A job completed hook has been configured by the self-hosted runner administrator 2025-09-07T06:14:26.3298060Z ##[group]Run '/opt/runner_scripts/post-job.sh' 2025-09-07T06:14:26.3310860Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-09-07T06:14:26.3311090Z ##[endgroup] 2025-09-07T06:14:26.3655070Z + df -h 2025-09-07T06:14:26.3675690Z + ls -t /var/log/post_job 2025-09-07T06:14:26.3676340Z + awk 'NR>100' 2025-09-07T06:14:26.3676520Z + xargs rm -fv 2025-09-07T06:14:26.3677260Z + Checking if runner needs to be terminated...ok 2025-09-07T06:14:26.3677530Z + Outputting disk space 2025-09-07T06:14:26.3677840Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-09-07T06:14:26.3678260Z /dev/disk5s2s1 256Gi 9.5Gi 185Gi 5% 404k 1.9G 0% / 2025-09-07T06:14:26.3678600Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-09-07T06:14:26.3679000Z /dev/disk5s5 256Gi 1.0Gi 185Gi 1% 1 1.9G 0% /System/Volumes/VM 2025-09-07T06:14:26.3679400Z /dev/disk5s3 256Gi 5.7Gi 185Gi 3% 1.0k 1.9G 0% /System/Volumes/Preboot 2025-09-07T06:14:26.3679770Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-09-07T06:14:26.3680160Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-09-07T06:14:26.3680550Z /dev/disk1s3 500Mi 848Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-09-07T06:14:26.3680920Z /dev/disk5s1 256Gi 54Gi 185Gi 23% 1.8M 1.9G 0% /System/Volumes/Data 2025-09-07T06:14:26.3681300Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-09-07T06:14:26.3681690Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-20PTox 2025-09-07T06:14:26.3682060Z + Cleaning up old logs (Keep the latest 100) 2025-09-07T06:14:26.5315700Z + Restoring SSH key to be the skeleton key 2025-09-07T06:14:26.5401870Z Evaluate and set job outputs 2025-09-07T06:14:26.5405060Z Set output 'build-outcome' 2025-09-07T06:14:26.5406730Z Set output 'test-matrix' 2025-09-07T06:14:26.5407260Z Cleaning up orphan processes 2025-09-07T06:14:32.0407730Z Terminate orphan process: pid (10020) (sccache)